$(document).ready(function(){
	$(".itemThumbs").css("visibility", "visible");
	$("#accordion > h2").css("visibility", "visible");
    $(".cover", this).stop().animate({top:'110px'},{queue:false,duration:900}); // the distance from the top to hide the box when the page loads
});

$(document).ready(function(){
    //Full Caption Sliding (Hidden to Visible)
    $('.boxgrid.captionfull').hover(function(){
        $(".cover", this).stop().animate({top:'0px'},{queue:false,duration:400}); // the distance from the top to move the caption up on hover
    }, function() {
        $(".cover", this).stop().animate({top:'110px'},{queue:false,duration:900}); // the distance from the top to hide the other cpations (normally the samde as the original page load value set on page 
    });
});


