  	d = document;
	
	tips = [
	 /* Home */      'Return to the Home Page' ,
	 /* About */     'All About Sal Maggiacomo Plumbing and Heating Inc.', 
	 /* Contact */   'Contact Sal Maggiacomo. Phone/Email/Fax', 
	 /* Services */  'Need a Job done? We can probably do it!',
	 /* Workorder */ 'Submit a Workorder if you\'re having a problem.',
	 /* Estimate */  'Fill out the form and we\'ll give you an estimate!',
	 /* Partners */  'View some of our trusted partners and affiliates.',
	 /* FAQ */       'Frequently asked questions.'
	]; 
	
    function tt ( i )
	{
	  ott = d.getElementById( 'tooltip' ); 
	  otx = d.getElementById( 'tt_text' ); 
	  
	  ott.style.display = "block"; 
	  otx.innerHTML = tips[i]; 
	  
	  x = Math.round( mx / 100 ) * 100; 
	  y = Math.floor( (my-70) / 20 ) * 20;
	  
	  while(x <= mx+20){ x++; }
	  
	  ott.style.left = x; 
	  ott.style.top  = y; 
	} 
	
	function to ( )
	{
	  ott = d.getElementById( 'tooltip' ); 
	  ott.style.display = "none"; 	  
	}

	function mouse (e) { 
	   mx = d.all ? event.clientX : e.pageX; my = d.all ? event.clientY : e.pageY; 
	   mx += document.body.scrollLeft || 0; my += document.body.scrollTop || 0; }
	if(!d.all) document.captureEvents(Event.MOUSEMOUSE); 
	
	d.onmousemove = mouse;
