mymenu = new POTMenu
// Defines the size of the main menu items, width and height
mymenu.mainmenuitemsize(135,22)
// Defines the size of the sub menu items, width and height
mymenu.submenuitemsize(152,22)
// Defines the position of the sub menus in relation to the parent
mymenu.submenuplacing(0,0)
// Images that make up the border of the main menu. Optional.
mymenu.mainborderimages("images/greypixel.gif","images/greypixel.gif","images/clearpixel.gif","images/greypixel.gif")
// Corners of the images that make up the main menu border.
mymenu.mainbordercorners("images/greypixel.gif","images/greypixel.gif","images/greypixel.gif","images/greypixel.gif")
// Left width, right width and height of the top and bottom of the border
mymenu.mainborderdimensions(1,1,1)
// These lines are for the sub menu borders
mymenu.subborderimages("images/greypixel.gif","images/greypixel.gif","images/greypixel.gif","images/greypixel.gif")
mymenu.subbordercorners("images/greypixel.gif","images/greypixel.gif","images/greypixel.gif","images/greypixel.gif")
mymenu.subborderdimensions(1,1,1)
// Main menu cell color
mymenu.mainmenucolor("#F7F7F4")
// Sub menu cell color
mymenu.submenucolor("#F7F7F4")
// Centers text for Netscape 4.7
mymenu.netscapeadjust(3,3)
// The image that is show between the main menu items
mymenu.definemainspacer("images/greypixel.gif",1)
// The image that is show between the sub menu items
mymenu.definesubspacer("images/greypixel.gif",1)
// Do you want to "hide" (SELECT menus, OBJECT tags) when in the menu
mymenu.hideobjects(true,true)
// This line is required here
mymenu.startMenu()
// Define the main menu.
mymenu.addMenu("Herakristal","O Herakristal", "#")
/*  */
mymenu.addMenu("Ürünler","O Ürünler", "http://www.herakristal.com/shop/categories.asp")
mymenu.addMenu("Sepet","O Alisveris sepetiniz", "http://www.herakristal.com/shop/cart.asp")
mymenu.addMenu("Üye","O Üye Bölümü", "http://www.herakristal.com/shop/affiliate.asp")
mymenu.addMenu("Ara","O Ara", "http://www.herakristal.com/shop/search.asp")
mymenu.addMenu("Yardim","O Yardim", "#")
mymenu.addMenu("iletisim","O Iletisim", "http://www.herakristal.com/shop/contact.asp")

// This line is required after the main menu is defined.
mymenu.showMainMenu()
// Define the sub menus

/* */
mymenu.addSubMenu("Herakristal", "", "O Anasayfa", "http://www.herakristal.com/shop/index.htm");
mymenu.addSubMenu("Herakristal", "", "O Hakkimizda", "http://www.herakristal.com/shop/about.htm");

mymenu.addSubMenu("Ürünler", "biblo", "O biblo", "#")
mymenu.addSubMenu("Ürünler", "nikahsekeri", "O Nikah Sekeri", "#")
mymenu.addSubMenu("Ürünler", "promosyon", "O Promosyon", "#")

mymenu.addSubMenu("biblo", "", "O Hayvanlar", "http://www.herakristal.com/shop/products.asp?id=8");
mymenu.addSubMenu("biblo", "", "O Meyvalar", "http://www.herakristal.com/shop/products.asp?id=9");
mymenu.addSubMenu("biblo", "", "O Figurines", "http://www.herakristal.com/shop/products.asp?id=10");
mymenu.addSubMenu("biblo", "", "O Tasimacilik", "http://www.herakristal.com/shop/products.asp?id=11");
mymenu.addSubMenu("biblo", "", "O Çiçekler", "http://www.herakristal.com/shop/products.asp?id=12");
mymenu.addSubMenu("biblo", "", "O Dinsel", "http://www.herakristal.com/shop/products.asp?id=13");
mymenu.addSubMenu("biblo", "", "O Mumluk", "http://www.herakristal.com/shop/products.asp?id=14");
mymenu.addSubMenu("biblo", "", "O Masa Objeleri", "http://www.herakristal.com/shop/products.asp?id=15");
mymenu.addSubMenu("biblo", "", "O Anahtarlik", "http://www.herakristal.com/shop/products.asp?id=16");
mymenu.addSubMenu("biblo", "", "O Süs Eşyalari", "http://www.herakristal.com/shop/products.asp?id=17");

mymenu.addSubMenu("nikahsekeri", "", "O Nikah Sekeri", "http://www.herakristal.com/shop/products.asp?id=18");
mymenu.addSubMenu("nikahsekeri", "", "O vaftiz", "http://www.herakristal.com/shop/products.asp?id=19");
mymenu.addSubMenu("nikahsekeri", "", "O dogum", "http://www.herakristal.com/shop/products.asp?id=20");
mymenu.addSubMenu("promosyon", "", "O promosyon", "http://www.herakristal.com/shop/products.asp?id=21");
/* */

mymenu.addSubMenu("Yardim", "S.S.S", "O Sik Sorulan Sorular", "http://www.herakristal.com/shop/faq.asp")
mymenu.addSubMenu("Yardim", "Destek", "O Destek", "http://www.herakristal.com/shop/support.asp")
// This line is required after all menu definitions are finished
mymenu.showMenu()
