
	var name = new Array();
	var _link = new Array();
	var title = new Array();
	
	name[0] = "Home";
	_link[0] = "index.php";
	title[0] = "Pagina iniziale / Home page";
	
	name[1] = "Services";
	_link[1] = "price.php";
	title[1] = "Prezzi e servizi / price and services";
	
	name[2] = "Staff";
	_link[2] = "staff.php";
	title[2] = "Il nostro staff/staff";


	name[3] = "Photo";
	_link[3] = "photo_album.php";
	title[3] = "Foto/Photo";
	

	name[4] = "Map";
	_link[4] = "map.php";
	title[4] = "Mappa / Where we are";
	
	name[5] = "Contact";
	_link[5] = "contact.php";
	title[5] = "Contatti e prenotazioni / Contact";
	
	name[6] = "The city";
	_link[6] = "thecity.php";
	title[6] = "Catania / The city of Catania";
	
	name[7] = "Login";
	_link[7] = "login.php";
	title[7] = "login";



	var count = 8;
	BuildMenu();
	
	
function fnOnMouseOver(id) {
		
		//image = level + "index_images/menu_images/select.jpg";
		//id.style.background = "#3364BB";
		id.style.background = "#F97E04";
		
		if(navigator.appName == "Microsoft Internet Explorer")
		      id.style.cursor='hand';
        else if(navigator.appName == "Netscape") 
				id.style.cursor = "pointer";
		else	id.style.cursor = "pointer";

	}

function fnOnMouseOut(id) {
		
		//id.style.background = "#2153AA";
		id.style.background = "#BBC406";
	}
	
function fnMouseClic(_link) {
	
	document.location.href =  level + _link;
	
	  //color: #000;
	  //background: #FFFFFF;
	  //border-bottom: 1px solid #FFFFFF;

}
	
	
	
function BuildMenu() {

	document.write("<table  border='0' cellpadding='0' cellspacing='0'>");
	document.write("<tr>");	
		
	for(i=0; i<count; i++) {
	
		document.write("<td aling='center' class='menu' title='" + title[i] + "' onmouseover = fnOnMouseOver(this," + i + ") onmouseout=fnOnMouseOut(this," + i + ") onclick =fnMouseClic('" + _link[i] +"')>");
    	document.write(name[i] + "</td>");
		document.write("<td>&nbsp;</td>");
				

    }
	
	document.write("</td></tr>");
	
	
	document.write("</table>");
	
   
              
}
