var L7 = {
	
	start: function() {
		this.common();
	},
	
	common: function() {
		this.toolbar = new MorphList($('toolbarMenu').getElement('ul'), { morph: { 'transition': Fx.Transitions.Back.easeOut, 'duration': 700 }, 
			onClick: function(e, i) {
				if(i == $('menuEmailThisPageToAFriend')) new Event(e).stop();
			} 
		});
		this.toolbar_default = this.toolbar.current;
		this.box = new MultiBox('mb', { stopClickEvent: false, onClose: function() {
			this.toolbar.setCurrent(this.toolbar_default);
			this.toolbar.morphTo(this.toolbar_default);
		}.bind(this) });
	}
	
};

window.addEvent('domready', function() { L7.start(); });
