
		$(document).ready(function(){
			$("#contact_slide").hoverIntent({
				over: makeTall, 
                     		sensitivity: 5,
                                interval: 300,
				timeout: 1000, 
				out: makeShort
			});
		}); // close document.ready
 
		function makeTall(){ $(this).animate( { height:"388px" }, { queue:false, duration:1700, timeout: 2000 });}
		function makeShort(){ $(this).animate( { height:"25px" }, { queue:false, duration:1200 });}




