// menu_items.js file

var MENU_ITEMS_1 =[
  ["<b>Search your property</b>", null],
  ["By region...", null,
  	["Tuscany", "search.php?region=2"],
  	["Umbria", "search.php?region=1"],
  	["Lazio", "search.php?region=3"],
  	["Marche", "search.php?region=4"],
  	["Campania", "search.php?region=5"],
  	["Roma", "search.php?region=6"]
  ],
  ["By property type...", null,
  	["Villas", "search.php?type=1"],
  	["Apts and B&B", "search.php?type=2"],
  	["City centre atps", "search.php?type=3"]
  ],
  ["<span style='color:#990000;font-weight:bold;'>Advanced search</span>","adsearch.php"]
];

var MENU_ITEMS_2 =[
	["Home page", "index.php"],
	["About Italy", "italy.php"],
	["More info...", "info.php",
		["How to book", "howtobook.php"],
		["Booking conditions", "bconditions.php"],
		["Useful information", "uinfo.php"],
		["Mailing list", "mlist.php"],
		["Cooking classes", "cooking.php"],
		["Weddings", "weddings.php"],
		["Useful links", "links.php"]		
	],
	["About us", "about.php"],	
	["Contacts", "contacts.php"]	
];

