// JavaScript Document
// menu functions

var menus = ['soothsoft','news','reviews','howtoorder', 'info'];
function ShowMenu(field) {
	// hide others
	for (m in menus) {
		if (menus[m]!=field) document.getElementById(menus[m]).style.visibility = 'hidden';
	}
	if (field != 'none') {
		document.getElementById(field).style.visibility = 'visible';
	}
}

function HideMenu(field) {
	document.getElementById(field).style.visibility = 'hidden';
}
