// JavaScript Document
<!--
function preloadimages(){	
	document.imgs    = new Array();
	document.imgsoff = new Array();
	for(i=0;i<arguments.length;i++){
		document.imgs[i] = new Image();
		document.imgs[i].src = "images/" + arguments[i] + "_on.gif";
		document.imgsoff[i]  = "images/" + arguments[i] + "_off.gif";
	}
}

function swapimage(){
	document.getElementById(arguments[0]).src = document.imgs[arguments[1]].src;	
}

function restoreimage(){
	document.getElementById(arguments[0]).src = document.imgsoff[arguments[1]];	
}

function gallery(){
	var left = (window.screen.width/2)  - 200;
	var top  = (window.screen.height/2) - 150;
	window.open("gallery_images.php?src="+arguments[0]+"&alt="+arguments[1], arguments[0], "width=400,height=300,status=no,scrollbars=no,resizable=no,location=0,menubar=0,toolbar=no,left="+left+",top="+top);//left="+left+",top="+top+"");
}
-->