var tipArray = new Array();
tipArray[1] = "Go home!";
tipArray[2] = "Find all of the contact information you would ever need here";
tipArray[3] = "Go here to view a calendar of all Fire & Water related events";
tipArray[4] = "Study that big book we like to call the 'Bible'";
tipArray[5] = "You only go to school 5 days a week? Try 6 and join is at Sunday School";
tipArray[6] = "You need a form for anything mentioned in this site? We've got it here";
tipArray[8] = "Leaders? We don't need no stinking leaders.";
tipArray[9] = "See pictures of the Fire & Water youth and what they're doing";
tipArray[10] = "Participate in a discussion about various topics related to the church group";
tipArray[11] = "Update your student accounts in this section";
tipArray[12] = "Read the latest newsletter that talks about every Fire & Water";

var oClear;

function hl(n)
{
	if ( oClear ) clearTimeout(oClear);

	var sStar1 = "str" + (n - 1);
	var oStar1 = document.getElementById(sStar1);
	var sStar2 = "str" + (n + 1);
	var oStar2 = document.getElementById(sStar2);

	oStar1.src = "/img/star1.gif";
	oStar2.src = "/img/star1.gif";

	nTip = ( n / 2 );
	document.getElementById("tip").innerHTML = tipArray[nTip];
}

function ll(n)
{
	var sStar1 = "str" + (n - 1);
	var oStar1 = document.getElementById(sStar1);
	var sStar2 = "str" + (n + 1);
	var oStar2 = document.getElementById(sStar2);
	
	oStar1.src = "/img/star0.gif";
	oStar2.src = "/img/star0.gif";
	
	oClear = setTimeout("clearTip()", 2000);
}

function clearTip()
{
	document.getElementById("tip").innerHTML = "";
	clearTimeout(oClear);
}