function InitSocialTab() {
	$("div#SocialTab").hover(
			  function () {
			    $(this).animate({
			    	left: '0px'
			    },500);
			  }, 
			  function () {
				  $(this).animate({
				    	left: '-333px'
				    },500);
			  }
			);
	$("div#SocialTab.right").hover(
			  function () {
				    $(this).animate({
				    	right: '0px'
				    },500);
				  }, 
				  function () {
					  $(this).animate({
					    	right: '-333px'
					    },500);
				  }
				);
}
