function wrapper(elementino) {
	if (document.getElementById) return eval('document.getElementById("' + elementino +'").style');
	else if (document.all) return eval('document.all["' + elementino + '"].style');
	else if (document.layers) return eval('document.layers["' + elementino + '"]');
	else return eval('document.' + elementino + '.style');
};

function hideall() {
	wrapper('news').display = "none";
	wrapper('mp3s').display = "none";
	wrapper('pics').display = "none";
	wrapper('forum').display = "none";
	wrapper('contact').display = "none";
	wrapper('shows').display = "none";
};

function showdiv(divname) {
	tempdrop = wrapper(divname);
	if (tempdrop.display == "block"){
		tempdrop.display = "none";
	} else {
		hideall();
		tempdrop.display = "block";
	};
};