﻿//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("home", "ראשי", "ראשי",  "http://produsity.co.il/", "_self", null);
	menu.addItem("about", "אודות", "אודות",  "http://produsity.co.il/about.aspx", "_self", null);
	menu.addItem("items", "מוצרים", "תוכנות מדף",null,null, null);
	menu.addItem("customers", "תיק לקוחות", "לקוחות",  "http://produsity.co.il/Customer.aspx", "_self", null);
	menu.addItem("contact", "צור קשר", "צור קשר","http://produsity.co.il/Contact.aspx", "_self", null);
	menu.addItem("career", "דרושים", "דרושים","http://produsity.co.il/career.aspx",  "_self", null);

	menu.addSubItem("items", "פרופיט  - ניהול עסק והנהלת חשבונות", "פרופיט",  "http://produsity.co.il/Profit.aspx", "_self", "clsMenuItemIE2","First");
	menu.addSubItem("items", "פרוסקול - ניהול משאבים לבתי-ספר", "פרוסקול",  "http://produsity.co.il/ProSchool.aspx", "_self", "clsMenuItemIE2",null);
	menu.addSubItem("items", "פרוסייל - ניהול מערך שיווק רב שכבתי", "",  "http://produsity.co.il/ProSale.aspx", "_self", "clsMenuItemIE2",null);
	menu.addSubItem("items", "פרוהום  - ניהול בתים משותפים", "",  "http://produsity.co.il/ProHome.aspx", "_self", "clsMenuItemIE2","Last");
	
	menu.showMenu();
}