/* JavaScript Document
tablefton = new Image();
tablefton.src = "images/Extranet_93.gif";
tableftoff = new Image();
tableftoff.src = "images/Extranet_89.gif";
tabrighton = new Image();
tabrighton.src = "images/Extranet_96.gif";
tabrightoff = new Image();
tabrightoff.src = "images/Extranet_92.gif";
tabbgoon = new Image();
tabbgoon.src = "images/Extranet_95.gif";
tabbgoff = new Image();
tabbgoff.src = "images/Extranet_91.gif";*/

subArrowUp = new Image();
subArrowUp.src = "images/SubArrowUp.gif";
subArrowDown = new Image();
subArrowDown.src = "images/SubArrowDown.gif";
function rollOverOn(tableft, tabCenter, tabright){

	//window.document.getElementById(tableft).className="leftOn";
	//window.document.getElementById(tabCenter).className="middleOn";
	//window.document.getElementById(tabright).className="rightOn";
}

function rollOverOff(tableft, tabCenter, tabright){

	//window.document.getElementById(tableft).className="leftOff";
	//window.document.getElementById(tabCenter).className="middleOff";
	//window.document.getElementById(tabright).className="rightOff";
}

function toggleSectionOnOff(elementID, imageElementID) {
	var theElement = window.document.getElementById(elementID);
	var theImage = window.document.getElementById(imageElementID);

	if (theElement.style.display == "block") {
		theElement.style.display = "none";
		theImage.src = subArrowDown.src;
	}
	else if (theElement.style.display == "none") {
		theElement.style.display = "block";
		theImage.src = subArrowUp.src;
	}
	else{
		theElement.style.display = "none";
		theImage.src = subArrowDown.src;
	}
		
}