	var oLastBtn=0;
	function ButtonOver()
	{
		window.event.cancelBubble=true;
		oBtn = window.event.srcElement;
		var bChosen = false;
//		if(oLastBtn && oLastBtn != oBtn){
//			HideButton();
//		}
		if(oBtn.buttonType){
			oBtn.className = oBtn.buttonType + "Up";
			oLastBtn=oBtn;
			}
		else {
		oLastBtn = 0;
		}
	}
	function ButtonUp()
	{
		window.event.cancelBubble=true;
		oBtn = window.event.srcElement;
		var bChosen = false;
//		if(oLastBtn && oLastBtn != oBtn){
//			HideButton();
//		}
		if(oBtn.buttonType){
			oBtn.className = oBtn.buttonType + "Up";
			oLastBtn=oBtn;
			}
		else {
		oLastBtn = 0;
		}
	}
	function ButtonOut()
	{
		window.event.cancelBubble=true;
		oBtn = window.event.srcElement;
		var bChosen = false;
//		if(oLastBtn && oLastBtn != oBtn){
//			HideButton();
//		}
		if(oBtn.buttonType){
			oBtn.className = oBtn.buttonType + "Off";
			oLastBtn=oBtn;
			}
		else {
		oLastBtn = 0;
		}
	}
	function ButtonDown()
	{
		window.event.cancelBubble=true;
		oBtn = window.event.srcElement;
		if(oBtn.buttonType){
			oBtn.className = oBtn.buttonType + "Down"; 
//			if (oBtn.className == "LeftNavChosenDown"){
//			oBtn.className = "LeftNavDown";
//			oBtn.innerHTML = bullet + oBtn.innerHTML ;
//			}
		}
	}

	function HideButton(){
		if ((oLastBtn.buttonType == "LeftNavChosen") || (oLastBtn.buttonType == "LeftNavSubChosen") || (oLastBtn.buttonType == "appNavChosen") || (oLastBtn.buttonType == "appNavSubChosen")) {
			oLastBtn.className = oLastBtn.buttonType;
		}
		else {
		oLastBtn.className = oLastBtn.buttonType + "Off";
		}
	}

	function ToggleDisplay(oButton, oItems)
	{
		if (oItems.style.display == "none")	{
			oItems.style.display = "";
			oButton.src = "minus.gif";
		}	else {
			oItems.style.display = "none";
			oButton.src = "plus.gif";
		}
		return false;
	}

	var strTDColor = '#003399';
	g_RolledTD = new Object;

	function textRoll(strTextColor)
  	{
		window.event.srcElement.style.color = strTextColor;
		window.event.cancelBubble = true;
	}
	function TDUnRoll()
	{    
		g_RolledTD.bgColor = strTDColor;	
	}
	function TDRoll(strTDColor)
	{
		window.event.srcElement.bgColor = strTDColor;
		g_RolledTD = window.event.srcElement;
		window.event.cancelBubble = true;
	}
	
	function bgRoll(strTextColor)
	{
		window.event.srcElement.style.backgroundColor = strTextColor;
		window.event.cancelBubble = true;
	}
	function fntRoll(strTextColor)
	{
		window.event.srcElement.style.color = 'orange';//strTextColor;
		window.event.cancelBubble = true;
	}	
						
//	document.onClick = TDUnRoll;
//	document.onmouseover = TDUnRoll;
	
//Script for collapsing and expanding menu
//Created by Microatlantic

	bullet = "&#149;&nbsp;"

	function navClick(a,b) 
	{
		if (a.style.display =='') {
			a.style.display = 'none';
		}
		else {
 			a.style.display='';
		}
	}
	

