$(function() {
    $('#facebook_box').hover(
        function () {
            $('#facebook_content',$(this)).stop().animate({'marginBottom':'-12px'},'slow');
        },
        function () {
           $('#facebook_content',$(this)).stop().animate({'marginBottom':'-202px'},'slow');
         }
    );
});
