<!--

	function arrowOn(imgName) {
		if (document.images) {
			document[imgName].src = '/images/arrow.gif';
		}
	}

	function arrowOff(imgName) {
		if (document.images) {
			document[imgName].src = '/images/arrownull.gif';
		}
	}

	function builderOn(imgName) {
		if (document.images) {
			document.builder1.src = '/images/builders/' + imgName + '.jpg';
		}
	}

//-->