<!--
if(document.images)
{
	homeon = new Image();
	homeon.src = "images/orangeHome.jpg";
	homeoff = new Image();
	homeoff.src = "images/blackHome.jpg";
	comicon = new Image();
	comicon.src = "images/orangeComic.jpg";
	comicoff = new Image();
	comicoff.src = "images/blackComic.jpg";
	newsArchiveon = new Image();
	newsArchiveon.src = "images/orangeNewsArchive.jpg";
	newsArchiveoff = new Image();
	newsArchiveoff.src = "images/blackNewsArchive.jpg";
	bioson = new Image();
	bioson.src = "images/orangeBios.jpg";
	biosoff = new Image();
	biosoff.src = "images/blackBios.jpg";
	bonuson = new Image();
	bonuson.src = "images/orangeBonus.jpg";
	bonusoff = new Image();
	bonusoff.src = "images/blackBonus.jpg";
	podcastson = new Image();
	podcastson.src = "images/orangePodcasts.jpg";
	podcastsoff = new Image();
	podcastsoff.src = "images/blackPodcasts.jpg";
	contacton = new Image();
	contacton.src = "images/orangeContact.jpg";
	contactoff = new Image();
	contactoff.src = "images/blackContact.jpg";
}

function lightup(imgName)
{	
	if(document.images)
	{
		imgOn = eval(imgName + "on.src");
		document[imgName].src = imgOn;
	}
}

function turnoff(imgName)
{	
	if(document.images)
	{
		imgOff = eval(imgName + "off.src");
		document[imgName].src = imgOff;
	}
}
// -->