// MainMenu
//determine menu styles
var el = document.getElementById("hidPage");
var sPage = "";
if (el != null) 
	sPage = el.value;

var bannerstr = ''
	+ '<img src="images/churchheader275_wide.jpg" width="1000" height="130" border="0" alt="Banner" usemap="#bannermap" />'
	+ '<map name="bannermap">'
	+ ' <area shape="rect" coords="0,0,133,129"		alt="Home"       href="index.html" />'
    + ' <area shape="rect" coords="275,60,430,115" 	alt="Office"     href="churchoffice.html" />'
    + ' <area shape="rect" coords="545,60,790,115" 	alt="Worship"    href="worship.html" />'
    + ' <area shape="rect" coords="896,0,999,129" 	alt="275th News" href="275news.html" />'
	+ '</map>';

document.write(bannerstr);

