//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("webmasterid", "Home", "Home",  null, null);
	menu.addItem("newsid", "Our Inventory", "Our Collection",  null, null);
	menu.addItem("vrid", "Virtual Reality Gallery", "Virtual Reality Gallery",  null, null);
	menu.addItem("freedownloadid", "Events", "Events",  null, null);
	menu.addItem("searchengineid", "Collecting", "Collecting",  null, null);
	menu.addItem("miscid", "Contact & Links", "Contact & Links",  null, null);

	menu.addSubItem("webmasterid", "About Us", "About Us",  "http://www.britishwatercolors.com/about.html", "");
	menu.addSubItem("webmasterid", "Our Biographies", "Our Biographies",  "", "");

	menu.addSubItem("newsid", "SEARCH INVENTORY", "SEARCH INVENTORY",  "http://www.britishwatercolors.com/searchengine.html", "");
	menu.addSubItem("newsid", "SEARCH DATABASE", "SEARCH INVENTORY",  "http://britishwatercolors.com/csv_importer/index.php?cmd=list", "");
	menu.addSubItem("newsid", "", "",  "", "");

	menu.addSubItem("newsid", "CURRENT EXHIBITION", "CURRENT EXHIBITION",  "http://www.britishwatercolors.com/catalog.php?name=zulawski", "");
	menu.addSubItem("newsid", "Marek Zulawski: Modernist works from the 1940s and 1950s", "Zulawski",  "http://www.britishwatercolors.com/catalog.php?name=zulawski", "");
	menu.addSubItem("newsid", "", "",  "", "");
	menu.addSubItem("newsid", "INVENTORY CATEGORIES", "INVENTORY CATEGORIES",  "http://www.britishwatercolors.com/historical/new-acquitions.html", "");


<?php
$host = "localhost";
$user = "britishw_british";
$db = "britishw_website";
$pwd = "cotman";
$base_url="http://www.britishwatercolors.com";
?>



<?php
  $conn = mysql_connect($host,$user,$pwd);
  if(!$conn) echo "connection failed<br>";

  $select = mysql_select_db("$db",$conn) or die ("database not found");

 $sql = "SELECT DISTINCT User_2 FROM erasegallerypro where User_2 <> '' order by User_2 ASC"; 
  $result = mysql_query($sql,$conn);
  mysql_close($conn);

if($result):
  ?>

<?php

while ($myrow = mysql_fetch_row($result)) { 


echo "menu.addSubItem(\"newsid\", \"$myrow[0]\", \"$myrow[0]\",  \"\", \"\");";
} ?>

<?php endif; ?>




	menu.addSubItem("freedownloadid", "Calendar of Events", "Marek Zulawski",  "http://www.britishwatercolors.com/calendar.html", "");
	menu.addSubItem("freedownloadid", "Marek Zulawski: Modernist works from the 1940s and 1950's is an intriguing view of the international Modernist style through the interpretations of this remarkable artist. Thos. Deans & Co. mounted a highly successful exhibition of Zulawski's work in 2001.", "Marek Zulawski",  "http://www.britishwatercolors.com/historical/zulawski/index.html", "");
	menu.addSubItem("freedownloadid", "", "",  "", "");
	menu.addSubItem("freedownloadid", "Opens March 7 and continue through March 30. A reception will be held at the Thos. Deans & Co. gallery on (DATE) from 6:00pm until 9:00pm. The exhibition may be seen Tuesday through Saturday from 11:00 am to 5:00  pm. Preview on the web: www.britishwatercolors.com.", "",  "http://www.britishwatercolors.com/historical/zulawski/index.html", "");

	menu.addSubItem("vrid", "Visit the 3D Gallery", "Visit the 3D Gallery",  "http://www.britishwatercolors.com/virtualgallery/Goossens/greyroom.html", "");
	
	menu.addSubItem("searchengineid", "An Introduction", "An Introduction",  "http://www.britishwatercolors.com/collecting1.html", "");
	menu.addSubItem("searchengineid", "The Medium", "The Medium",  "http://www.britishwatercolors.com/collecting2.html", "");
	menu.addSubItem("searchengineid", "A Brief History", "A Brief History",  "http://www.britishwatercolors.com/collecting3.html", "");
	menu.addSubItem("searchengineid", "Some Names to Known", "Some Names to Know",  "http://www.britishwatercolors.com/collecting4.html", "");
	menu.addSubItem("searchengineid", "Collecting vs. Buying", "Collecting vs. Buying",  "http://www.britishwatercolors.com/collecting5.html", "");
	menu.addSubItem("searchengineid", "Starting a Collection", "Starting a Collection",  "http://www.britishwatercolors.com/collecting6.html", "");

	menu.addSubItem("miscid", "Huntington Library, Art Collection, and Botanical Gardens", "Huntington Library, Art Collection, and Botanical Gardens",  "http://www.huntington.org/", "");
	menu.addSubItem("miscid", "Art Guide: The Art Lover's Guide to Britain and Ireland", "Art Guide: The Art Lover's Guide to Britain and Ireland",  "http://www.cogapp.com/uk/", "");
	menu.addSubItem("miscid", "The Yale Center for British Art", "The Yale Center for British Art",  "http://www.yale.edu", "");
	menu.addSubItem("miscid", "Fitzwilliam Museum, Cambridge University", "Fitzwilliam Museum, Cambridge University",  "http://www.cam.ac.uk", "");
	menu.addSubItem("miscid", "Ashmolean Museum, Oxford University", "Ashmolean Museum, Oxford University",  "http://www.ashmol.ox.ac.uk", "");

	menu.showMenu();
}
