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'     : true,
	'z-index'    : 0 // a z-index for all hint layers
},

HINTS_ITEMS = [
	wrap_img("01", "Great view to the swimming pool"),
	wrap_img("02", "Modern equiped with large fridge..."),
	wrap_img("03", "Great looking, comfortable room"),
	wrap_img("04", "Comfortable double bed"),
	wrap_img("05", "TV & cable tv with more than 45 channels available"),
	wrap_img("06", "Comfortable double bed"),
	wrap_img("07", "Fully equiped room"),
	wrap_img("08", "Clean and cozy budget room"),
	wrap_img("09", "Comfortable double bed"),
	wrap_img("10", "Fridge & TV"),
	wrap_img("11", "Comfortable budget room"),
	wrap_img("12", "Darcy's Bar corner"),
	wrap_img("13", "A place to met new friends"),
	wrap_img("14", "Do you play pool?"),
	wrap_img("15", "Live band"),
	wrap_img("16", "We are waiting you..."),
	wrap_img("17", "Drink a beer and look sports"),
	wrap_img("18", "Shagwell Mansions"),
	wrap_img("19", "You can enjoy a great variety of drinks"),
	wrap_img("20", "You can enjoy sports events on our big screen TV"),
	wrap_img("21", "Welcome to Darcy's Bar"),
	wrap_img("22", "You can enjoy a full range of European, Thai and Australian food"),
	wrap_img("23", "Enjoy the food sitting at our tables along the pool"),
	wrap_img("24", "Welcome to our Poolside Restaurant"),
	wrap_img("25", "Spent a wonderful time at our Poolside Restaurant"),
	wrap_img("26", "You can enjoy our food sitting at the shadow at our Poolside Restaurant"),
	wrap_img("27", "Welcome to our Outback Bar"),
	wrap_img("28", "Enjoy a quiet drink in a tropical atmosphere"),
	wrap_img("29", "Enjoy a great variety of drinks"),
	wrap_img("30", "Enjoy local and imported beers and spirits including the famous Australian Victoria Bitter"),
	wrap_img("31", "Enjoy our Beautiful Pool"),
	wrap_img("32", "Enjoy playing Darts"),
	wrap_img("33", "Our Swimming Pool"),
	wrap_img("34", "Swimming Pool Fight"),
	wrap_img("35", "A day at the swimming pool"),
	wrap_img("36", "Shagwell Mansions Swimming Pool"),
	wrap_img("37", "Long Horn Steakhouse"),
	wrap_img("38", "Long Horn Steakhouse"),
	wrap_img("39", "Long Horn Steakhouse"),
	wrap_img("40", "Long Horn Steakhouse"),
];

var myhint = new THints (HINTS_CFG, HINTS_ITEMS);

function wrap (s_, b_ques) {
	return "<table cellpadding='0' cellspacing='0' border='0' style='-moz-opacity:90%;filter:progid:DXImageTransform.Microsoft.dropShadow(Color=#777777,offX=4,offY=4)'><tr><td rowspan='2'><img src='img/1"+(b_ques?"q":"")+".gif'></td><td><img src='/img/pixel.gif' width='1' height='15'></td></tr><tr><td background='img/2.gif' height='28' nowrap>"+s_+"</td><td><img src='img/4.gif'></td></tr></table>"
}

function wrap_img (s_file, s_title) {
	return "<table cellpadding=5 bgcolor=white 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>"
}

