var HINTS_CFG = {
	'top'        : 10, // a vertical offset of a hint from mouse pointer
	'left'       : 10, // a horizontal offset of a hint from mouse pointer
	'css'        : 'hintsClass', // a style class name for all hints, TD object
	'show_delay' : 1000, // a delay between object mouseover and hint appearing
	'hide_delay' : 0, // a delay between hint appearing and hint hiding
	'wise'       : true,
	'follow'     : true,
	'margin'     : 10, // minimum allowed distance between the hint and the window edge (negative values accepted)
	'gap'        : 0, // minimum allowed distance between the hint and the origin (negative values accepted)
	'align'      : 'tcbc', // align of the hint and the origin (by first letters origin's top|middle|bottom left|center|right to hint's top|middle|bottom left|center|right)
	'IEfix'      : false, // fix IE problem with windowed controls visible through hints (activate if select boxes are visible through the hints)
	'IEtrans'    : ['blendTrans(DURATION=.3)', 'blendTrans(DURATION=.3)'], // [show transition, hide transition] - nice transition effects, only work in IE5+
	'opacity'    : 100, // opacity of the hint in %%	
	'z-index'    : 99 // a z-index for all hint layers
},


TIPS_ITEMS = {  }



var myHint = new THints (TIPS_ITEMS, HINTS_CFG)

function wrap (s) {
	return "<table width='350' cellpadding='10' cellspacing='1' border='1'><tr><td bgcolor='#000000' valign='top' align='center'><font color='#ffffff'>"+s+"</font></td></tr></table>"
}

