// JavaScript Document
function expandLeftnav(ulId) {
	document.getElementById(ulId).setAttribute("class", "expand");
	document.getElementById(ulId).setAttribute("className", "expand"); 
	document.getElementById(ulId).className='expand';
}

function switchLeftnavOn(navID) { // used to switch leftnav tabs on
	el = document.getElementById(navID);
	el.style.color = '#000';
	el.style.fontWeight = 'bold';
}

function switchRightnavOn(navID) { // used to switch rightnav tabs on
	el = document.getElementById(navID);
	el.style.color = '#993333';
	el.style.backgroundColor = '#FFFAEF';
}


