window.addEvent('domready', function(){
    var list = $$('span.menu');
	//var element = $('productDescription');
	//if($defined(element)){
	//element.onselectstart = function () { return false; } // ie
	//element.onmousedown = function () { return false; } // mozilla
	//}

	/*Nifty("div#featuredHeading","tl bottom big fixed-height");
	Nifty("div#whatsnewHeading","tl bottom big fixed-height");
	Nifty("div#categoriesHeading","tl bottom big fixed-height");
	Nifty("div#informationHeading","tl bottom big fixed-height");	
	Nifty("div#whosonlineHeading","tl bottom big fixed-height");
	Nifty("div#specialsHeading","tl bottom big fixed-height");*/
	//Nifty("h3.leftBoxHeading","tl bottom big fixed-height");
	//Nifty("h3.rightBoxHeading","tl bottom big fixed-height");
	//if($defined('h2.centerBoxHeading'))
		//Nifty("h2.centerBoxHeading","tl bottom big fixed-height");

	var logo = $('logoHeader');
	logo.addEvent('click', function(){
			window.location.assign("/megastore");
			//window.location.reload();
		
		});
	
	
	
	list.each(function(element) {
	 
		var fx = new Fx.Morph(element, {duration:600, wait:false,transition:Fx.Transitions.Bounce.easeOut});
	 
		element.addEvent('mouseenter', function(){
			fx.start({
				'margin-left': 5,
				'background-color': '#ffff00',
				'color': '#ffff00'
			});
		});
	 
		element.addEvent('mouseleave', function(){
			fx.start({
				'margin-left': 0,
				'background-color': '#e2ffb6',
				'color': '#888'
			});
		});
	 
	});
	
	
});	









