function show(theid){    if (document.getElementById) {		var switch_id = document.getElementById(theid);		switch_id.className = 'show';	}}function hide(theid){    if (document.getElementById) {		var switch_id = document.getElementById(theid);		switch_id.className = 'hide';	}}