$(document).ready(function(){
	
	//social services tooltip
	$(".welcome .icon a").hover(function(){
		$(this).next("span").stop(true, true).animate({opacity:"show", top:"-25"}, "fast");
	}, function(){
		$(this).next("span").stop(true, true).animate({opacity:"hide", top:"0"}, "fast");
	});
	
	//twitter tooltip
	$(".soc_links a").hover(function(){
		$(this).next("span").stop(true, true).animate({opacity:"show", top:"-20"}, "fast");
	}, function(){
		$(this).next("span").stop(true, true).animate({opacity:"hide", top:"0"}, "fast");
	});
});
