	$(document).ready(function(){
		$('#boxFbClosed').mouseover(function(){
			$('#boxFbClosed').hide('slow');
			$('#boxFBAll').show('slow');
		});
		$('#boxFBAll').mouseout(function(){
			 $('#boxFBAll').hide('slow');
			  $('#boxFbClosed').show('slow');
		});
	});

//jQuery('facebook-all').hoverIntent(fbIn,fbOut);

//function fbIn(){ jQuery(this).animate({ left: '0' }, 400);}
//function fbOut(){ jQuery(this).animate({ left: '-292px' }, 400);}
