//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("homeid", "Home", "Kingussie Golf Club Home Page", "http://www.kingussie-golf.co.uk", "_top");
	menu.addItem("visitorsid", "Visitors", "Visitors Welcome",  null,  null);
	menu.addItem("membersid", "Members", "Members Information",  null,  null);
	menu.addItem("courseid", "Course", "Course Information",  null,  null);
	menu.addItem("openid", "Opens", "Details of Opens",  null,  null);
	menu.addItem("linksid", "Links", "Links", null,  null);
	menu.addItem("contactid", "Contact Us", "Contact Us",  "contact.htm", "_top");
	
	menu.addSubItem("visitorsid", "Facilities", "Facilities",  "facilities.htm", "_top");
    menu.addSubItem("visitorsid", "Gallery", "Kingussie Gallery",  "Gallery",  "_menu");
	menu.addSubItem("visitorsid", "Green Fees", "Green Fees",  "membership.htm#greenfees",  "_top");
	menu.addSubItem("visitorsid", "How to Find Us", "How to Find Us",  "howtofindus.htm", "_top");
    menu.addSubItem("visitorsid", "The Course", "The Course",  "course.htm", "_top");
    menu.addSubItem("visitorsid", "Where to Stay", "Where to Stay around Kingussie GC",  "wheretostay.htm", "_top");
    menu.addSubItem("visitorsid", "Hotels near course", "Hotels near Golf Courses",  "http://www.hotelsneargolfcourses.co.uk/course.php?course=309", "_menu");
    menu.addSubItem("visitorsid", "Welcome to the Cairngorms", "Welcome to the Cairngorms",  "http://www.welcometoscotland.com/regions/aviemore-cairngorms", "_menu");
	menu.addSubItem("visitorsid", "Welcome to Scotland", "Welcome to Scotland",  "http://www.welcometoscotland.com", "_menu");
	
	
	menu.addSubItem("membersid", "Membership Application", "Membership Application",  "membership.htm", "_top");
    menu.addSubItem("membersid", "Results - Gents", "Gents Results",  "http://www.howdidido.co.uk/kingussie-golf-club", "_memu");
	menu.addSubItem("membersid", "Results - Ladies", "Ladies Results",  "http://www.howdidido.co.uk/kingussie-gc", "_memu");
	menu.addSubItem("membersid", "History", "A Look Back over the Years",  "history.htm",  "_top");
	menu.addSubItem("membersid", "1911 KGC Bazaar", "Kingussie Golf Club Bazaar 1911",  "Kingussie Golf Club Bazaar 1911.pdf",  "_menu");
	
    
    menu.addSubItem("courseid", "Course Summary", "Course Summary and Layout",  "course.htm", "_top");
	menu.addSubItem("courseid", "Hole by Hole", "Hole by Hole",  "tour.htm", "_top");
	menu.addSubItem("courseid", "Course Gallery", "Photo Gallery of the Course",  "album/index.php", "_menu");
	menu.addSubItem("courseid", "Kingussie Gallery", "Kingussie Gallery",  "Gallery",  "_menu");
	menu.addSubItem("courseid", "Walter Hagen - 1933", "Walter Hagen visits Course in 1933",  "images/walter_hagen.jpg",  "_menu");
	menu.addSubItem("courseid", "History", "A Look Back over the Years",  "history.htm",  "_top");
	menu.addSubItem("courseid", "1911 KGC Bazaar", "Kingussie Golf Club Bazaar 1911",  "Kingussie Golf Club Bazaar 1911.pdf",  "_menu");
	
	menu.addSubItem("openid", "2010 Open Competitions", "Kingussie GC 2010 Open Competitions",  "opens.htm", "_top");
    menu.addSubItem("openid", "2010 Open Entry Form (Word)", "2010 Open Entry Form (Word)",  "Kingussie Golf Club - 2010 Open Dates Prices.doc", "_menu");
    menu.addSubItem("openid", "2010 Open Entry Form (PDF)", "2010 Open Entry Form (PDF)",  "Kingussie Golf Club - 2010 Open Dates Prices.pdf", "_menu");
	menu.addSubItem("openid", "Results", "Results of Open Competitions",  "http://www.howdidido.co.uk/kingussie-golf-club", "_memu");
    
	menu.addSubItem("linksid", "Golf Pass", "Cairngorm Golf Pass",  "dev.htm", "_top");
	menu.addSubItem("linksid", "Caravan Site", "Caravan site next to Golf Course",  "caravansite.htm", "_top");
	menu.addSubItem("linksid", "Local Golf", "Information on local golf",  "golf.htm", "_top");
	menu.addSubItem("linksid", "Local Links & Weather", "Other Local Links and weather",  "links.htm", "_top");
    menu.addSubItem("linksid", "Welcome to the Cairngorms", "Welcome to the Cairngorms",  "http://www.welcometoscotland.com/regions/aviemore-cairngorms", "_menu");
	menu.addSubItem("linksid", "Welcome to Scotland", "Welcome to Scotland",  "http://www.welcometoscotland.com", "_menu");
	 
	


	menu.showMenu();
}