var bottone_acceso=1;

var SfondoPath="../images/menu/sfondo_"

var ImgPath="../images/"

//link del menu in alto

var PathLinkMenu=new Array('home.htm','mission.htm','servizi.htm','contatti.htm','link.htm')

//link del menu company

var PathLinkCompany=new Array('mission.htm','management.htm','flotta.htm','partners.htm','business.htm','lavora.htm')



function CliccaBottone( id )

{

	if(bottone_acceso!=id)

	{	

		document.images['imgtop'+bottone_acceso].src=SfondoPath + "top_a.gif";//spengo  il giallo

		if ( id<bottone_acceso )//spengo il nero solo se è + piccolo

		{

			for(i=1; i<=bottone_acceso; i++)

			{	

				document.images['imgbottom'+i].src=SfondoPath + "bottom_a.gif";

			}

		}	

		document.images['imgtop'+id].src=SfondoPath + "top_b.gif";//accendo il giallo

		for(i=1; i<=id; i++)//accendo il nero

		{	

			document.images['imgbottom'+i].src=SfondoPath + "bottom_b.gif";

		}

		top.MainFrame.location.href=PathLinkMenu[id-1];

	}

	bottone_acceso=id;

}



function CambiaFreccia( id )

{

/*freccia_accesa=top.MainFrame.location.search;

alert("freccia: "+freccia_accesa);

	if(freccia_accesa!=id)

	{	

		document.images['imgfreccia'+freccia_accesa].src=ImgPath + "menu_company/freccia_2.gif";

		document.images['imgfreccia'+id].src=ImgPath + "menu_company/freccia_1.gif";*/

		top.MainFrame.location.href=PathLinkCompany[id-1];		

	

}


