/* rollover */
if(document.images) {

	bottoneover = new Array(8);
	bottoneout = new Array(8);

	bottoneover[0]=new Image(94,18);
	bottoneout[0]=new Image(94,18);
	bottoneover[0].src="img/ico_hp_on.gif";
	bottoneout[0].src="img/ico_hp.gif";

	bottoneover[1]=new Image(94,18);
	bottoneout[1]=new Image(94,18);
	bottoneover[1].src="img/ico_dove_on.gif";
	bottoneout[1].src="img/ico_dove.gif";

	bottoneover[2]=new Image(94,18);
	bottoneout[2]=new Image(94,18);
	bottoneover[2].src="img/ico_tel_on.gif";
	bottoneout[2].src="img/ico_tel.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;
}