var HINTS_CFG = {
	'top'        : -1, // 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' : 500, // a delay between object mouseover and hint appearing
	'hide_delay' : 90000, // a delay between hint appearing and hint hiding
	'wise'       : true,
	'follow'     : true,
	'z-index'    : 0 // a z-index for all hint layers
},

HINTS_ITEMS = [
    "Just a statement with no tags", //Test comment
    "<img src='../JS/hintsImages/add.jpg'>",
    "<img src='../JS/hintsImages/addofc.jpg'>",
	];
	
//alert(HINTS_ITEMS[0]+"=hits first item");
var myHint = new THints (HINTS_CFG, HINTS_ITEMS);

