function switchMenu(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != "none" ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}
}


// // Usage Example:
//<p><a onclick="switchMenu('myvar');" title="Switch the Menu">Switch it now</a></p>
//
//	<div id="myvar">
//	<p>This is paragraph text that is all up in this place that does some pretty cool stuff</p>
//	<p>This is paragraph text that is all up in this place that does some pretty cool stuff</p>
//	<p>This is paragraph text that is all up in this place that does some pretty cool stuff</p>
//	<p>This is paragraph text that is all up in this place that does some pretty cool stuff</p>
//	</div>

