/* 時間変化する画像1 */

function mychange1(){
hour=new Date();
myhour=hour.getHours();
if (7<=myhour&&myhour<11){
	document.write("<img src='./pictures/top/eisa1.gif'>");
	}
else if (11<=myhour&&myhour<12){
	document.write("<img src='./pictures/top/f-taco4.gif'>");
	}
else if (12<=myhour&&myhour<13){
	document.write("<img src='./pictures/top/f-soba2.gif'>");
	}
else if (13<=myhour&&myhour<14){
	document.write("<img src='./pictures/top/mimiga.gif'>");
	}
else if (14<=myhour&&myhour<15){
	document.write("<img src='./pictures/top/f-sata1.gif'>");
	}
else if (15<=myhour&&myhour<16){
	document.write("<img src='./pictures/top/noomanjiu.gif'>");
	}

else if (17<=myhour&&myhour<19){
	document.write("<img src='./pictures/top/f-pain.gif'>");
	}
else if (21<=myhour&&myhour<22){
	document.write("<img src='./pictures/top/f-awa5.gif'>");
	}
else {
document.write("<img src='./pictures/top/nyan3c.gif'>");
}
}

mychange1();

