

//////////////////////////////////////////
///////  menu principal
	$(function(){
	//Hide SubLevel Menus
	$('nav ul li div').hide();	
	//OnHover Show SubLevel Menus
	$('nav ul li').hover(	
		function(){
			//Hide Other Menus
			$('nav ul li').not($('div', this)).stop();
			
			// Show Hoved Menu
			$('div', this).stop(true, true).show();
		},
		//OnOut
		function(){
			// Hide Other Menus
			$('div', this).hide();
		});		
});
/////////////////////////////////////////////	 

