			 //var layer1 = '<div id="tipLayer" style="position: absolute; z-index: 10000; visibility: hidden; left: 0px; top: 0px; width: 10px">&nbsp;</div>';

			//document.write(layer1);		
			// First, create a new tip object, and pass it its own name so it can reference itself.	
 
			var tip = new TipObj('tip');
			with (tip)
			{
			
			 template = '<table cellpadding="1" cellspacing="0" border="0" width="200" class="tipTable">' +
			  '<tr><td><table bgcolor="#FFFFFF" cellpadding="3" cellspacing="0" width="100%" border="0">' +
			  '<tr><td class="tipClass" align="left">%2%</td></tr></table></td></tr></table>';
			
			 // How fast the transparency changes (between 1 and 100), higher means faster fades.
			 fadeInSpeed = 60;
			 fadeOutSpeed = 100;
			 //
			 // Tip stickiness, from 0 to 1, defines how readily the tip follows the cursor. 1 means it
			 // follows it perfectly (the default), 0 is a static tip, and decimals are 'floating' tips.
			 tipStick = 1;
			 //
			 // IE 5.5+ select box fix. This will enable tips to appear over <SELECT> elements in the page.
			 //IESelectBoxFix = true;
			}
			
			// convert document TITLE="..." attributes into tips, in v5+ browsers. 
			function titlesToTips()
			{
			 var tags = isDOM ? document.getElementsByTagName('*') : [];
			 for (var i = 0; i < tags.length; i++)
			 {
			 	
			 	
			  if (tags[i].title)
			  {
			  	var titletip = '';

			  	if (tags[i].rel && tags[i].rel.indexOf("tooltip") != -1 ) {
			  		titletip = document.getElementById(tags[i].rel).innerHTML;
			  	} else {
			  		 titletip = tags[i].title;
			  	}
			  	//alert('tip.newTip("tagTip' + i + '", 15, 15, "' + titletip[0].innerHTML + '")');
			   // You may wish to do some string processing here, for instance split the TITLE into two
			   // strings based on the | character or similar, and use one for a tip heading in a template.
			 		tags[i].onmouseover = new Function('tip.newTip("tagTip' + i + '", 15, 15, "' + titletip + '")');
			
			   	tags[i].onmouseout = new Function('tip.hide()');
			   	tags[i].title = '';
			  }
			 }
			};
			
			var tttOL = window.onload;
			window.onload = function()
			{
			 if (tttOL) tttOL();

			 titlesToTips();
			}		
			
