/*----------写真のロールオーバー------------------*/
function setFoto(num,pass) {
	foto = new Array() ;
	
	for (i = 0;i<num;i++ ) {
		foto[i] = new Image();
		foto[i].src = pass + i + ".jpg" ;
	}
	
}
function changeFoto(index) {
	document.mainFoto.src = foto[index].src;
	return false;
}
