<!-- 

// configuration variables for the hint objects, these setting will be shared among all hints created by each object
var HINTS_CFG1 = {
	'wise'       : true, // don't go off screen, don't overlap the object in the document
	'margin'     : 10, // minimum allowed distance between the hint and the window edge (negative values accepted)
	'gap'        : 0, // minimum allowed distance between the hint and the origin (negative values accepted)
	'align'      : 'tcbc', // align of the hint and the origin (by first letters origin's top|middle|bottom left|center|right to hint's top|middle|bottom left|center|right)
	'css'        : 'hintsClass1', // a style class name for all hints, applied to DIV element (see style section in the header of the document)
	'show_delay' : 200, // a delay between initiating event (mouseover for example) and hint appearing
	'hide_delay' : 500, // a delay between closing event (mouseout for example) and hint disappearing
	'follow'     : false, // hint follows the mouse as it moves
	'z-index'    : 100, // a z-index for all hint layers
	'IEfix'      : false, // fix IE problem with windowed controls visible through hints (activate if select boxes are visible through the hints)
	'IEtrans'    : ['blendTrans(DURATION=.3)', 'blendTrans(DURATION=.3)'], // [show transition, hide transition] - transition effects, only work in IE5+
	'opacity'    : 100 // opacity of the hint in %%
};
var HINTS_CFG2 = {
	'wise'       : true,
	'margin'     : 10,
	'gap'        : 20,
	'align'      : 'bctc',
	'css'        : 'hintsClass2',
	'show_delay' : 200,
	'hide_delay' : 500,
	'follow'     : false,
	'z-index'    : 100,
	'IEfix'      : false,
	'IEtrans'    : ['revealTrans(TRANSITION=3,DURATION=.5)', 'revealTrans(TRANSITION=2,DURATION=.5)'],
	'opacity'    : 80
};
// text/HTML of the hints
// fist array uses numeric indexes, second uses text IDs
var HINTS_ITEMS1 = [
	'short definition',
	'tooltip for item2 with some <b>HTML</b>',
	'tooltip for item3<br>This one is multiline',
	'tooltip for item4',
	'another sample tooltip with the <a href="http://www.softcomplex.com">link</a>'
];
var HINTS_ITEMS2 = {
	'tt1': '<img src="img/msa-bah-5.jpg" border="1" /><br><font size=2><nobr>in Mombasa</nobr></font>',
	'tt2': '<img src="img/miku-11.jpg" border="1" /><br><font size=2><nobr>in Mikumi, Tansania</nobr></font>',
	'tt3': '<img src="img/msa-scene-1.jpg" border="1" /><br><font size=2><nobr>in Mombasa</nobr></font>',
	'tt4': '<img src="img/voi-cut-8.jpg" border="1" /><br><font size=2><nobr>in Voi, zwischen Mombasa und Nairobi</nobr></font>',
	'tt5': '<img src="img/usa-cut-5.jpg" border="1" /><br><font size=2><nobr>Usambara-Berge, in Nordost-Tansania</nobr></font>',
	'tt6': '<img src="img/mby-cut-9.jpg" border="1" /><br><font size=2><nobr>in Mbeya, S&uuml;dwest-Tansania</nobr></font>'
};

var myHint1 = new THints (HINTS_ITEMS1, HINTS_CFG1);
var myHint2 = new THints (HINTS_ITEMS2, HINTS_CFG2); 

// -->
