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

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

	menu = new Menu();
	menu.addItem("homeid", "Home", null,  null, null);
	menu.addItem("servicesid", "Automation", null,  null, null);
	menu.addItem("securityid", "Security", null,  null, null);
	menu.addItem("showroomid", "Showroom", null,  null, null);
	menu.addItem("adviceid", "Advice", null,  null, null);
	menu.addItem("spneedsid", "Special Needs", null,  null, null);
	menu.addItem("professionalsid", "Professionals", null,  null, null);
	menu.addItem("allianceid", "Alliances", null,  null, null);
	menu.addItem("contactid", "Contact", null, "/toronto/control_displays");

	menu.addSubItem("homeid", "Home", null,  "/");
	menu.addSubItem("homeid", "What IS Home Automation?", null,  "/toronto/how_to_automation");
	menu.addSubItem("homeid", "About Magen Systems", null,  "/toronto/integration_consulting");
	menu.addSubItem("homeid", "Site Map", null,  "/sitemap");

	menu.addSubItem("servicesid", "Home Automation", null,  "/toronto/systems/home_automation");
	menu.addSubItem("servicesid", "Home Lighting", null,  "/toronto/systems/automated_lighting");
	menu.addSubItem("servicesid", "Home Theatre", null,  "/toronto/systems/home_theatre");
	menu.addSubItem("servicesid", "Home Networking", null,  "/toronto/systems/home_networking");
	menu.addSubItem("servicesid", "Whole House Audio", null,  "/toronto/systems/room_music_audio");
	menu.addSubItem("servicesid", "Motorized Drapes", null,  "/toronto/systems/motorized_drapes");
	menu.addSubItem("servicesid", "Climate Control", null,  "/toronto/systems/programmable_thermostats");
	menu.addSubItem("servicesid", "Phone Systems", null,  "/toronto/systems/telephone_pbx");
	menu.addSubItem("servicesid", "Voice Mail", null,  "/toronto/systems/voice_mail");
	menu.addSubItem("servicesid", "System Integration", null,  "/toronto/systems/smart_system_integration");
	menu.addSubItem("servicesid", "BoardRoom Services", null,  "http://www.bordrooms.com");

	menu.addSubItem("securityid", "Security Systems", null,  "/toronto/systems/alarms_security");
	menu.addSubItem("securityid", "Monitoring", null,  "/toronto/systems/alarms_security/24hr_monitoring");
	menu.addSubItem("securityid", "School Security", null,  "/toronto/systems/alarms_security/school_security");
	menu.addSubItem("securityid", "Camera Systems", null,  "/toronto/systems/camera_cctv_video");
	menu.addSubItem("securityid", "Digital Video Systems", null,  "/toronto/systems/camera_cctv_video/digital_video_recording/");
	menu.addSubItem("securityid", "Cash Register Monitoring", null,  "/toronto/systems/camera_cctv_video/pos_dvr");
	menu.addSubItem("securityid", "Intelligent Camera Systems", null,  "/toronto/systems/camera_cctv_video/smart_digital_recorder");
	menu.addSubItem("securityid", "Access Control", null,  "/toronto/systems/biometric_access_control");
	menu.addSubItem("securityid", "Article Anti-Theft EAS", null,  "/toronto/systems/theft_control");

	menu.addSubItem("showroomid", "Our Showroom", null,  "/toronto/smart_house_showroom");
	menu.addSubItem("showroomid", "Showroom Photo Gallery", null,  "/toronto/smart_house_showroom/touch_screens_displays");

	menu.addSubItem("adviceid", "Customer Tips", null,  "/toronto/tips");
	menu.addSubItem("adviceid", "Safety Advisories", null,  "/toronto/smart_home_articles");
	menu.addSubItem("adviceid", "Alarming Tales", null,  "/toronto/smart_home_articles/alarm_security_news");
	menu.addSubItem("adviceid", "Links", null,  "/links/");

	menu.addSubItem("spneedsid", "Disabled", null,  "/toronto/assisted_living/disabled_care");
	menu.addSubItem("spneedsid", "Seniors", null,  "/toronto/assisted_living/senior_care");

	menu.addSubItem("professionalsid", "Architects", null,  "/toronto/special_needs/architects");
	menu.addSubItem("professionalsid", "Interior Decorators", null,  "/toronto/special_needs/interior_decorators");
	menu.addSubItem("professionalsid", "Home Builders", null,  "/toronto/special_needs/home_building_design");

	menu.addSubItem("allianceid", "Architects", null,  "/toronto/professionals");
	menu.addSubItem("allianceid", "Interior Decorators", null,  "/toronto/professionals");
	menu.addSubItem("allianceid", "Home Builders", null,  "/toronto/professionals");
	menu.addSubItem("allianceid", "Links to Others", null,  "/links");
	menu.addSubItem("allianceid", "Electrical Contractors", null,  "/toronto/trade_partners");
	menu.addSubItem("allianceid", "Audio-Visual Specialists", null,  "/toronto/trade_partners");
	menu.addSubItem("allianceid", "HVAC Installers", null,  "/toronto/trade_partners");
	menu.addSubItem("allianceid", "Motorized Drapes", null,  "/toronto/trade_partners");
	menu.addSubItem("allianceid", "Security Services", null,  "/toronto/trade_partners");
	menu.addSubItem("allianceid", "Pool Installers", null,  "/toronto/trade_partners");
	menu.addSubItem("allianceid", "Landscapers", null,  "/toronto/trade_partners");



	menu.showMenu();
}