
	window.addEvent('domready',initMenu);

	function initMenu()
	{
		$$('#menu a').each(function(el)
		{
			if(el.href.substring(0,4)!='java' && el.getAttribute('target')!='_blank' && el.href.substring(0,6)!='mailto') el.href='javascript:jumpTo("'+el.href+'")';	
		});
		
		$('previousMenu').set({'morph':{duration:500, transition:Fx.Transitions.Sine.easeInOut}});
		$('currentMenu').set({'morph':{duration:500, transition:Fx.Transitions.Sine.easeInOut}});
		$('currentMenu').setStyles({'width':0});
		showMenu();
	}

	function showMenu()
	{
		$('currentMenu').morph({'width':750});
		$('previousMenu').morph({'width':0});
	}
	
	function jumpTo(url)
	{
		if($('productHeading')!=null)
		{	
			hideProduct();
			(function(){document.location.href=url}).delay(300);
		}
		
		if($('macMenu')!=null) 
		{
			hideMacMenu();
			(function(){document.location.href=url}).delay(($$('#macMenu a').length*100)+500);
		}
		
		if($('macMenu')==null && $('productDetails') ==null) 
		{
			document.location.href=url;
		}
		
	}
	

