jQuery(document).ready(
function()
{

    jQuery('#fb').hover(
        function() {
            jQuery(this).stop().animate({right: 0},'slow');
        },
        function() {
            jQuery(this).stop().animate({right: -295},'slow');
        }
    );
	
});
	
