this.tooltip_title = function(){	
		xOffset = -30;
		yOffset = -120;		
	$("a.tooltip_title").hover(function(e){											  
		this.t = this.title;
		this.title = "";					
    var TitleShow=str_replace("NNN", "<br>", this.t);				  
		$("body").append("<p id='tooltip_title'>"+ TitleShow +"</p>");
		$("#tooltip_title")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");		
    },
	function(){
		this.title = this.t;		
		$("#tooltip_title").remove();
    });	
	$("a.tooltip_title").mousemove(function(e){
		$("#tooltip_title")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};


$(document).ready(function(){
	tooltip_title();
});

