
// Creating and Managing object

var mc = new MenuCreator();

mc.Start();
mc.Add("La Tana del Lupo","../Index.htm", "_self");
	mc.Start();
		mc.Add("Chi Siamo","../Informazioni/Chi_Siamo/", "_self");
		mc.Add("Azienda","../Informazioni/Azienda/", "_self");
		mc.Add("Come Arrivare","../Informazioni/Arrivare/", "_self");
		mc.Add("Contattaci","../Informazioni/Contattaci/", "_self");
	mc.End();
mc.Add("Alloggio","../Alloggio/", "_self");
	mc.Start();
		mc.Add("Listino Prezzi","../Alloggio/Prezzi/", "_self");
		mc.Add("Prenotazioni","../Alloggio/Prenotazioni/", "_self");
	mc.End();
mc.Add("Ristoro","../Ristoro/","_self");
mc.Add("Attivitą Ricreativa","../Attivita/", "_self");
	mc.Start();
		mc.Add("La Piscina","../Attivita/Piscina/", "_self");
		mc.Add("Sportiva","../Attivita/Sportiva/", "_self");
	mc.End();
mc.Add("Fattoria Didattica","../Fattoria/", "_self");
	mc.Start();
		mc.Add("Percorsi","../Fattoria/Percorsi/", "_self")
	mc.End();
mc.Add("Amici della Tana","../Amici/", "_self");
	mc.Start();
		mc.Add("Commenti","../Amici/Commenti/", "_self")
//		mc.Add("Foto","../Amici/Foto/", "_self")
	mc.End();
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 youself
//mc.DoNotWriteFirstLevel();

mc.Draw();
