var showIt = true;
$(document).ready(function(){
	$("dl dd:nth-child(3) a").hover(function() {
		if(showIt){
			showIt = false;
			$(this).next("em").animate({opacity: "show", top: "-105"}, "slow", function(){showIt=true;});
		}
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-120"}, "fast");
	});
});
