// JavaScript Document

/*$(document).ready(function(){
$(".thumbnailhover").hover(function(){
$(this).fadeTo("fast", 0);
},function(){
$(this).fadeTo("normal", 1);
});
});*/

$(document).ready(function(){
//Caption Sliding (Partially Hidden to Visible)
$('.boxgrid.caption').hover(function(){
$(".cover", this).stop().animate({top:'120px'},{queue:false,duration:300,easing: 'easeOutExpo'});
}, function() {
$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:300,easing: 'easeOutExpo'});
});
});