<!-- 表示する写真番号を決める
function ImgNo(n)
{
	var	num = Math.floor( Math.random() * n ) + 1;
	if( num <10 ){ num = "0" + num; }
	return  num;
}
-->
