window.onunload=function()
{
	var path = "images/";
	var hme = document.getElementById('Home');
	hme.src=path+"HomeOff.gif";
	
	var gallery = document.getElementById('Gallery');
	gallery.src=path+"GalleryOff.gif";
	
	var bio = document.getElementById('ArtistBio');
	bio.src=path+"ArtistBioOff.gif";
	
}

function SwapImage(el, imgname)
{
	var path = "images/";
	theImg=document.getElementById(el);
	theImg.src=path+imgname;
}