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' : 100000, // 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_img("1","Foto 1"),
	wrap_img("2","Foto 2"),
	wrap_img("3","Foto 3"),
	wrap_img("4","Foto 4"),
	wrap_img("5","Foto 5"),
	wrap_img("6","Foto 6"),
	wrap_img("7","Foto 7"),
	wrap_img("8","Foto 8"),
	wrap_img("9","Foto 9"),
	wrap_img("10","Foto 10"),
	wrap_img("11","Foto 11"),
	wrap_img("12","Foto 12"),
	wrap_img("13","Foto 13"),
	wrap_img("14","Foto 14"),
	wrap_img("15","Foto 15"),
	wrap_img("16","Foto 16"),
	wrap("RICA", true)
];

var myHint = new THints (HINTS_CFG, HINTS_ITEMS);

function wrap (s_, b_ques) {
	return ""
}

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