function navigation()
  {
	var menuText =' ';
	menuText = menuText + '<a href="index.html" class="menu">Home</a><br>';
	menuText = menuText + '<a href="store/index.php" class="menu">Online Store</a><br>';
	menuText = menuText + '<a href="store/Owens_Dog_Box" class="menu">Owens Dog Boxes</a><br>';
	menuText = menuText + '<a href="store/owens_truck_tool_box" class="menu">Owens Truck Tool Boxes</a><br>';

	menuText = menuText + '<a href="store/DT_Systems" class="menu">DT Systems Dog Collars</a><br>';
	menuText = menuText + '<a href="store/mud_river_dog_products" class="menu">Mud River Dog Products</a><br>';
	menuText = menuText + '<a href="dogs_for_sale.html" class="menu">Dogs For Sale</a><br>';

	menuText = menuText + '<a href="dog_biographies.html" class="menu">Dog Biographies</a><br>';
	menuText = menuText + '<a href="client_services.html" class="menu">Client Services</a><br>';

	
	menuText = menuText + '<a href="puppy_page.html" class="menu">Puppy Page</a><br>';
	menuText = menuText + '<a href="upcoming_events.html" class="menu">Upcoming Events</a><br>';
	menuText = menuText + '<a href="game_bird_sales.html" class="menu">Game Bird Sales</a><br>';
	menuText = menuText + '<a href="subscribe.html" class="menu">Subscribe to Mailing List</a><br>';
	menuText = menuText + '<a href="sponsors.html" class="menu">Sponsors</a><br>';
	menuText = menuText + '<a href="pictures.html" class="menu">Picture Gallery</a><br>';
	menuText = menuText + '<a href="dog_house.html" class="menu">Dog House</a><br>';
	menuText = menuText + '<a href="search.html" class="menu">Search</a><br>';
	menuText = menuText + '<a href="links.html" class="menu">Links</a><br>';
	document.write(menuText);	
 }	
navigation();	

