this.tooltip = function(){
		xOffset = 80;
		yOffset = 20;		
	$(".tooltip").hover(function(e){											  
		this.t = this.title;
    this.bac=this.t;
		this.title = "";
    x='';
    if($(this).hasClass('nobackground'))
     {
        x=" class='nobackground'";
        this.t='<img src="'+this.t+'" alt= />';
     }									  
		$("body").append("<p id='tooltip' "+x+">"+ this.t +"</p>");
		$("#tooltip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");		
    },
	function(){
		this.title = this.bac;
		$("#tooltip").remove();
    });	
	$("a.tooltip").mousemove(function(e){
		$("#tooltip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};
