	<!--
	// detect whether user's browser supports the images object
	if (document.images) {
	
	//load all on images and create an image obj for each one
	pictureson = new Image();			// Active images
	pictureson.src = "../images/buttons/pictureson.gif";
	linkson = new Image();
	linkson.src = "../images/buttons/linkson.gif";
	
	picturesoff = new Image();			// Inactive images
	picturesoff.src = "../images/buttons/picturesoff.gif";
	linksoff = new Image();
	linksoff.src = "../images/buttons/linksoff.gif"
	
	// onMouseOver functions
	function imgOn(imgName) {
			if (document.images) {
				document.images[imgName].src = eval(imgName + "on.src");
			}
	}
	
	function imgOff(imgName) {
			if (document.images) {
				document.images[imgName].src = eval(imgName + "off.src");
			}
	}
	}
	//-->
