
function SetIEMenuHover ()
{
	if (document.all && document.getElementById)
	{
		var navRoot = document.getElementById ("top_nav");
		var i;
		for (i = 0; i < navRoot.childNodes.length; i++)
		{
			var node = navRoot.childNodes[i];
			if (node.nodeName == "LI")
			{
				node.onmouseover = function ()
				{
					this.className += " over";
				}
				node.onmouseout = function ()
				{
					this.className = this.className.replace (" over", "");
				}
			}
		}
	}
}

function GetHtmlMenu ()
{
	var strHtml = "<DIV id=mainmenu>" +
					  "	<UL id=top_nav>" + 
					  "		<LI id=mnuAbout style='BACKGROUND-IMAGE: url('none')'>" +
					  "			<A href='index.htm'>" +
					  "				<SPAN class=ctr>Il Comune</SPAN>" +
					  "			</A>" +
					  "			<UL>" +
					  "				<LI><A href='lavori.htm'>Servizi e orari</A></LI>" +
					  "				<LI><A href='lavori.htm'''>Appalti e contratti</A></LI>" +
					  "				<LI><A href='lavori.htm'''>Comunicazioni alla cittadinanza</A></LI>" +
					  "				<LI><A href='lavori.htm'''>Comunicati stampa</A></LI>" +
					  "				<LI><A href='lavori.htm'''>Informazioni per l'utilizzazione del Salone Pluriuso</A></LI>" +
					  "			</UL>" +
					  "		</LI>" +
					  "		<LI id=topnav_604>" +
					  "			<A href='index.htm'>" +
					  "				<SPAN class=ctr>Informazioni</SPAN>" +
					  "			</A>" +
					  "			<UL>" +
					  "				<LI><A href='mappa.htm'>Come raggiungere Andrate</A></LI>" +
					  "				<LI><A href='lavori.htm'>Il Punto Informativo</A></LI>" +
					  "				<LI><A href='lavori.htm'>Le manifestazionii</A></LI>" +
					  "				<LI><A href='lavori.htm'>Dove dormire</A></LI>" +
					  "				<LI><A href='utili.htm'>I Numeri utili</A></LI>" +
					  "				<LI><A href='storia.htm'>Storia e cultura</A></LI>" +
					  "				<LI><A href='ecomuseo.htm'>Ecomuseo</A></LI>" +
					  "			</UL>" +
					  "		</LI>" +
					  "		<LI id=topnav_22>" +
					  "			<A href='index.htm'>" +
					  "				<SPAN class=ctr>Nordic Walking</SPAN>" +
					  "			</A>" +
					  "			<UL>" +
					  "				<LI><A href='benvenuto.htm'>Benvenuto</A></LI>" +
					  "				<LI><A href='nordic walking.htm'>Il Nordic Walking</A></LI>" +
					  "				<LI><A href='scuola.htm'>La Scuola di Nordic Walking</A></LI>" +
					  "				<LI><A href='sui sentieri.htm'>Sui Sentieri del Nordic Walking</A></LI>" +
					  "			</UL>" +
					  "		</LI>" +
					  "		<LI id=topnav_23>" +
					  "			<A href='index.htm'>" +
					  "				<SPAN class=ctr>Altri sport</SPAN>" +
					  "			</A>" +
					  "			<UL>" +
					  "				<LI><A href='bike.htm'>Mountain bike</A></LI>" +
					  "				<LI><A href='scialpinismo.htm'>Scialpinismo </A></LI>" +
					  "				<LI><A href='arrampicata.htm'>Arrampicata</A></LI>" +
					  "				<LI><A href='volo.htm'>Il volo libero</A></LI>" +
					  "		</LI>" +
					  "		<LI id=topnav_24>" +
					  "			<A href='index.htm'>" +
					  "				<SPAN class=ctr>Prodotti e cucina</SPAN>" +
					  "			</A>" +
					  "			<UL>" +
					  "				<LI><A href='prodotti.htm'>Prodotti tipici</A></LI>" +
					  "				<LI><A href='produttori.htm'>Le aziende agricole del territorio </A></LI>" +
					  "				<LI><A href='negozi.htm'>I negozi del territorio</A></LI>" +
					  "				<LI><A href='cucina.htm'>La cucina</A></LI>" +
					  "				<LI><A href='ristoranti.htm'>I ristoranti</A></LI>" +

					  "		</LI>" +
					  "	</UL>" +
					  "</DIV>";
	return strHtml;
}

function GetHtmlBanner ()
{
	var strHtml = "<DIV style='clear:both'>" +
					  "	<IMG border='0' src='images/banner.jpg' width='720' height='174'>" +
					  "</DIV>";
	return strHtml;
}

function GetHtmlBanner_museo ()
{
	var strHtml = "<DIV style='clear:both'>" +
					  "	<IMG border='0' src='images/ecomuseo.jpg' width='720' height='310'>" +
					  "</DIV>";
	return strHtml;
}


function GetHtmlBanner_produttori ()
{
	var strHtml = "<DIV style='clear:both'>" +
					  "	<IMG border='0' src='images/produttori.jpg' width='720' height='302'>" +
					  "</DIV>";
	return strHtml;
}

function GetHtmlBanner_sci ()
{
	var strHtml = "<DIV style='clear:both'>" +
					  "	<IMG border='0' src='images/scialpinismo.jpg' width='720' height='276'>" +
					  "</DIV>";
	return strHtml;
}
