$(document).ready(function(){
	
		var hover_in_easing="easeOutExpo";
		var hover_out_easing="easeOutBounce";
		$(".project_frame_hover").css("height", "1px");
		$("div.project_frame").hover(function(){			
			$(this).find(".project_frame_hover").animate({top:"18px", height: "130px"},{duration: 400, easing: hover_in_easing});
		},function(){
			$(this).find(".project_frame_hover").animate({top:"147px", height: "1px"},{duration: 500, easing: hover_out_easing});
		});
 });