$(document).ready(function(){
        //Caption Sliding (Partially Hidden to Visible)
    $('.boxgrid.caption').hover(function(){
        $(".cover", this).stop().animate({top:'0px'},{queue:false,duration:140});
    }, function() {
        $(".cover", this).stop().animate({top:'161px'},{queue:false,duration:210});
    });
    
    //Caption for carousel slider
        //Caption Sliding (Partially Hidden to Visible)
    $('.boxgridCarousel.caption').hover(function(){
        $(".cover", this).stop().animate({top:'5px'},{queue:false,duration:400});
    }, function() {
        $(".cover", this).stop().animate({top:'-120px'},{queue:false,duration:210});
    });
    
    //Caption for Slideshow slider
        //Caption Sliding (Partially Hidden to Visible)
    $('.boxgridSlideshow.caption').hover(function(){
        $(".cover", this).stop().animate({top:'-250px'},{queue:false,duration:200});
    }, function() {
        $(".cover", this).stop().animate({top:'-420px'},{queue:false,duration:210});
    });
});


