var menuItems = new Array("Pancakes",  
				"FrenchToast",
				"Waffles",
				"Omelets",
				"CountryFreshEggs",
				"SpecialtyEnsembles",
				"Combos",
				"PancakeWraps",
				"BreakfastSandwiches",
				"Appetizers",
				"BasketStuffers",
				"DinerClassics",
				"Panini",
				"Wrappers",
				"ChickenGrillers",
				"BrownstoneBurgers",
				"GardenSalads",
				"TripleStackers",
				"SizzlingFajitas",
				"SteaksRoastsChops",
				"ChickenVeal",
				"Aquatic",
				"Pasta",
				"StirFry",
				"OntheSidelines",
				"Quenchers",
				"SweetEndings", 
				"ExpressoCafe"); 
				
		 $(document).ready(function(){
   			showInitialDiv();
						
		   $("#menu-links").find("li").each(function(i) {
			 $(this).find("a").click(function() {
				showDiv(i);
				return false;
				});
		   });

 		});		
		
		function showInitialDiv() {
			hideAll();
			document.getElementById(menuItems[0]).style.display = 'block';
		}
		
		function hideAll() {
			for (var i=0; i<menuItems.length; i++) {	
			document.getElementById(menuItems[i]).style.display = 'none';
			}
		}
		
		function showDiv(id) {
			hideAll();
			document.getElementById(menuItems[id]).style.display = 'block';
		}
		
		