var HINTS_CFG = {
	'top'        : 5, // a vertical offset of a hint from mouse pointer
	'left'       : 5, // a horizontal offset of a hint from mouse pointer
	'css'        : 'hintsClass', // a style class name for all hints, TD object
	'show_delay' : 50, // a delay between object mouseover and hint appearing
	'hide_delay' : 300000, // a delay between hint appearing and hint hiding
	'wise'       : true,
	'follow'     : true,
	'z-index'    : 0 // a z-index for all hint layers
},

HINTS_ITEMS = {
	0: '<p>Ajantrik Home</p>',
	1: '<img src="images/index_tip_1.gif">',
	2: '<img src="images/index_tip_2.gif">',
	3: '<img src="images/index_tip_3.gif">',
	4: '<img src="images/index_tip_4.gif">',
	5: '<img src="images/index_tip_5.gif">'
};

var myHint = new THints (HINTS_CFG, HINTS_ITEMS);

