$(document).ready(function() {
	function showDescriptionSmall(){
		$(".feature_info", this).animate({"top" : "0"}, 150);
	}
	
	function hideDescriptionSmall(){
		$(".feature_info", this).animate({"top" : "73px"}, 250);
	}

	$(".feature_small").hoverIntent({    
		 over: showDescriptionSmall,
		 timeout: 150,  
		 out: hideDescriptionSmall
	});	
}); 
