// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// this sample structure demonstrates the use of HTML inside the menu items as well as wrapper functions

var MENU_ITEMS = [
	
	['<img src="img/zoo4_07-1.png" alt="Subscribe to News Feed" border="0" align="baseline" />', null, null,
		[pupup('<div class="m0l1iover104" ><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?rubrica=safari">Safari</a></div><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?rubrica=sala_tropicale">Sala tropicale</a></div><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?rubrica=sala_ornitologica">Sala ornitologica</a></div><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?rubrica=grandi_mammiferi">Metrozoo</a></div><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?rubrica=percorso_pedonale">Percorso pedonale</a></div><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?rubrica=teatro_animali_oceanario">Settori oceanici</a></div><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?art=i_nostri_cuccioli">I nostri cuccioli</a></div><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?art=curiosita_zoologiche">Curiosit&agrave; zoologiche del Parco</a></div></div>')]
	],
	['<div style=" height:144px; width: 223px;"><img src="img/zoo4_07-2.png" alt="Subscribe to News Feed" border="0" align="baseline" height="144px" width="223px" /></div>', null, null,
		[pupup('<div class="m0l1iover104" ><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?art=attrazioni">Attrazioni</a></div><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?art=spettacoli">Spettacoli</a></div><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?art=percorsi">Percorsi</a></div><div style=" height:20px; margin-bottom: 0px;"><a href="http://www.zoosafari.it/index.php?art=66&rload=20100421113446">Mostre e Musei</a></div></div>')],
	]
];


//	This simple function is a wrapper. It puts html around provided text.
//	You can write your own wrappers for higher efficiency and better code maintanability
function pupup (text) {
	return '<div style="text-decoration : none; border: 0px solid #124170 !important ; background:url(bg-ie.png) repeat !important ;">' + text + '</div>';
}

