function header_banner()
{
	document.write("<a href=\"index.html\" title=\"Mary's River Lodge #221 AF&AM\" =\"images/banner_background1.png\" id=\"header\">Mary's River Lodge #221 AF & AM</a>");
	document.write("<div id=\"gutter\"></div>");
}

function menu_bar()
{
	document.write("<div id=\"mainpage_col1\">");
	document.write("<h2>Directory</h2>");
	doucment.write("<p><a href=\"about.html\">About</a><br /><br /><a href=\"calendar2.html\">Calendar</a><br /><br />");
	document.write("<a href=\"gallery.html\">Gallery</a><br /><br /><a href=\"scholarship.html\">Scholarship</a><br /><br />");
	document.write("<a href=\"newsletter.html\">Newsletters</a><br /><br /><a href=\"contact.html\">Contact Us</a></p>");
	document.write("</div>");
}

function showhide(boxid){
   if(document.getElementById(boxid).style.visibility=="visible")
   {
	document.getElementById(boxid).style.visibility="hidden";
   }
   else
   {
	document.getElementById(boxid).style.visibility="visible";
   }
}

