//MENU A COMPARSA COMPONENTI

homepage=new Array(12);

homepage[0]="";
homepage[1]=dir + "componenti.html#componenti";
homepage[2]=dir + "componenti.html#collaboratori";
homepage[3]=dir + "hh/index.html";
homepage[4]=dir + "mb/index.html";
homepage[5]=dir + "ab/index.html";
homepage[6]=dir + "mo/index.html";
homepage[7]=dir + "cf/index.html";
homepage[8]=dir + "dc/index.html";
homepage[9]="#";
homepage[10]="#";
homepage[11]="#";

//FUNZIONE NAVIGAZIONE

function voltare(n) {
	f=document.componenti.artisti;
	n=f.options[f.selectedIndex].value;
	x=parseInt(n);

	window.location=homepage[x];
	}

//SCRITTURA FORM-SELECT
function form_comp(bgc)	{
	this.bgc=bgc;
	
	with (document) {

		write("<form name='componenti' class='" + this.bgc + "'><div class='right'>");

		write("<span class='nota'>Visitate anche le homepages degli altri componenti di <strong>elastiko</strong> utilizzando il menu a comparsa qui sotto.</span>");

		write("<select name='artisti' size='1' onchange='voltare()'>");

		//OPTIONS

		write("<option value='1' selected='selected'>COMPONENTI</option>");

		write("<option value='0'>- - - - - - - - - - -</option>");

		write("<option value='3'>Hidehiko Hinohara</option>");

		write("<option value='4'>Monica Benvenuti</option>");

		write("<option value='5'>Arcadio Baracchi</option>");

		write("<option value='6'>Marco Ortolani</option>");

		write("<option value='7'>Carlo Failli</option>");

		write("<option value='8'>Diego Carraresi</option>");

		write("<option value='0'>- - - - - - - - - - -</option>");

		write("<option value='2'>COLLABORATORI</option>");

		write("</select></div></form>");

	}
}