// for print/share hover bubbles

$j(document).ready(function(){
	var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
	if(!IE6){
		jQuery(document).ready(function(){
			$j("#printShare li").hover(
				function(){
					$j(this).find("span").attr({"style": 'display:block'});
					$j(this).find("span").animate({opacity: 1}, {queue:false, duration:400});
				},
				function(){
					$j(this).find("span").animate({opacity: 0}, {queue:false, duration:400}, "linear",
					function(){
						$j(this).find("span").attr({"style": 'display:none'});
					}
				);
			});
		});
	}
});
