//Use this to initialize the tip template and advanced settings
var docTips = new TipObj('docTips');
with (docTips)	{
	template = '<table cellpadding="0" cellspacing="0" style="border: 1px solid #CDCEB7;">' +
  '<tr><td class="docTipContent">%3%</td></tr></table>';

	//showDelay = 50;
	hideDelay = 0;
	
	doFades = false;
	
	//minAlpha = 0;
	//maxAlpha = 100;
	
	//fadeInSpeed = 20;
	//fadeOutSpeed = 20;
	
	tipStick = 0;
	IESelectBoxFix = true;
}

//To call this function, use something like this:
//1) Indicates that it's created inline
//2) X from mouse
//3) Y from mouse
//4) Tip Header (%2% in the template)
//5) Tip Content (%3% in the template)
//<a href="#" onMouseOver="docTips.newTip('inline', 5, 5, 'This is the header', 'This is the content')" onMouseOut="docTips.hide()">inline</a>

