var HINTS_CFG = {
	'top'        : 45, // a vertical offset of a hint from mouse pointer
	'left'       : -70, // a horizontal offset of a hint from mouse pointer
	'css'        : 'hintsClass', // a style class name for all hints, TD object
	'show_delay' : 500, // a delay between object mouseover and hint appearing
	'hide_delay' : 90000, // a delay between hint appearing and hint hiding
	'wise'       : true,
	'follow'     : true,
	'z-index'    : 5 // a z-index for all hint layers
},

HINTS_ITEMS = [
   // wrap_img('images/jshints.jpg', "Dreamweaver Mx2004 Review"),
    "Just a statement with no tags", //Test comment
    "<P><img src='02.gif'></P>",
	"<p class='row'> Backward pointer/link to previous tutorial   </p>", 
	"<p class='alerter'>Checking these categories will hide<BR>these types of scholarships from<BR>appearing in the display.",
	"<p class='alerter'>Selecting the FULL display will allow you to view<BR>all of the scholarship info, selecting CONDENSED<BR>will show you the most pertinent info."
];
//alert(HINTS_ITEMS[0]+"=hits first item");
var myHint = new THints (HINTS_CFG, HINTS_ITEMS);


