//code by iced 20070213

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'    : 1000 // a z-index for all hint layers
},

HINTS_ITEMS = {
'TT1':wrap_img("1", "1号胡晓庆"), 
'TT2':wrap_img("7", "7号王丹"), 
'TT3':wrap_img("13", "13号康艳玲"), 
'TT4':wrap_img("14", "14号胡丽沙"), 
'TT5':wrap_img("15", "15号刘畅"), 
'TT6':wrap_img("16", "16号朱丹"), 
'TT7':wrap_img("18", "18号张雅晶"), 
'TT8':wrap_img("19", "19号刘洁"), 
'TT9':wrap_img("23", "23号刘筱贝"), 
'TT10':wrap_img("25", "25号袁瑛子"), 
'TT11':wrap_img("26", "26号金函"), 
'TT12':wrap_img("32", "32号宋曼"), 
};

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='images/"+s_file+".jpg' class='picI'></td></tr><tr><td align=center>"+s_title+"</td></tr></table>"
} 