$(function(){
	$('ul.menu>li>ul.menu').addClass('ready').hide().parent().find('>a').addClass('hasItems');
	
	$('ul#general>li, ul#vousetes>li').bind('mouseover', function(){
		$(this).addClass('simulatedHover');
	}).bind('mouseout', function(){
		$(this).removeClass('simulatedHover');
	}).bind('click', function(){
		window.location.href= $('a', this).slice(0,1).attr('href');
	});
	
	$('ul#general>li, ul#vousetes>li').hoverIntent({    
		sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
		interval: 100, // number = milliseconds for onMouseOver polling interval    
		over: function(){$(this).find('ul').fadeIn('fast');}, // function = onMouseOver callback (REQUIRED)    
		timeout: 200, // number = milliseconds delay before onMouseOut    
		out: function(){$(this).find('ul').fadeOut('fast');} // function = onMouseOut callback (REQUIRED)    
	});
})