$(document).ready(function() {

	

	/*function mousehover() {
		$("#booking ul").slideDown(200);
	}
	function mousehoverout() {
		$("#booking ul").slideUp(200);
	}*/
	
	function mousehover() {
		$(this).find('ul').slideDown(200);
	}
	function mousehoverout() {
		$(this).find('ul').slideUp(200);
	}
	
	var config = {    
     over: mousehover, // function = onMouseOver callback (REQUIRED)    
     timeout: 100, // number = milliseconds delay before onMouseOut    
     out: mousehoverout // function = onMouseOut callback (REQUIRED)    
	};
	
	$(".sub").hoverIntent( config )
	
	
});
