// JavaScript Document

menu_status = new Array();

function showHide(theid, thea){
    if (document.getElementById) {
		var switch_id = document.getElementById(theid);
		if(thea.className!='selected'){
			if(menu_status[theid] != 'show') {
				switch_id.className = 'show';
				menu_status[theid] = 'show';
				var list = document.getElementById('list');
				list.className = 'this';
			}
		}
	}
}
