$(document).ready(function(){    
    $("#slider").easySlider();
    $(".cover", this).stop().animate({top:'200px'},{queue:false,duration:900});
});

$(document).ready(function(){
    //Full Caption Sliding (Hidden to Visible)
    $('.boxgrid.captionfull').hover(function(){
        $(".cover", this).stop().animate({top:'60px'},{queue:false,duration:400});
    }, function() {
        $(".cover", this).stop().animate({top:'200px'},{queue:false,duration:900});
    });
});