//************* This section is used for the Menu System ***********
if(document.images){
var arrowOn = new Image(); arrowOn.src = "/images/arrowOn.gif";
var arrowOff = new Image(); arrowOff.src = "/images/arrowOff.gif";
}

function swapOn(id){
	if(document.images){
		eval("document.menuItem_" + id).src = arrowOn.src;
	}
	return true;
}

function swapOff(id){
	if(document.images){
		eval("document.menuItem_" + id).src = arrowOff.src;
	}
	return true;
}
//************ End section for the Menu System ********************