<!--
	if (document.images) {
		about_on = new Image();
		about_on.src = "images/about-on.gif";
		about_off = new Image();
		about_off.src = "images/about-off.gif";
	
		series_on = new Image();
		series_on.src = "images/series-on.gif";
		series_off = new Image();
		series_off.src = "images/series-off.gif";
		
		contact_on = new Image();
		contact_on.src = "images/contact-on.gif";
		contact_off = new Image();
		contact_off.src = "images/contact-off.gif";
		
		more_on = new Image();
		more_on.src = "images/more-on.gif";
		more_off = new Image();
		more_off.src = "images/more-off.gif";
		
		ps1_on = new Image();
		ps1_on.src = "images/ps1-on.jpg";
		ps1_off = new Image();
		ps1_off.src = "images/ps1-off.jpg";
		
		ps2_on = new Image();
		ps2_on.src = "images/ps2-on.jpg";
		ps2_off = new Image();
		ps2_off.src = "images/ps2-off.jpg";
		
		ps3_on = new Image();
		ps3_on.src = "images/ps3-on.jpg";
		ps3_off = new Image();
		ps3_off.src = "images/ps3-off.jpg";
		
		ps4_on = new Image();
		ps4_on.src = "images/ps4-on.jpg";
		ps4_off = new Image();
		ps4_off.src = "images/ps4-off.jpg";
		
		ps5_on = new Image();
		ps5_on.src = "images/ps5-on.jpg";
		ps5_off = new Image();
		ps5_off.src = "images/ps5-off.jpg";
		
		ps6_on = new Image();
		ps6_on.src = "images/ps6-on.jpg";
		ps6_off = new Image();
		ps6_off.src = "images/ps6-off.jpg";
		
		ps7_on = new Image();
		ps7_on.src = "images/ps7-on.jpg";
		ps7_off = new Image();
		ps7_off.src = "images/ps7-off.jpg";
		
		fps1_on = new Image();
		fps1_on.src = "images/fps1-on.jpg";
		fps1_off = new Image();
		fps1_off.src = "images/fps1-off.jpg";
		
		fps2_on = new Image();
		fps2_on.src = "images/fps2-on.jpg";
		fps2_off = new Image();
		fps2_off.src = "images/fps2-off.jpg";
		
		fps3_on = new Image();
		fps3_on.src = "images/fps3-on.jpg";
		fps3_off = new Image();
		fps3_off.src = "images/fps3-off.jpg";
		
		fps4_on = new Image();
		fps4_on.src = "images/fps4-on.jpg";
		fps4_off = new Image();
		fps4_off.src = "images/fps4-off.jpg";
		
		fps5_on = new Image();
		fps5_on.src = "images/fps5-on.jpg";
		fps5_off = new Image();
		fps5_off.src = "images/fps5-off.jpg";
		
		fps6_on = new Image();
		fps6_on.src = "images/fps6-on.jpg";
		fps6_off = new Image();
		fps6_off.src = "images/fps6-off.jpg";
		
		fps7_on = new Image();
		fps7_on.src = "images/fps7-on.jpg";
		fps7_off = new Image();
		fps7_off.src = "images/fps7-off.jpg";
		
	}
	
	function changeImages() {
		if (document.images) {
			for (var i=0; i<changeImages.arguments.length; i+=2) {
				document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
			}
		}
	}
	// -->