var current_image;

function loadMenu()
{
recognizing = new Image()
recognizing.SRC="../images/navigation/off/recognizing.gif"
realpeople = new Image()
realpeople.SRC="../images/navigation/off/realpeople.gif"
honestquestions = new Image()
honestquestions.SRC="../images/navigation/off/honestquestions.gif"
nextsteps = new Image()
nextsteps.SRC="../images/navigation/off/nextsteps.gif"
contactus = new Image()
contactus.SRC="../images/navigation/off/contactus.gif"
home1 = new Image()
home1.SRC="../images/navigation/off/home.gif"

recognizingOn = new Image()
recognizingOn.SRC="../images/navigation/on/recognizing.gif"
realpeopleOn = new Image()
realpeopleOn.SRC="../images/navigation/on/realpeople.gif"
honestquestionsOn = new Image()
honestquestionsOn.SRC="../images/navigation/on/honestquestions.gif"
nextstepsOn = new Image()
nextstepsOn.SRC="../images/navigation/on/nextsteps.gif"
contactusOn = new Image()
contactusOn.SRC="../images/navigation/on/contactus.gif"
home1On = new Image()
home1On.SRC="../images/navigation/on/home.gif"
}
function addFile(recordid, upload_type)
{
	window.open('file_upload.php?recordid='+recordid+'&upload_type='+upload_type,'AddDocument','width=400,height=200,top=150,left=150,resizable');
}
function hilite_img(img_id)
{
	document.getElementById(img_id).src = document.getElementById(img_id).src.replace('/off/','/on/');
}
function imgOn(imgName)
{
	document.images[imgName].src = eval(imgName + "On.SRC");
	document.images[current_image].src = eval(current_image + "On.SRC");
}
function imgOff(imgName, img_id)
{
	document.images[imgName].src = eval(imgName + ".SRC");
//	document.images[current_image].src = eval(current_image + ".SRC");
//	hilite_img(current_image);
}
function hideLayer(layerName){
	if (document.layers) {
		document.layers[layerName].visibility="hide";
  	}
  	else {
    	document.getElementById(layerName).style.visibility="hidden";
  	}
}
function showLayer(layerName){
	if (document.layers) {
		document.layers[layerName].visibility="show";
  	}
  	else {
    	document.getElementById(layerName).style.visibility="visible";
  	}
}