// JavaScript Document
$(document).ready(function(){
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'200px'},{queue:false,duration:300});
	});
});