// configuration variable for the hint object, these setting will be shared among all hints created by this object
var HINTS_CFG = {
	'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'        : -7, // minimum allowed distance between the hint and the origin (negative values accepted)
	'align'      : 'brtl', // 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'        : 'wrapped', // 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)'], // [show transition, hide transition] - transition effects, only work in IE5+
	'opacity'    : 90 // opacity of the hint in %%
};
// text/HTML of the hints
var HINTS_ITEMS = [
	wrap('Phone us on 0427 202 535 or use the <a href="contact.htm">online form</a>.', 'scripts/tooltips/img/info.gif'),
	wrap('Fields with an <b>Info</b> icon must be filled before form is submitted', 'scripts/tooltips/img/warning.gif'),
	wrap('tooltip for item3', 'scripts/tooltips/img/question.gif'),
	wrap('tooltip for item4', 'scripts/tooltips/img/warning.gif'),
	wrap('tooltip with the <a href="http://www.softcomplex.com">link</a>', 'scripts/tooltips/img/question.gif'),
	wrap2('another wrapper'),
	wrap2('this one can stretch<br />both horizontally and vertically')
];

//
function wrap (s_text, s_icon) {
	return '<table><tr><td rowspan="2"><img src="' + s_icon + '"></td><td colspan="2"><img src="scripts/tooltips/img/pixel.gif" width="1" height="15" border="0"></td></tr><tr><td background="scripts/tooltips/img/2.gif" height="28" nowrap>' + s_text + '</td><td><img src="scripts/tooltips/img/4.gif"></td></tr></table>';
}
// multiple templates/functions can be used in the same page
function wrap2 (s_text) {
	return [
		'<table>',
		'<tr><td><img src="scripts/tooltips/img/corner_tl.gif" width="10" height="10" /></td><td style="background-image:url(img/side_t.gif)"></td><td><img src="scripts/tooltips/img/corner_tr.gif" width="10" height="10" /></td></tr>',
		'<tr><td style="background-image:url(img/side_l.gif)"></td><td class="hintText">', s_text ,'</td><td style="background-image:url(img/side_r.gif)"></td></tr>',
		'<tr><td><img src="scripts/tooltips/img/corner_bl.gif" width="10" height="10" /></td><td style="background-image:url(img/side_b.gif)"></td><td><img src="scripts/tooltips/img/corner_br.gif" width="10" height="10" /></td></tr>',
		'</table>'
	].join('');
}

var myHint = new THints (HINTS_ITEMS, HINTS_CFG);
