<!-- Beginning of JavaScript -function turnOnBtn(whichBtn)	{			if (whichBtn == "news")	document.images['newsBtn'].src = "img/nav06_news1.gif"		if (whichBtn == "about")	document.images['aboutBtn'].src = "img/nav06_about1.gif"			if (whichBtn == "parents")	document.images['parentsBtn'].src = "img/nav06_parents1.gif"	if (whichBtn == "college")	document.images['collegeBtn'].src = "img/nav06_college1.gif"	if (whichBtn == "grad")	document.images['gradBtn'].src = "img/nav06_grad1.gif"	if (whichBtn == "career")	document.images['careerBtn'].src = "img/nav06_career1.gif"		if (whichBtn == "sponsor")	document.images['sponsorBtn'].src = "img/nav06_sponsorship1.gif"	if (whichBtn == "corporate")	document.images['corporateBtn'].src = "img/nav06_corporate1.gif"	if (whichBtn == "contact")	document.images['contactBtn'].src = "img/nav06_contact1.gif"						}function turnOffBtn(whichBtn)	{				if (whichBtn == "news")	document.images['newsBtn'].src = "img/nav06_news0.gif"		if (whichBtn == "about")	document.images['aboutBtn'].src = "img/nav06_about0.gif"			if (whichBtn == "parents")	document.images['parentsBtn'].src = "img/nav06_parents0.gif"	if (whichBtn == "college")	document.images['collegeBtn'].src = "img/nav06_college0.gif"	if (whichBtn == "grad")	document.images['gradBtn'].src = "img/nav06_grad0.gif"	if (whichBtn == "career")	document.images['careerBtn'].src = "img/nav06_career0.gif"		if (whichBtn == "sponsor")	document.images['sponsorBtn'].src = "img/nav06_sponsorship0.gif"	if (whichBtn == "corporate")	document.images['corporateBtn'].src = "img/nav06_corporate0.gif"	if (whichBtn == "contact")	document.images['contactBtn'].src = "img/nav06_contact0.gif"				}				// -->