function Visibility(e)
{	var e = (e) ? e : ((window.event) ? window.event : null);
	if (e == null) {return;}
	var button = (e.button) ? e.button : e.which;
	if (button==2) { return false; }
}
document.onmousedown = Visibility;
document.oncontextmenu = function() { return false; }

mText = "";
mText = '<div id="navmenu" align="center">';
mText += ' <ul>';
mText += '  <li><a href="theatre/index.html">Theatre</a></li>';
mText += '  <li><a href="dance/index.html">Dance</a></li>';
mText += '  <li><a href="music/index.html">Music</a></li>';
mText += '  <li><a href="scenic/index.html">Scenic</a></li>';
mText += '  <li><a href="fashion/index.html">Fashion</a></li>';
mText += '  <li><a href="people/index.html">People</a></li>';
mText += '  <li><a href="sports/index.html">Sports</a></li>';
mText += '  <li><a href="art/index.html">Art</a></li>';
mText += '  <li><a href="contact/index.html">Contact</a></li>';
mText += ' </ul>';
mText += '</div>';
document.write(mText);
