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("Sapa [photos]"),
	wrap("Ha Noi [photos]"),
	wrap("La baie d'Halong [photos]"),
	wrap("Hue [photos]"),
	wrap("Hoi An [photos]"),
	wrap("Nha Trang [photos]"),
	wrap("Sai Gon [photos]"),
	wrap("Phu Quoc [photos]"),
	wrap("Tay Ninh, le temple de Caodai [photos]")
];

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='../images/debut"+(b_ques?"q":"")+".gif'></td><td><img src='../images/pixel.gif' width='1' height='15'></td></tr><tr><td background='../images/vide.gif' height='28' nowrap>"+s_+"</td><td><img src='../images/fin.gif'></td></tr></table>"
}


