// JavaScript Document
$(document).ready(function(){
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'223px'},{queue:false,duration:1000});
	}, function() {
		$(".cover", this).stop().animate({top:'285px'},{queue:false,duration:1000});
	});
	
});
