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