$(document).ready(function() {
	
	var config = {    
		 sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
		 interval: 200, // number = milliseconds for onMouseOver polling interval    
		 over: function(e){
			$(this).animate({ 
				marginTop: "-436px" 
			  }, 100 );
		}, // function = onMouseOver callback (REQUIRED)    
		 timeout: 500, // number = milliseconds delay before onMouseOut    
		 out: function(e){
			$(this).animate({ 
				marginTop: "-32px" 
			  }, 100 );
		} // function = onMouseOut callback (REQUIRED)    
	};

	$(".menu ul").hoverIntent( config )
});
