$(document).ready(function() {
    $(".homeHook").mouseenter(function() {
			$(this).find(".overlay").animate({'height' : 72});
	});	
	$(".homeHook").mouseleave(function() {
		$(this).find(".overlay").animate({'height' : 20});
	});
});


