var HINTS_CFG = {
	'top'        : 5, // a vertical offset of a hint from mouse pointer
	'left'       : 5, // 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' : 0, // a delay between hint appearing and hint hiding, always show when over hint anchor
	'wise'       : true,
	'follow'     : false,
	'z-index'    : 0 // a z-index for all hint layers
},

HINTS_ITEMS = {
        0 : wrap(""),
        1 : wrap(""),
        2 : wrap(""),
        3 : wrap(""),
        4 : wrap(""),
        5 : wrap("Women's Morning Bible Study is currently studying various topics. They meet at 8:30am for breakfast the first Wednesday of each month at the Buffalo Cafe.  Contact the church office for more information."),
        6 : wrap("The Choir practices and performs weekly, except during summer and winter breaks.  Contact Karen Leftwich for more information."),
        7 : wrap("The Praise Team practices and performs year round but is currently rehearsing just on Sunday mornings.  Contact Karen Leftwich for more information."),
        8 : wrap("The Bell Choir practices weekly, except during summer and winter breaks.  They perform during the Whitefish Stroll, during Worship Services around Christmas and Easter, and in the spring following the Big Sky Handbell Festival.  Contact Karen Leftwich for more information."),
        9 : wrap("FPC Youth Group has merged with Young Life.  Young Life meets in The Clubhouse behind Church of the Nazarene, 1125 7th Street, Whitefish. Call Bret Bollweg @ 270-6369 for more information."),
        10:"",
        11: wrap_img("1", "Bride at Altar, Thorne-Rosenberg"),
        12: wrap_img("2", "Exchanging Vows, Thorne-Rosenberg"),
        13: wrap_img("3", "Decorated Aisle & Altar, Burk-MacKillop"),
        14: wrap_img("4", "Giving Bride Away, Burk-MacKillop"),
        15: wrap_img("5", "Decorated Altar, Nordlund-Grillo"),
        16: wrap_img("6", "Exchanging Vows, Stuart-Frederick")
	};

var myHint = new THints (HINTS_CFG, HINTS_ITEMS);

function wrap (s_, b_ques) {
	return "<table cellpadding='2' cellspacing='2' border='1' style='-moz-opacity:90%;filter:progid:DXImageTransform.Microsoft.dropShadow(Color=#777777,offX=4,offY=4)'><tr><td background='images/Hint.gif' width='200'><FONT FACE='helvetica'>"+s_+"</FONT></td></tr></table>"
}

function wrap_img (s_file, s_title) {
	return "<table cellpadding=5 bgcolor=white style='border:1px solid #777777'><tr><td><img src='images/Wedding"+s_file+".jpg' class='picI'></td></tr><tr><td align=center>"+s_title+"</td></tr></table>"
}

