// JavaScript Document

<!--
menu_status = new Array();

function showHide(theID) {
	if (document.getElementById) {
		var switch_id = document.getElementById(theID);
			if(menu_status[theID] != 'show') {
				switch_id.className = 'show';
				menu_status[theID] = 'show';
			} else {
				switch_id.className = 'hide';
				menu_status[theID]= 'hide';
			}
	}
}
//-->