	<!--	

	var buttonNames = new Array("chassis", 
				    "engine", 
				    "controllers", 
				    "upgrades",
				    "testers",
				    "customer", 
				    "staff", 
				    "contact");

	var buttons = new Array(8);


	function PicButton() { 
	   this.off = new Image(155,50); 
	   this.over = new Image(155,50);
	   this.down = new Image(155,50);
	} 

	function initialize() {
		for (ndx = 0; ndx < buttonNames.length; ndx = ndx + 1) {
			buttons[ndx] = new PicButton();
			buttons[ndx].off.src = "pics/" + buttonNames[ndx] + ".gif";
			buttons[ndx].over.src = "pics/" + buttonNames[ndx] + "over.gif";
			buttons[ndx].down.src = "pics/" + buttonNames[ndx] + "down.gif";
		}
	}

	function mouseOff(name,num) {
		document.images[name].src = buttons[num].off.src;
		return true;
	}

	function mouseOver(name,num) {
		document.images[name].src = buttons[num].over.src;
		return true;
	}

	function mouseDown(name,num) {
		document.images[name].src = buttons[num].down.src;
		return true;
	}


	initialize();

	-->	