//Swap Images On Nav
	function swap_nav(dir, imgname, status){
		document.images[imgname].src=dir+"images/interface/"+imgname+status+".gif";
	}
	
//highlights display	
function showhide(the_item) {
	var obj = document.getElementById(the_item);
	var newStr = the_item.split("_");
	var objb = document.getElementById(newStr[0]);
	
	if (obj.style.display == "none") {
		objb.style.fontSize = "13px";
		objb.style.color = "#8a1b04";
		obj.style.display = "block";
	}else{
		objb.style.fontSize = "11px";
		objb.style.color = "#8a1b04";
		obj.style.display = "none";
	}
}
