<!--
function swapActive() {
	if (window.name) {
		thisName = window.name;
	} else {
		thisName = "NULL";	
	}
	if (thisName == "rental") {
		if (document.images) {
			document[thisName].src = "navbar/rental_on.jpg";
		}
	}
	else if (thisName == "custom") {
		if (document.images) {
			document[thisName].src = "navbar/custom_on.jpg";
		}
	}
	else if (thisName == "accessories") {
		if (document.images) {
			document[thisName].src = "navbar/accessories_on.jpg";
		}
	}
	else if (thisName == "pavilions") {
		if (document.images) {
			document[thisName].src = "navbar/pavilions_on.jpg";
		}
	}
	else if (thisName == "graphics") {
		if (document.images) {
			document[thisName].src = "navbar/graphics_on.jpg";
		}
	}
	else if (thisName == "services") {
		if (document.images) {
			document[thisName].src = "navbar/services_on.jpg";
		}
	}
	else {
		// do nothing
	}
}
//-->