﻿// JavaScript Document
// This is the JavaScript that is loaded when the page is loaded
// If first turns off all the sub-menus
var s=setTimeout("",0);


// This is the function that will hide or make visable the selected menu
function loadmenu(id) {

window.clearTimeout(s)
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {
			document.getElementById('smenu'+i).style.display='none';
			document.getElementById('menu'+i).style.backgroundColor='transparent';
		}
		
	}
if (d) {
	d.style.display='block';
	var where=id.substr(1,7);
	document.getElementById(where).style.backgroundColor='#33789b';
	}
}

function loadmenu_nosub(id) {

window.clearTimeout(s)
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {
			document.getElementById('smenu'+i).style.display='none';
			document.getElementById('menu'+i).style.backgroundColor='transparent';
		}
		
	}
if (d) {
	d.style.display='inline';
	document.getElementById(id).style.backgroundColor='#33789b';
	}
}


function loadmenu2(id) {

	var where=id.substr(1,7);
	document.getElementById(where).style.backgroundColor='transparent';
	var d = document.getElementById(id);

	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {
			document.getElementById('smenu'+i).style.display='none';

		}
	}
}


function loadmenu2_nosub(id) {
	
	document.getElementById(id).style.backgroundColor='transparent';




}

