window.addEvent('domready',function(){
	
	//menu
	var eng = window.location.toString().contains('eng','/')
	
	if(Browser.Engine.webkit){
		//console.log('ok	');
		
		if(eng == false){//ita
			$('subSapori').setStyle('left','82px');
			$('subPremiere').setStyle('left','157px');
			$('subContatti').setStyle('left','560px');
		} else {//eng
			$('subSapori').setStyle('left','112px');
			$('subPremiere').setStyle('left','195px');
		}
	} else if(Browser.Engine.gecko){
		if(eng == false){
			$('subContatti').setStyle('left','580px');
		} else {
			$('subSapori').setStyle('left','116px');
			$('subPremiere').setStyle('left','202px');
		}
	}
	
	
	
	$$('#subSapori','#subPremiere').setStyle('opacity',0.8);
	if(eng == false){ $('subContatti').setStyle('opacity',0.8); }

	//$('subPremiere').setStyle('opacity',0.8);
									 
	var menuProps={
		overProps: { 'color':'#000' },
		outProps: { 'color':'#fff' },
		activeProps: { 'color':'#000' },
		subActiveProps: { 'color':'#fff','backgroundColor':'#e58000' }
	};
	
	mainMenu = new Menu({menuId:'menu',type:'bar',props:menuProps,morph:true,fx:'slide'});

});