jQuery(document).ready(function() {

	jQuery.fx.interval = 20;

	jQuery('#facebook #show,#facebook #frame').hover( function() {
				jQuery('#facebook').stop().animate({
					right : '0px'
				}, 1000 ) },
	function() {
				jQuery('#facebook').stop().animate({
					right : '-250px'
				}, 2000 ) }
	);
});

