//=== Digitalights.net
// Script per il tema Primavera2011

//=== TOOL TIP SCRIPT =============
// Preso dai Tooltip del pannello 
// d'amministrazione di Xoops

  this.tooltip = function(){	
    yOffset = -20;
 		
    $(".tooltip").hover(function(e){
        this.t = this.title;
        this.title = "";
		//Removing alt atribute for IE
		$("a.tooltip img").each(function() { $(this).attr("title", ""); $(this).attr("alt", ""); });
		$("body").append("<div id='tooltip'><span>"+ this.t +"</span></div>");
		$("#tooltip")
            .fadeIn("fast");
    }, function(){
		this.title = this.t;
		$("#tooltip").remove();
    });        
	$("a.tooltip").mousemove(function(e){  
		$("#tooltip")
			.css("top",(e.pageY + yOffset) + "px")
	});
};

$(document).ready(function(){
  tooltip();
});
//=================================

