this.ToolTip = function(){	
		
		xOffset = -2;
		yOffset = 18;
	$("a[rel*=tip]").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "" + this.t : "";
		$("body").append("<span id='tip'>"+ c +"</span>");								 
		$("#tip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("slow");						
    },
	function(){
		this.title = this.t;	
		
		$("#tip").remove();
    });	
	$("a[rel*=tip]").mousemove(function(e){
		$("#tip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};
$(document).ready(function(){
	ToolTip();
});
