// JavaScript Document

function switchMenu(obj) {
	var theDiv = document.getElementById(obj);
	if ( theDiv.style.display != 'block' ) {
		theDiv.style.display = 'block';
	}
	else {
		theDiv.style.display = 'none';
	}
}
