$(document).ready(function(){
	
	var config = {    
		     sensitivity: 7, // number = sensitivity threshold (must be 1 or higher)    
		     interval: 100, // number = milliseconds for onMouseOver polling interval    
		     over: menuIn, // function = onMouseOver callback (REQUIRED)    
		     timeout: 0, // number = milliseconds delay before onMouseOut    
		     out: menuOut // function = onMouseOut callback (REQUIRED)    
		};


    $(".menu li").hoverIntent ( config );
});

function menuIn()
{ $("ul", this).slideDown("fast"); }

function menuOut() 
{ $("ul", this).fadeOut("fast"); } 

