window.onload=startup;
var a="community";
var b="admin";
var c="members";
var d="ops";
var e="board";


function startup() {
	newMenu();
	randomAd();
	}
	
	
function newMenu() {
	document.getElementById("menu").innerHTML=
		"<ul class='mainMenu'>"+
			"<a href='index.php'><li><img src='images/logo.gif'><br>Home</li></a>"+
			"<a href='mission.html'><li>Mission</li></a>"+
			"<a href='chiefsMessage.html'><li>Message from the Chief</li></a>"+
			"<a href='publicEducation.html'><li>Public Education</li></a>"+
			"<a href='cert.html'><li>CERT</li></a>"+
			"<a href='neighborhoodParamedic.html'><li>Neighborhood Paramedic</li></a>"+
			"<a href='childSeat.html'><li>Child Safety Seats</li></a>"+
			"<li onmouseover='drop(e)' onmouseout='end(e)'>Board of Directors"+
							"<ul id='board'>"+
								"<a href='board.html'><li>Current Board</li></a>"+
								"<a href='formerBoard.html'><li>Former Board Members</li></a>"+
							"</ul>"+
			"</li>"+
			"<li onmouseover='drop(b)' onmouseout='end(b)'>Administration"+
				"<ul id='admin' >"+
					"<a href='fireChiefs.html'><li>Retired Fire Chiefs</li></a>"+
					"<a href='staff.html'><li>Staff</li></a>"+
					"<a href='fireMarshal.html'><li>Fire Marshal</li></a>"+
					"<a href='trainingOfficer.html'><li>Training Officer</li></a>"+
					"<a href='pier.html'><li>P.I.E.R Officer</li></a>"+
					"<a href='chaplains.html'><li>Chaplains</li></a>"+
				"</ul>"+
			"</li>"+
			"<li onmouseover='drop(d)' onmouseout='end(d)'>Operations"+
				"<ul id='ops'>"+
					"<a href='aShift.html'><li>A Shift</li></a>"+
					"<a href='bShift.html'><li>B Shift</li></a>"+
					"<a href='cShift.html'><li>C Shift</li></a>"+
					"<a href='reserves.html'><li>Reserve</li></a>"+
					"<a href='trucks.html'><li>Apparatus</li></a>"+
				"</ul>"+
			"</li>"+
			"<a href='houses.html'><li>Fire Houses</li></a>"+
			"<a href='permits.html'><li>Permits and Inspections</li></a>"+
			"<a href='photoGallery.html'><li>Photos</li></a>"+
			"<a href='history.html'><li>History</li></a>"+
			"<li onmouseover='drop(c)' onmouseout='end(c)'>Members"+
				"<ul id='members'>"+
					"<a href='shiftCalendar.html'><li>Shift Calendar</li></a>"+
					"<a href='fireTraining.html'><li>Fire Training</li></a>"+
					"<a href='emsSchedule.html'><li>EMS Training</li></a>"+
					"<a href='http://mail.rockfire-rescue.org/exchange/'><li>Email</li></a>"+
				"</ul>"+
			"</li>"+
			"<a href='memorial.html'><li>Memorial</li></a>"+
			"<a href='contacts.html'><li>Contact Us</li></a>"+
			"<a href='links.html'><li>Links</li></a>"+
		"</ul>";
		}




