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

HINTS_ITEMS = [
	wrap_img1("001","Festival Hue 2008"),
	wrap_img1("002","Festival Hue 2008"),
	wrap_img1("003","Festival Hue 2008"),
	wrap_img1("004","Festival Hue 2008"),
	wrap_img1("005","Festival Hue 2008"),
	wrap_img1("006","Festival Hue 2008"),
	wrap_img1("007","Festival Hue 2008"),
	wrap_img1("008","Festival Hue 2008"),
	wrap_img1("009","Festival Hue 2008"),
	wrap_img1("010","Festival Hue 2008"),
	wrap_img1("011","Festival Hue 2008"),
	wrap_img1("012","Festival Hue 2008"),
	wrap_img1("013","Festival Hue 2008"),
	wrap_img1("014","Festival Hue 2008"),
	wrap_img1("015","Festival Hue 2008")
];

var myHint = new THints (HINTS_CFG, HINTS_ITEMS);

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

