var HINTS_CFG = {
	'top'        : -320, // a vertical offset of a hint from mouse pointer
	'left'       : -300, // 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' : 4000, // 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("81", "The terrace of our bar-restaurant. <br>In the background you see the Levante Beach with Benidorm's island."),
	wrap_img("82","Breakfast with a seaview on the terrace of an apartment on the 10th floor.<br>In the background you see the old town and the sports harbour."),
	wrap_img("83","The bar-cafeteria is located on the ground-floor of our building."),
	wrap_img("80","The terrace on a spring's day."),
	wrap_img("84","Entrance and reception of the apartments building"),
	wrap_img("85","The restaurant is located on the ground-floor of our building."),
	wrap_img("86","The indoor pool is at the back of the building."),
	wrap_img("87","Next to the pool you have a wide terrace-solarium."),
];

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='scripts/hints/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=#F2F5F9 style='border:1px solid #777777'><tr><td><img src='scripts/hints/img/k0"+s_file+".jpg'></td></tr><tr><td align=center class='txt01'>"+s_title+"</td></tr></table>"
}

