$(document).ready(function(){

	var config = {    
		 sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
		 interval: 100, // number = milliseconds for onMouseOver polling interval    
		 over: makeTall, // function = onMouseOver callback (REQUIRED)    
		 timeout: 600, // number = milliseconds delay before onMouseOut    
		 out: makeShort // function = onMouseOut callback (REQUIRED)    
	};

	$(".slideHover").hoverIntent( config );

});	
	function makeTall(){ $(this).children(".slideP").slideToggle({duration: 500, easing: 'easeInCubic'});}
	function makeShort(){ $(this).children(".slideP").slideToggle({duration: 200, easing: 'easeInCubic'});}