// JavaScript Document
if (document.images) {
	abouton = new Image(113,23);
    abouton.src = "images/about-this-site_on.gif";  
    aboutoff = new Image(113,23);
    aboutoff.src = "images/about-this-site.gif";

	newson = new Image(110,23);  
	newson.src = "images/news_on.gif";
	newsoff = new Image(110,23);
	newsoff.src = "images/news.gif";
	
	biographyon = new Image(83,23);  
	biographyon.src = "images/biography_on.gif";
	biographyoff = new Image(83,23);
	biographyoff.src = "images/biography.gif";
	
	discographyon = new Image(98,23);  
	discographyon.src = "images/discography_on.gif";
	discographyoff = new Image(98,23);
	discographyoff.src = "images/discography.gif";
	
	articleson = new Image(142,23);  
	articleson.src = "images/articles_on.gif";
	articlesoff = new Image(142,23);
	articlesoff.src = "images/articles.gif";
	
	videoon = new Image(87,23);  
	videoon.src = "images/video-clips_on.gif";
	videooff = new Image(87,23);
	videooff.src = "images/video-clips.gif";
	
	audioon = new Image(129,23);  
	audioon.src = "images/audio-interviews_on.gif";
	audiooff = new Image(129,23);
	audiooff.src = "images/audio-interviews.gif";
	
	photoon = new Image(112,23);  
	photoon.src = "images/photo-gallery_on.gif";
	photooff = new Image(112,23);
	photooff.src = "images/photo-gallery.gif";
	
	guestbookon = new Image(86,23);  
	guestbookon.src = "images/guestbook_on.gif";
	guestbookoff = new Image(86,23);
	guestbookoff.src = "images/guestbook.gif";
	
	linkson = new Image(124,23);  
	linkson.src = "images/suggested-links_on.gif";
	linksoff = new Image(124,23);
	linksoff.src = "images/suggested-links.gif";
	
	contacton = new Image(68,23);  
	contacton.src = "images/contact_on.gif";
	contactoff = new Image(68,23);
	contactoff.src = "images/contact.gif";
	
	greekon = new Image(76,23);  
	greekon.src = "images/greek-vesion_on.gif";
	greekoff = new Image(76,23);
	greekoff.src = "images/greek-vesion.gif";
}
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;
    }
 }