var HINTS_CFG = {
	'wise'       : true, // don't go off screen, don't overlap the object in the document
	'margin'     : 10, // minimum allowed distance between the hint and the window edge (negative values accepted)
	'gap'        : -10, // minimum allowed distance between the hint and the origin (negative values accepted)
	'align'      : 'brtl', // 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)
	'css'        : '', // a style class name for all hints, applied to DIV element (see style section in the header of the document)
	'show_delay' : 100, // a delay between initiating event (in this case it's click) and hint appearing
	'hide_delay' : 0, // a delay between closing event (in this case it's click or form submission) and hint disappearing
	'follow'     : false, // hint follows the mouse as it moves
	'IEfix'      : true,
	'IEtrans'    : [true, true], // run transitions defined in the hint's style
	'opacity'    : 80
};
var myHint = new THints (null, HINTS_CFG);


