$(document).ready(function() {
		
       $("#facebook-content").hover(
            function()
            {
                $(this).stop().animate({"margin-left":"290px"},500);				
            },
            function()
            {
                $(this).stop().animate({"margin-left":"0px"},500);
            }
        )
});
