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' : 250, // a delay between object mouseover and hint appearing
	'hide_delay' : 0, // 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("holder", "PS20B50T"), 
	'TT2':wrap_img("holder", "PS20B50S"), 
	'TT3':wrap_img("PS20B75A", "PS20B75A"), 
	'TT4':wrap_img("PS20B75T", "PS20B75T"), 
	'TT5':wrap_img("PS20B75S", "PS20B75S"),
	'TT6':wrap_img("PS300_1224_T_B", "PS300-1224-T-B"),
	'TT7':wrap_img("PS300_1224_S_B", "PS300-1224-S-B"),
	'TT8':wrap_img("PS20D75S", "PS20D75S"),
	'TT9':wrap_img("holder", "PS20D75T"),
	'TT10':wrap_img("PS20D75A", "PS20D75A"),
	'TT11':wrap_img("holder", "PS30U13/18P", true)
};

var myHint = new THints (HINTS_CFG, HINTS_ITEMS);

function wrap_img (s_file, s_title) {
	return "<table cellpadding=5 bgcolor=white style='border:1px solid #777777'><tr><td><img src='img/"+s_file+".jpg' class='picI'></td></tr><tr><td align=center>"+s_title+"</td></tr></table>"
}

