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