this.tooltip = function(){	
  xOffset = 10;  yOffset = 20;	
  $(".tip").hover(function(e){
    $(this).css("color","#CC6A01");										  
    this.t = this.title;
    this.title = "";									  
    $("body").append("<p id='tooltip'>"+ this.t +"</p>");
    $("#tooltip")
      .css("top",(e.pageY - xOffset) + "px")
      .css("left",(e.pageX + yOffset) + "px")
      .fadeIn("fast");		
  },
  function(){
    $(this).css("color","#000000");	
    this.title = this.t;		
    $("#tooltip").remove();
    });/*end of hover */	
  $(".tip").mousemove(function(e){
    $("#tooltip").css("top",(e.pageY - xOffset) + "px")
		      .css("left",(e.pageX + yOffset) + "px");
    });			
  };