var HINTS_CFG = {
	'top'        : 5, // a vertical offset of a hint from mouse pointer
	'left'       : 15, // 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' : 0, // a delay between hint appearing and hint hiding
	'wise'       : true,
	'follow'     : true,
	'z-index'    : 1000 // a z-index for all hint layers
},

HINTS_ITEMS = {
	'TT1':wrap_std("<b>Or(Gold)</b> = Generosity and elevation of the mind<br /><b>Antlers</b> = Strength and fortitude<br /><b>Rose, Red</b> = Grace and beauty"), 
	'TT2':wrap_std("<b>Argent(Silver)</b> = Peace and sincerity<br /><b>Rose, Red</b> = Grace and beauty"), 
	'TT3':wrap_std("(Tom)")
};

var myHint = new THints (HINTS_CFG, HINTS_ITEMS);

function wrap_std (s_) {
	return "<div style='background-color:#FFFFCC; color:#000000; border:1px solid #000000; font-family:Arial, Helvetica, sans-serif; font-size:11px; padding:5px;'>"+s_+"</div>"
}


