// JavaScript Document
<!--

function display(theid){
    if (document.getElementById) {
	var active = document.getElementById(theid);
    var desc = document.getElementById('description');   
	var minfo = document.getElementById('moreInfo');

		desc.className = 'hide';
		minfo.className = 'hide';
		active.className = 'show';
        }
}


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';
        }
    }
}



menu_status2 = new Array();

function classShowHide(theName){
    if (document.getElementsByName) {
    var switch_id2 = document.getElementsByName(theName);
        if(menu_status2[theName] != 'show') {
			alert('show');
						alert(menu_status2[theName]);

           switch_id2.className = 'show';
           menu_status2[theName] = 'show';
        }else{
			alert('hide');
           switch_id2.className = 'show';
           menu_status2[theName] = 'show';
        }
    }
}
//-->