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' : 100, // a delay between object mouseover and hint appearing
	'hide_delay' : 200000, // 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("01", "Tomahawk Hut"), 
'TT2':wrap_img("02", "Tomahawk Hut, Rear wall"), 
'TT3':wrap_img("03", "Tomahawk Hut, Chimney"), 
'TT4':wrap_img("04", "Refuge (No 3 Track) Hut"),
'TT5':wrap_img("05", "Bus Hut, Note burn mark above chimney"), 
'TT6':wrap_img("06", "Track repair"),
'TT7':wrap_img("07", "Remains of Mt Duffy Refuge Hut"), 
'TT8':wrap_img("08", "Fifteen Mile Hut"),
'TT9':wrap_img("09", "Fifteen Mile Hut, roof line wall separation"),
'TT10':wrap_img("10", "Fifteen Mile Hut, ground level wall separation"),
'TT11':wrap_img("11", "Gold battery, West face"),
'TT12':wrap_img("12", "Gold battery, North face"),
'TT13':wrap_img("13", "Wilson Creek Hut, North West Corner"),
'TT14':wrap_img("14", "Southeast internal Corner, Wilson Creek Hut"),
'TT15':wrap_img("15", "Frenchmans Spur Hut"),
'TT16':wrap_img("16", "Ryan Spur Hut, North wall"), 
'TT18':wrap_img("18","Mt Terrible Hut"), 
'TT19':wrap_img("19","Just a dusting of snow"), 
	'TT17':wrap_img("17","Mt Terrible Hut, Fireplace")
};

var myHint = new THints (HINTS_CFG, HINTS_ITEMS);

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