cambiaImg("randomImg");

function cambiaImg(imgId) {
	// window.alert(document.getElementById(imgId).getAttribute('alt'));
	images = new Array();
	alts = new Array();
	images[0]="../img/padenghe/gall1.jpg";
	alts[0]="Foto di Padenghe sul Garda";
	images[1]="../img/padenghe/gall2.jpg";
	alts[1]="Foto di Padenghe sul Garda";
	images[2]="../img/padenghe/gall3.jpg";
	alts[2]="Foto di Padenghe sul Garda";
	images[3]="../img/padenghe/gall4.jpg";
	alts[3]="Foto di Padenghe sul Garda";
	images[4]="../img/padenghe/gall5.jpg";
	alts[4]="Foto di Padenghe sul Garda";
	images[5]="../img/padenghe/gall6.jpg";
	alts[5]="Foto di Padenghe sul Garda";
	images[6]="../img/padenghe/gall7.jpg";
	alts[6]="Foto di Padenghe sul Garda";
	images[7]="../img/padenghe/gall8.jpg";
	alts[7]="Foto di Padenghe sul Garda";
	index = Math.floor(Math.random() * images.length);
	document.getElementById(imgId).setAttribute('alt', alts[index]);
	document.getElementById(imgId).src = images[index];
}