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