var $j=jQuery.noConflict();

var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
if(!IE6){

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: "-38"}, {queue:false, duration:400});
	},
		function(){
			$j(this).find("span").animate({opacity: 0, top: "-38"}, {queue:false, duration:400}, "linear",
		function(){
			$j(this).find("span").attr({"style": 'display:none'});
		}
	);
	});
});
}