var $j=jQuery.noConflict();

jQuery(document).ready(function(){
	$j("#utilityButtons li").hover(
		function(){	
			$j(this).find("span").attr({
				"style": 'display:inline'
			});
			$j(this).find("span").animate({opacity: 1, top: "-60"}, {queue:false, duration:400});
		}, 
		function(){	
			$j(this).find("span").animate({opacity: 0, top: "-50"}, {queue:false, duration:400}, "linear",
				function(){
					$j(this).find("span").attr({"style": 'display:none'});			
				}
			);
		});
});




