// 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'        : 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'        : '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' : 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] - nice transition effects, only work in IE5+
	'opacity'    : 100 // opacity of the hint in %%
};
// text/HTML of the hints
var HINTS_ITEMS = [
	'Catholic Answers "Live" Radio <br /> 3:00pm - 4:00 pm  (PST)  <br />Call in #: 619-387-7200  <br /><a href="http://www.catholic.com/radio/calendar.php">http://www.catholic.com/radio/calendar.php</a>',
	"Martha &amp; Mary Women's Conference  <br />Saturday, February 21st <br /> Grand River Center , Dubuque, Iowa <br /> Contact Colleen at (563) 583-6117 <br /> <a href='http://www.springtimeofhope.org/marthamary2009.html'>http://www.springtimeofhope.org/marthamary2009.html</a>",
	'Magnificat <br /> A Ministry to Catholic Women <br /> Saturday, June 13th <br /> Palm Desert, California <br /> <a href="http://www.magnificatpalmdesert.org/">http://www.magnificatpalmdesert.org/</a>',
	'10th Annual Midwest Catholic Family Conference <br /> August 7-9, Wichita Kansas <br /> <a href="http://www.catholicfamilyconference.org">http://www.catholicfamilyconference.org</a>',
	'St. Edward&#39;s Catholic Church<br />7pm-9pm April 2<br />417 W. Grand Blvd., Corona, CA 92882<br /> <a href="http://www.scribd.com/doc/12953550/A-Former-Insider-Exposes-The-Dark-Side-Of-The-New-Age-Movement">View Flyer</a>',
	'Catholic Answers "Live" Radio <br /> 4:00pm - 5:00 pm  (PST)  <br />Call in #: 619-387-7200  <br /><a href="http://www.catholic.com/radio/calendar.php">http://www.catholic.com/radio/calendar.php</a>',
	'Culture Gauge Live Radio <br /> 12:20pm - 12:45 pm  (EST)  <br />Listen Live<br /><a href="http://s5.viastreaming.net/7180/listen.asx">The Stations of the Cross</a>',
	'The Deception of the New Age, a Conference on Spiritual Warfare<br /> 07:30am - 03:00 pm  (EST)  <br />More Information: <br /><a href="/resources/Deceptionofnewageflyer.pdf">PDF</a>',
	'San Diego Marian Conference<br /> 08:00am - 05:00 pm  (PST)  <br />More Information: <br /><a href="http://www.sharingthetreasures.org/marian2009/marian_poster_color.pdf">PDF</a>',
];

var myHint = new THints (HINTS_ITEMS, HINTS_CFG);
