function loadMenu()
{
	var e = document.getElementById("menu");
	
	e.innerHTML = "<div class='menu_contents'>" +
				"<img src='img/logo_with_number.jpg' class='logo' alt='Circle Pizza' onclick=\"window.location='index.html'\" />" +
				"<p style='color: white; font-size: 12px;'>21st & Dune Drive, Avalon, NJ<br /><span><a href='index.html'>www.avalonpizza.com</a></span></p>" +
				"<ul>" +
					"<li onclick=\"window.open('pdf/circle_pizza_menu.pdf');\">Menu</li>" +
					"<li onclick=\"window.location = 'specials.html';\">Specials</li>" +
					"<li onclick=\"window.location = 'history.html';\">History</li>" +
					"<li onclick=\"window.location = 'restaurants.html';\">Our Restaurants</li>" +
					"<li onclick=\"window.location = 'contact.html';\">Contact Us</li>" +
				"</ul>" +
				"<p class='open'>Open All Year for  <br />Lunch & Dinner<br />Late Night<br />in the Summer<p>" +
				"<p class='hours'>Mon - Thurs:<br />11:00 am - 9:00 pm<br />Fri - Sat:<br />11:00 am - 10:00 pm<br />Sun:<br />11:00 am - 9:00 pm</p>" +
				"<p class='deliver'>We deliver!</p>" +
				"<img src='img/facebook.png' class='facebook' alt='Find us on Facebook!' />" +
				"<p class='facebook_text' >Find us on Facebook<br /><a href='http://www.facebook.com/circlepizza' target='_blank'>facebook.com/circlepizza</a></p>" +
			"</div>";
}

function loadHistory()
{
	var e = document.getElementById("history");
	
	e.innerHTML = "<b>Since 1968</b><br />Celebrating over 40 years of pizza<br />on the Seven Mile Island!"

}

function loadFooter()
{
	var e = document.getElementById("footer");
	
	e.innerHTML = "21st & Dune Drive, Avalon, NJ 08202<img src='img/separator.png' alt='separator'>(609) 967-7566<img src='img/separator.png' alt='separator'><a href='index.html'>www.AvalonPizza.com</a><br /><span class='fine_print'>We accept Visa, Mastercard, AmEx & Gift Cards.</span>";

}