<!--
	if (document.images) {
		abouton = new Image();
		abouton.src = "images/about-red.jpg";
		aboutoff = new Image();
		aboutoff.src = "images/about.jpg";
		artistson = new Image();
		artistson.src = "images/artists-red.jpg";
		artistsoff = new Image();
		artistsoff.src = "images/artists.jpg";
		contacton = new Image();
		contacton.src = "images/contact-red.jpg";
		contactoff = new Image();
		contactoff.src = "images/contact.jpg";
		homeon = new Image();
		homeon.src = "images/home-red.jpg";
		homeoff = new Image();
		homeoff.src = "images/home.jpg";
		musicon = new Image();
		musicon.src = "images/music-red.jpg";
		musicoff = new Image();
		musicoff.src = "images/music.jpg";
		videoson = new Image();
		videoson.src = "images/videos-red.jpg";
		videosoff = new Image();
		videosoff.src = "images/videos.jpg";
		storeon = new Image();
		storeon.src = "images/store-red.jpg";
		storeoff = new Image();
		storeoff.src = "images/store.jpg";
		photoson = new Image();
		photoson.src = "images/photos-red.jpg";
		photosoff = new Image();
		photosoff.src = "images/photos.jpg";

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