$(document).ready(function(){
	//Caption Sliding (Partially Hidden to Visible)
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:250});
	}, function() {
		$(".cover", this).stop().animate({top:'245px'},{queue:false,duration:250});
	});
	$(".boxgrid.caption").click(function(){
		window.location=$(this).find("a").attr("href");return false;
	});		
});
