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

	newson = new Image(106,23);  
	newson.src = "../images/greek/news_on.gif";
	newsoff = new Image(106,23);
	newsoff.src = "../images/greek/news.gif";
	
	biographyon = new Image(79,23);  
	biographyon.src = "../images/greek/biography_on.gif";
	biographyoff = new Image(79,23);
	biographyoff.src = "../images/greek/biography.gif";
	
	discographyon = new Image(93,23);  
	discographyon.src = "../images/greek/discography_on.gif";
	discographyoff = new Image(93,23);
	discographyoff.src = "../images/greek/discography.gif";
	
	articleson = new Image(144,23);  
	articleson.src = "../images/greek/articles_on.gif";
	articlesoff = new Image(144,23);
	articlesoff.src = "../images/greek/articles.gif";
	
	videoon = new Image(94,23);  
	videoon.src = "../images/greek/video-clips_on.gif";
	videooff = new Image(94,23);
	videooff.src = "../images/greek/video-clips.gif";
	
	audioon = new Image(108,23);  
	audioon.src = "../images/greek/audio-interviews_on.gif";
	audiooff = new Image(108,23);
	audiooff.src = "../images/greek/audio-interviews.gif";
	
	photoon = new Image(98,23);  
	photoon.src = "../images/greek/photo-gallery_on.gif";
	photooff = new Image(98,23);
	photooff.src = "../images/greek/photo-gallery.gif";
	
	guestbookon = new Image(136,23);  
	guestbookon.src = "../images/greek/guestbook_on.gif";
	guestbookoff = new Image(136,23);
	guestbookoff.src = "../images/greek/guestbook.gif";
	
	linkson = new Image(100,23);  
	linkson.src = "../images/greek/suggested-links_on.gif";
	linksoff = new Image(100,23);
	linksoff.src = "../images/greek/suggested-links.gif";
	
	contacton = new Image(92,23);  
	contacton.src = "../images/greek/contact_on.gif";
	contactoff = new Image(92,23);
	contactoff.src = "../images/greek/contact.gif";
	
	englishon = new Image(86,23);  
	englishon.src = "../images/greek/english-version_on.gif";
	englishoff = new Image(86,23);
	englishoff.src = "../images/greek/english-version.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;
    }
 }
