$(document).ready(function(){
		
$("#fblikeboxright").hover(
    function(){$(this).stop(true,false).animate({right: 0}, 500);},
    function(){$("#fblikeboxright").stop(true,false).animate({right: -207}, 500);}
);
		
$("#fblikeboxleft").hover(
    function(){$(this).stop(true,false).animate({left: 0}, 500);},
    function(){$("#fblikeboxleft").stop(true,false).animate({left: -207}, 500);}
);

$("#fblikeboxtop").hover(
    function(){$(this).stop(true,false).animate({top: -15}, 500);},
    function(){$("#fblikeboxtop").stop(true,false).animate({top: -207}, 500);}
);
$("#fblikeboxbottom").hover(
    function(){$(this).stop(true,false).animate({bottom: -15}, 500);},
    function(){$("#fblikeboxbottom").stop(true,false).animate({bottom: -207}, 500);}
);
		
     });
