

function showhide(id)
	{
	if (document.getElementById) { // DOM3 = IE5, NS6
		if (id != 'story') {
			document.getElementById( 'story' ).style.display = 'none';
			document.getElementById( 'contentimage' ).style.display = 'none';
		} else {
			document.getElementById( 'contentimage' ).style.display = 'block';	
		}
		if (id != 'company') {
			document.getElementById( 'company' ).style.display = 'none';
		}
		if (id != 'schedule') {
			document.getElementById( 'schedule' ).style.display = 'none';
		}
		if (id != 'gallery') {
			document.getElementById( 'gallery' ).style.display = 'none';
		}
		if (id != 'audio') {
			document.getElementById( 'audio' ).style.display = 'none';
		}
		if (id != 'video') {
			document.getElementById( 'video' ).style.display = 'none';
		}
		if (id != 'press') {
			document.getElementById( 'press' ).style.display = 'none';
		}
		if (id != 'touring') {
			document.getElementById( 'touring' ).style.display = 'none';
		}
		document.getElementById(id).style.display = 'block';
	}
	else {
		if (document.layers) { // Netscape 4
			if (id != 'story') {
				document.story.display = 'none';
				document.contentimage.display = 'none';
			} else {
				document.contentimage.display = 'block';	
			}
			if (id != 'company') {
				document.company.display = 'none';
			}
			if (id != 'schedule') {
				document.schedule.display = 'none';
			}
			if (id != 'gallery') {
				document.gallery.display = 'none';
			}
			if (id != 'audio') {
				document.audio.display = 'none';
			}
			if (id != 'video') {
				document.video.display = 'none';
			}
			if (id != 'press') {
				document.press.display = 'none';
			}
			if (id != 'touring') {
				document.touring.display = 'none';
			}
			document.id.display = 'block';
		}
		else { // IE 4
			if (id != 'story') {
				document.all.story.style.display = 'none';
				document.contentimage.style.display = 'none';
			} else {
				document.contentimage.style.display = 'block';	
			}
			if (id != 'company') {
				document.all.company.style.display = 'none';
			}
			if (id != 'schedule') {
				document.all.schedule.style.display = 'none';
			}
			if (id != 'gallery') {
				document.all.gallery.style.display = 'none';
			}
			if (id != 'audio') {
				document.all.audio.style.display = 'none';
			}
			if (id != 'video') {
				document.all.video.style.display = 'none';
			}
			if (id != 'press') {
				document.all.press.style.display = 'none';
			}
			if (id != 'touring') {
				document.all.touring.style.display = 'none';
			}
			document.all.id.style.display = 'block';
		}
	}
}
