mymenu = new POTMenu
// Defines the size of the main menu items, width and height
mymenu.mainmenuitemsize(136,16)
// Defines the size of the sub menu items, width and height
mymenu.submenuitemsize(140,16)
// Defines the position of the sub menus in relation to the parent
mymenu.submenuplacing(10,0)
// Main menu cell color
mymenu.mainmenucolor("#F7F7F4")
// Sub menu cell color
mymenu.submenucolor("#F7F7F4")
// Centers text for Netscape 4.7
mymenu.netscapeadjust(3,3)

// These lines are for the sub menu borders
mymenu.subborderimages("../img/greypixel.gif","../img/greypixel.gif","../img/greypixel.gif","../img/greypixel.gif")
// The image that is show between the main menu items
mymenu.definemainspacer("../img/greypixel.gif",1)
// The image that is show between the sub menu items
mymenu.definesubspacer("../img/greypixel.gif",1)
// This line is required here
mymenu.startMenu()
// Define the main menu.
mymenu.addMenu("home","O Home Page", "../emain/home.asp")
mymenu.addMenu("market","O Market Regulation", "../marketsys/marketsys.asp")
mymenu.addMenu("com","O companies", "#")
mymenu.addMenu("product","O Products", "#")
mymenu.addMenu("Recipes","O Recipes", "../cook/cookes.asp")
//mymenu.addMenu("links","O site map", "../map/map.asp")
mymenu.addMenu("gallary","O Gallary", "../gallary/gallary.asp")
mymenu.addMenu("contact","O Contact Us", "../contact/contact.asp")
mymenu.addMenu("arabic","O Arabic site", "../../main/home.asp")
// This line is required after the main menu is defined.
mymenu.showMainMenu()
// Define the sub menus
mymenu.addSubMenu("com", "", "O Mediators", "../com/company3.asp")
mymenu.addSubMenu("com", "", "O Fermented", "../com/company2.asp")
mymenu.addSubMenu("com", "", "O External Shops", "../com/company1.asp")
//mymenu.addSubMenu("main", "", "O Our services", "#")
//mymenu.addSubMenu("main", "", "O Employe", "#")

mymenu.addSubMenu("product", "faq", "O Local Products", "../fruit/crop.asp")
mymenu.addSubMenu("product", "tutorials", "O Import Products", "../fruit/imp_crop.asp")

//mymenu.addSubMenu("faq", "", "O Product1", "#")
//mymenu.addSubMenu("faq", "", "O Product2", "#")
//mymenu.addSubMenu("faq", "", "O Product3", "#")
//mymenu.addSubMenu("faq", "", "O Product4", "#")
//mymenu.addSubMenu("faq", "", "O Ather product", "#")


//mymenu.addSubMenu("tutorials", "", "O Product1", "#")
//mymenu.addSubMenu("tutorials", "", "O Product2", "#")
//mymenu.addSubMenu("tutorials", "", "O Ather product", "#")


// This line is required after all menu definitions are finished
mymenu.showMenu()
