$(document).ready(function(){				
		var hover_in_easing="easeOutExpo";
		var hover_out_easing="easeOutBounce";
		$("..boxgrid.caption").show();
		$(".boxgrid.caption").hover(function(){			
			$(this).find(".cover").animate({top:"0px"},{queue:false, duration: 400, easing: hover_in_easing});
		},function(){
			$(this).find(".cover").animate({top:"190px"},{queue:false, duration: 500, easing: hover_out_easing});
		});
	});

