//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("M1", "HOME", "HOME",  "http://www.circlehexotics.com/", "",null, null);
	menu.addItem("M2", "E-Shop", "Circle H E-Shop",  "", "",null, null);
	menu.addItem("M3", "About Us", "About Us",  "about.html", "",null, null);
	menu.addItem("M4", "Bengal Cat", "Bengal Cat",  "bengalcat.html", "",null, null);
	menu.addItem("M5", "Feed back", "Feed back",  "feedback.htm", "",null, null);
	menu.addItem("M6", "Photos", "Photos",  null, null);
	menu.addItem("M7", "Contact Us", "Contact Us",  null, null);
        menu.addItem("M8", "Kittens", "For Sale",  null, null);
       
        
	menu.addSubItem("M1", "Home", "Home",  "http://www.coveringtulsa.com/", "_self");

	menu.addSubItem("M2", "Home", "Home",  "http://www.coveringtulsa.com/", "_self");

	menu.addSubItem("M3", "About US", "",  "http://www.coveringtulsa.com/web service/", "");

	menu.addSubItem("M4", "Members Login", "Members Page",  "http://photos.coveringtulsa.com/login.php", "");
	menu.addSubItem("M4", "New Members", "New Members",  "http://www.coveringtulsa.com/members/membersform.html", "_blank");
	menu.addSubItem("M4", "Members Directory", "Members Directory",  "http://www.coveringtulsa.com/tulsa_local_members.htm", "");
	
	menu.addSubItem("M5", "Local Weather", "Local Weather",  "http://www.coveringtulsa.com/local%20weather.htm", "");
	
	menu.addSubItem("M6", "This week Photos", "this week photos",  "apr2008/gallery/index.html", "");
	menu.addSubItem("M6", "Photos", "Photos",  "http://www.circlehexotics.com/photos.html", "");
	menu.addSubItem("M6", "Cat Gallery", "cat gallery",  "http://photos.circlehexotics.com/", "");
	
	menu.addSubItem("M7", "Send email", "email us",  "mailto:chip2423@yahoo.com", "");
	menu.addSubItem("M7", "Feed back", "feed back",  "http://www.circlehexotics.com/feedback.htm", "");
	menu.addSubItem("M7", "Call Us", "Are Phone number",  "http://www.circlehexotics.com/contact.html", "");
	menu.addSubItem("M7", "Guest Book", "Guestbook",  "http://www.circlehexotics.com/guestbook", "");
       
	menu.addSubItem("M8", "Apr 2008", "Apr 2008",  "http://www.circlehexotics.com/apr2008/gallery/index.html", "");
	menu.addSubItem("M8", "Cat Photos", "Cat Photos",  "http://photos.circlehexotics.com/", "");
	menu.addSubItem("M8", "More photos", "Miscellaneous for Sale",  "http://www.circlehexotics.com/cats/", "");
	menu.addSubItem("M8", "", "Miscellaneous Wanted",  "http://", "");

	




	menu.showMenu();
}