function init() {
        bellako.activate()
}

bellako = new MenuList(0,138,115,30)
bellako.overOpen = true

// when you click on a list item it will redirect based on the VALUES sent to the list's
bellako.onSelect = MenuListRedirect

bellako.list.setImage('../pictures/arrow_1.gif','../pictures/arrow_2.gif',13,20)

// mainmenu
bellako.list.add(0,'&nbsp;<b>Nice</b>Home')
bellako.list.add(1,'&nbsp;<b>Nice</b>Company')
bellako.list.add(2,'&nbsp;<b>Nice</b>Products')
bellako.list.add(3,'&nbsp;<b>Nice</b>Wood')
bellako.list.add(4,'&nbsp;<b>Nice</b>Contact')
bellako.list.add(5,'&nbsp;<b>Nice</b>Links')
bellako.list.add(6,'&nbsp;<b>Nice</b>Gallery')
bellako.list.add(7,'&nbsp;<b>Nice</b>Sitemap')
bellako.list.add(8,'&nbsp;Siz')

// mainmenu home
home = new MenuList(bellako,0)
home.list.add('../pages/home.html','&nbsp;Home')
home.list.add('../default.htm','&nbsp;IntroPage')


// mainmenu company
company = new MenuList(bellako,1)
company.list.add('../pages/boss.html','&nbsp;Boss')
company.list.add('../pages/philosophy.html','&nbsp;Philosophy')

// mainmenu products
products = new MenuList(bellako,2)
products.list.add(0,'&nbsp;ClassicVibe')
products.list.add(0,'&nbsp;CuttingEdge')
products.list.add(0,'&nbsp;PickUps')
products.list.add(0,'&nbsp;Information')

   // mainmenu products classicvibe
   products0 = new MenuList(products,0)
   products0.list.add('../pages/soto.html','&nbsp;SonicTonic')
   products0.list.add('../pages/ronre.html','&nbsp;RoughNReady')
   products0.list.add('../pages/tocu.html','&nbsp;ToughCustomer')
   products0.list.add('../pages/interl.html','&nbsp;Interlaken')
   products0.list.add('../pages/mitch.html','&nbsp;MitchOliver')


   // mainmenu products cuttingedge
   products1 = new MenuList(products,1)
   products1.list.add('../pages/lopo.html','&nbsp;LovePotion')
   products1.list.add('../pages/moma.html','&nbsp;MojoMaster')
   products1.list.add('../pages/coca.html','&nbsp;CosmoCaster')

   // mainmenu products pickups
   products2 = new MenuList(products,2)
   products2.list.add('../pages/singlecoil.html','&nbsp;SingleCoil')
   products2.list.add('../pages/humbucker.html','&nbsp;Humbucker')
   products2.list.add('../pages/p90.html','&nbsp;P90')
   products2.list.add('../pages/hybrid90.html','&nbsp;Hybrid90')

   // mainmenu products pricelist
   products3 = new MenuList(products,3)
   products3.list.add('../pdf/pricelist.pdf','&nbsp;PriceListPdf')
   products3.list.add('../pdf/leaflet.pdf','&nbsp;CatalogPdf')

// mainmenu woods
wood = new MenuList(bellako,3)
wood.list.add(0,'&nbsp;BodyWoods')
wood.list.add(0,'&nbsp;NeckWoods')

   // mainmenu bodywoods
   wood0 = new MenuList(wood,0)
   wood0.list.add('../pages/alder.html','&nbsp;Alder')
   wood0.list.add('../pages/swash.html','&nbsp;SwampAsh')
   wood0.list.add('../pages/mama.html','&nbsp;MahoganyMaple')
   wood0.list.add('../pages/korina.html','&nbsp;Korina')

   // mainmenu neckwoods
   wood1 = new MenuList(wood,1)
   wood1.list.add('../pages/mapa.html','&nbsp;MaplePauFerro')
   wood1.list.add('../pages/mamap.html','&nbsp;MapleMaple')
   wood1.list.add('../pages/maro.html','&nbsp;MapleRosewood')

// mainmenu contact
contact = new MenuList(bellako,4)
contact.list.add('../pages/inq.html','&nbsp;Feedback')
contact.list.add('../pages/orders.html','&nbsp;Orders/Shop')
contact.list.add('mailto:dandelion@gmx.net?subject=Feedback Website Nice Guitars','&nbsp;WebMaster')

// mainmenu links
links = new MenuList(bellako,5)
links.list.add('../pages/suppliers.html','&nbsp;Suppliers')
links.list.add('../pages/related.html','&nbsp;Related')

// mainmenu gallery
gallery = new MenuList(bellako,6)
gallery.list.add('../pages/gallery.html','&nbsp;TheNineties')

// mainmenu sitemap
sitemap = new MenuList(bellako,7)
sitemap.list.add('../pages/sitemap.html','&nbsp;ImageMap')

bellako.build()


writeCSS(
bellako.css
)

