$(function (){
    //Full Caption Sliding (Hidden to Visible)
    $('.boxgrid.captionfull').hover(function(){
        $(".cover", this).stop().animate({
            top:'180px'
        },{
            queue:false,
            duration:160
        });
    }, function() {
        $(".cover", this).stop().animate({
            top:'220px'
        },{
            queue:false,
            duration:160
        });
    });

    //facebook widget
    $(".widget_social").hover(function(){
        $(".widget_social").stop(true, false).animate({
            right:"0"
        },"medium");
    },function(){
        $(".widget_social").stop(true, false).animate({
            right:"-205"
        },"medium");
    },500);
});