this.tooltip = function(oggetto, id){	
	xOffset = 10;
	yOffset = 20;		
		
	$(oggetto).hover(function(e){											  

		this.t = this.alt;
		this.alt = "";									  
		$("body").append("<p id='"+id+"'>"+ this.t +"</p>");
		$("#"+id)
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.css("zindex","999")
			.fadeIn("fast");		
    },
	function(){
		this.alt = this.t;		
		$("#"+id).remove();
    });	
	$(oggetto).mousemove(function(e){
		$("#"+id)
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.css("zindex","999");
	});			
};
