// JavaScript Document
 var mc = new MenuCreator();
mc.Start();
mc.Add("Home","../home/index.htm","_self");
mc.Add("La cucina propone ....","#","_self");
      mc.Start();
      mc.Add("... carni","../menu2/terra.html","_self");
      mc.Add("... pesce","../menu2/mare.html","_self");
      mc.Add("... i Dessert","../menu2/dolci.htm","_self");
      mc.End();
mc.Add("I Menů degustazione","#","_self");
      mc.Start();
      mc.Add("di terra","../menu2/degustazione01.htm","_self");
      mc.Add("di mare","../menu2/degustazione02.htm","_self");
      mc.End();
mc.Add("L'Astice","../menu2/astice.html","_self");
mc.Add("Il menů della domenica","../menu2/domenica.html","_self");
mc.Add("La pizza","../menu2/pizza.html","_self");
mc.Add ("A Mezzogiorno","#","_self");
      mc.Start();
		mc.Add("I Menů da 6, 8, 10 e 13 €","../menu/menulavoro.htm","_self");
		mc.Add("I piatti unici","../menu/menumezzodi.htm","_self");
	  mc.End();
mc.Add("I menů per festeggiare","../eventi/feste.htm","_self");
mc.Add("Dove siamo","http://www.google.it/maps?near=Via%20Borgo%20Palazzo,%20116%A024125%A0Bergamo","_blank");
mc.End();
// if you uncomment this the menu will be vertical instead of horizontal
mc.Vertical();
// if you uncomment this the box will be centered
//mc.Center();
// if you uncomment this you will have to write the first level by yourself
//mc.DoNotWriteFirstLevel();
mc.Draw();