mymenu = new POTMenu
// Defines the size of the main menu items, width and height
mymenu.mainmenuitemsize(134,16)
// Defines the size of the sub menu items, width and height
mymenu.submenuitemsize(120,16)
// Defines the position of the sub menus in relation to the parent
mymenu.submenuplacing(240,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 الصفحة الرئيسية", "../main/home.asp")
mymenu.addMenu("main","O تعريف بالسوق", "#")
mymenu.addMenu("products","O الشركات العاملة بالسوق", "#")
mymenu.addMenu("crops","O اسعار المنتجات", "#")
mymenu.addMenu("values","O معلومات مختلفة", "#")
mymenu.addMenu("gallary","O صور السوق", "../gallary/gallary.asp")
//mymenu.addMenu("adver","O أعلن معنا", "../com/adver.asp")

mymenu.addMenu("contact","O إتصل بنا", "../contact/contact.asp")
mymenu.addMenu("services","O الموقع بالإنجليزية", "../english/emain/home.asp")
// This line is required after the main menu is defined.
mymenu.showMainMenu()
// Define the sub menus
mymenu.addSubMenu("main", "", "O كادر السوق", "../sub_home/team.asp")
mymenu.addSubMenu("main", "", "O معلومات عن السوق", "../aboutus/aboutus.asp")
mymenu.addSubMenu("main", "", "O مهام و واجبات السوق", "../aboutus/aboutus2.asp")
mymenu.addSubMenu("main", "", "O السوق حقائق و أرقام", "../aboutus/aboutus3.asp")


mymenu.addSubMenu("crops", "faq", "O منتجات محلية", "../fruit/cropss.asp")
mymenu.addSubMenu("crops", "tutorials", "O منتجات مستوردة", "../fruit/imp_crops.asp")


mymenu.addSubMenu("values", "xxx", "O طبق اليوم", "../cook/cookes.asp")
mymenu.addSubMenu("values", "yyy", "O فوائد الخضار و الفواكه", "../value/values.asp")
mymenu.addSubMenu("values","lol1","O مواقع مفيدة", "../link/links.asp")
mymenu.addSubMenu("values","lol","O أعلن معنا", "../com/adver.asp")
mymenu.addSubMenu("products", "", "O الوسطاء", "../com/company.asp?type_id=3")
mymenu.addSubMenu("products", "", "O مخامر الموز", "../com/company.asp?type_id=2")
mymenu.addSubMenu("products", "", "O المحلات الخارجية", "../com/company.asp?type_id=1")
mymenu.addSubMenu("products", "", "O بورصة الزهور", "../flowers/com.asp")
mymenu.addSubMenu("products", "", "O إعلانات الشركات", "../com/adver.asp")
//mymenu.addSubMenu("faq", "", "O فواكه", "#")
//mymenu.addSubMenu("faq", "", "O خضروات", "#")
//mymenu.addSubMenu("faq", "", "O منتجات أخرى", "#")
//mymenu.addSubMenu("tutorials", "", "O خضروات", "#")
//mymenu.addSubMenu("tutorials", "", "O فواكه", "#")
//mymenu.addSubMenu("tutorials", "", "O منتجات أخرى", "#")

// This line is required after all menu definitions are finished
mymenu.showMenu()
