this.tooltip1 = function(){
	
  xOffset = -30;
  yOffset = 0;
	
  $("a.tooltip1").hover(
    function(e){			
      
			this.t = this.rel;
			if(this.t.length > 0)
        $("body").append("<p id='tooltip1'>"+ this.t +"</p>");
			
      $("#tooltip1")
        .css("top",(e.pageY - xOffset) + "px")
        .css("left",(e.pageX + yOffset) + "px")
        .fadeIn("fast");		
    }, function(){
       $("#tooltip1").remove();
    }
	);
      
	$("a.tooltip1").mousemove(
    function(e){
      $("#tooltip1")
        .css("top",(e.pageY - xOffset) + "px")
        .css("left",(e.pageX + yOffset) + "px");
    }
	);
	
};

$(document).ready(
  function(){
	
    marqueeInit({
	    uniqueid: 'mycrawler',
      style: {
             'position': 'absolute',
             'top': '2px',
             'left': '94px',
             'height': '14px',
             'width': '667px',
             'z-index': '1'
      },
      inc: 2,
      mouse: 'cursor driven',
      moveatleast: 1,
      neutral: 300,
      savedirection: true
    });
		
		tooltip1();
	
  }				  
);
