// JavaScript Document

// configuration variable for the hint object, these setting will be shared among all hints created by this object
var HINTS_CFG1 = {
	'wise'       : true, // don't go off screen, don't overlap the object in the document
	'margin'     : 30, // minimum allowed distance between the hint and the window edge (negative values accepted)
	'gap'        : 2, // minimum allowed distance between the hint and the origin (negative values accepted)
	'align'      : 'bctc', // 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'        : 'hintsClass', // 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' : 200, // 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'    : ['revealTrans(TRANSITION=3,DURATION=.5)', 'revealTrans(TRANSITION=2,DURATION=.5)'], // [show transition, hide transition] - transition effects, only work in IE5+
	'opacity'    : 100 // opacity of the hint in %%
};

// text/HTML of the hints
var HINTS_ITEMS1 = {
	'tt1': '<div class="hint-txt"><p>Music for gardens - listen to <a href="music.html" target="_blank">Pachelbel&acute;s Canon in D Major</a> as you browse the site.</p><p>The music player opens in a second window you can minimize.</p></div>',
	'tt2': '<img src="images/content/home/pink-peonies-lg.jpg" border="1" width="225" height="300" />',
	'tt3': '<img src="images/content/home/peony-garden-lg.jpg" border="1" width="320" height="240" />',
	'tt4': '<img src="images/content/events/yellow-peony-lg.jpg" border="1" width="300" height="299" />',
	'tt5': '<img src="images/content/events/red-peony-lg.jpg" border="1" width="300" height="342" />',
	'tt6': '<img src="images/content/weddings/weddings-water-feature-lg.jpg" border="1" width="338" height="225" />',
	'tt7': '<img src="images/content/weddings/beautiful-space-lg.jpg" border="1" width="300" height="225" />',
	'tt8': '<img src="images/content/opportunities/gazebo-hose-lg.jpg" border="1" width="225" height="300" />',
	'tt9': '<img src="images/content/gardens/bunch-lg.jpg" border="1" width="360" height="218" />',
	'tt10': '<img src="images/content/gardens/ogc-gazebo-lg.jpg" border="1" width="225" height="299" />',
	'tt11': '<img src="images/content/events/peony-garden-party-lg.jpg" border="1" width="300" height="225" />',
	'tt12': '<img src="images/content/events/pf2007/peony-garden-artist-lg.jpg" border="1" width="450" height="300" />',
	'tt13': '<img src="images/content/events/pf2007/peony-festival-1-lg.jpg" border="1" width="450" height="300" />',
	'tt14': '<img src="images/content/events/pf2007/peony-garden-visitors-lg.jpg" border="1" width="450" height="300" />',
	'tt15': '<img src="images/content/events/pf2007/among-the-peonies-lg.jpg" border="1" width="450" height="300" />',
	'tt16': '<img src="images/content/events/pf2007/peony-festival-judges-lg.jpg" border="1" width="450" height="300" />',
	'tt17': '<img src="images/content/events/pf2007/ovbg-festival-gazebo-lg.jpg" border="1" width="450" height="300" />',
	'tt18': '<img src="images/content/home/garden-plan-lg.jpg" border="1" width="500" height="333" />'

};


var myhint1 = new THints (HINTS_ITEMS1, HINTS_CFG1);
