$(document).ready(function(){
	//Caption Sliding (Partially Hidden to Visible)
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'195px'},{queue:false,duration:250});
	}, function() {
		$(".cover", this).stop().animate({top:'215px'},{queue:false,duration:250});
	});
  $('.boxgrid.boxgridsize120.caption').hover(function(){
		$(".cover", this).stop().animate({top:'70px'},{queue:false,duration:250});
	}, function() {
		$(".cover", this).stop().animate({top:'90px'},{queue:false,duration:250});
	});
	$('.boxgrid.captiontop').hover(function(){
		$(".cover", this).stop().animate({top:'-50px'},{queue:false,duration:250});
	}, function() {
		$(".cover", this).stop().animate({top:'-70px'},{queue:false,duration:250});
	});
  $('.boxgrid.boxgridsize370.caption').hover(function(){
		$(".cover", this).stop().animate({top:'320px'},{queue:false,duration:250});
	}, function() {
		$(".cover", this).stop().animate({top:'340px'},{queue:false,duration:250});
	});
});
 

