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

HINTS_ITEMS = {
	'TT1':wrap_img("1"), 
	'TT2':wrap_img("2"), 
	'TT3':wrap_img("3"), 
	'TT4':wrap_img("4"), 
	'TT5':wrap_img("5"), 
	'TT6':wrap_img("6"), 
	'TT7':wrap_img("7"), 
	'TT8':wrap_img("8"), 
	'TT9':wrap_img("9"), 
	'TT10':wrap_img("10"), 
	'TT11':wrap_img("11"), 
	'TT12':wrap_img("12"), 
	'TT13':wrap_img("13"),
	'TT14':wrap_img("14"),
	'TT15':wrap_img("15"),
	'TT16':wrap_img("16"),
	'TT17':wrap_img("17"),
	'TT18':wrap_img("18"),
	'TT19':wrap_img("19"),
	'TT20':wrap_img("20"),
	'TT21':wrap_img("21"),
	'TT22':wrap_img("22"),
	'TT23':wrap_img("23"),	
	'TT24':wrap_img("24"),	
	'TT25':wrap_img("25"),	
	'TT26':wrap_img("26")	
	

};

var myHint = new THints (HINTS_CFG, HINTS_ITEMS);


function wrap_img (s_file) {
	return "<table bgcolor=white style='border:1px solid #777777'><tr><td><img src='images/factsheet/thumb"+s_file+".gif' class='picI'></td></tr></table>"
}

