
var menu, milkbox, i;

window.addEvent('domready', function(){
	
		var menuProps={
			overProps: { 'backgroundPosition':'0 -33px' },
			outProps: { 'backgroundPosition':'0 0' },
			activeProps: { 'backgroundPosition':'0 -33px' },
			subOverProps: { 'color':'#4b0700' },
			subOutProps: { 'color':'#ffffff' },
			subActiveProps: { 'color':'#4b0700' }
		};
		
		menu = new Menu({ menuId:'menu', type:'bar', props:menuProps });

		var pages = ['index','news','chi-siamo','filiera','unita','lavorazione','p-','g-','comunicazione','contatti']; 
		var loc = window.location.toString();
		var b,p;
		pages.each(function(page,index){ if(loc.contains(page)){ i = index; p = page; } });
		
		if(p != 'p-'){ milkbox = new Milkbox(); }
		
		if(!$chk(i)){
			if(loc.test(/.it\/$/)){ i = 0; }
			else{ return; }
		}
		
		menu.setStartButton({ mainIndex:i });

});//fine domready



