jQuery(function(){
	jQuery("div#socialize").hover(function(){
		jQuery(this).animate({"left": "+=68px"}, "slow");
	}, function(){
		jQuery(this).animate({"left": "-=68px"}, "slow");
	});
});
