<!--
	if (document.images)
	{
		button1on = new Image (100,30);
		button1on.src = "graphics/buttons/home_lit.gif"

		button2on = new Image (100,30);
		button2on.src = "graphics/buttons/bio_lit.gif"

		button3on = new Image (100,30);
		button3on.src = "graphics/buttons/career_lit.gif"

		button4on = new Image (100,30);
		button4on.src = "graphics/buttons/email_lit.gif"

		button5on = new Image (100,30);
		button5on.src = "graphics/buttons/quotes_lit.gif"

		button6on = new Image (100,30);
		button6on.src = "graphics/buttons/photos_lit.gif"

		button7on = new Image (100,30);
		button7on.src = "graphics/buttons/press_lit.gif"

		button8on = new Image (100,30);
		button8on.src = "graphics/buttons/soloCD_lit.gif"

		button9on = new Image (100,30);
		button9on.src = "graphics/buttons/whatsnew_lit.gif"


		button1off = new Image (100,30);
		button1off.src = "graphics/buttons/home.gif"

		button2off = new Image (100,30);
		button2off.src = "graphics/buttons/bio.gif"

		button3off = new Image (100,30);
		button3off.src = "graphics/buttons/career.gif"

		button4off = new Image (100,30);
		button4off.src = "graphics/buttons/email.gif"

		button5off = new Image (100,30);
		button5off.src = "graphics/buttons/quotes.gif"

		button6off = new Image (100,30);
		button6off.src = "graphics/buttons/photos.gif"

		button7off = new Image (100,30);
		button7off.src = "graphics/buttons/press.gif"

		button8off = new Image (100,30);
		button8off.src = "graphics/buttons/soloCD.gif"

		button9off = new Image (100,30);
		button9off.src = "graphics/buttons/whatsnew.gif"
	}

	function lightup(imgName)
	{
		if (document.images)
		{
			imgOn = eval(imgName + "on.src");
			document[imgName].src = imgOn;
		}
	}

	function turnoff(imgName)
	{
		if (document.images)
		{
			imgOn = eval(imgName + "off.src");
			document[imgName].src = imgOn;
		}
	}
//-->
