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