/* rollover */
if(document.images) {
	bottoneover = new Array(8);
	bottoneout = new Array(8);
	
	bottoneover[0]=new Image(134,21);
	bottoneout[0]=new Image(134,21);
	bottoneover[0].src="images/menu_home_over.gif";
	bottoneout[0].src="images/menu_home.gif";
	
	bottoneover[1]=new Image(134,21);
	bottoneout[1]=new Image(134,21);
	bottoneover[1].src="images/menu_azienda_over.gif";
	bottoneout[1].src="images/menu_azienda.gif";

	bottoneover[2]=new Image(134,21);
	bottoneout[2]=new Image(134,21);
	bottoneover[2].src="images/menu_servizi_over.gif";
	bottoneout[2].src="images/menu_servizi.gif";

	bottoneover[3]=new Image(134,21);
	bottoneout[3]=new Image(134,21);
	bottoneover[3].src="images/menu_dove_over.gif";
	bottoneout[3].src="images/menu_dove.gif";

	bottoneover[4]=new Image(134,21);
	bottoneout[4]=new Image(134,21);
	bottoneover[4].src="images/menu_staff_over.gif";
	bottoneout[4].src="images/menu_staff.gif";

	bottoneover[5]=new Image(134,21);
	bottoneout[5]=new Image(134,21);
	bottoneover[5].src="images/menu_auto_over.gif";
	bottoneout[5].src="images/menu_auto.gif";
	
	bottoneover[6]=new Image(134,21);
	bottoneout[6]=new Image(134,21);
	bottoneover[6].src="images/menu_promozioni_over.gif";
	bottoneout[6].src="images/menu_promozioni.gif";

	bottoneover[7]=new Image(134,21);
	bottoneout[7]=new Image(134,21);
	bottoneover[7].src="images/menu_info_over.gif";
	bottoneout[7].src="images/menu_info.gif";
}
function acceso(i) {
	if(document.images) document.images["menu"+i].src=bottoneover[i].src;
}
function spento(i) {
	if(document.images) document.images["menu"+i].src=bottoneout[i].src;
}


