// JavaScript Document

h = new Date();
var f = geth(h.getHours());

function geth(t){
if (t<=4) return "swf/01.swf";
else if (t<=9) return "swf/02.swf";
else if (t<=17) return "swf/03.swf";
else if (t<=19) return "swf/04.swf";
else if (t<=20) return "swf/05.swf";
else if (t<=21) return "swf/06.swf";
else if (t<=22) return "swf/07.swf";
else return "swf/01.swf";
}

document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="​http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0​ name="0" width="850" height="250" align="" id="0">');
document.writeln('<param name=movie value="' + f + '">');
document.writeln('<param name=quality value=autohigh>');
document.writeln('<param name=wmode value=transparent>');
document.writeln('<param name=bgcolor value=#66CCFF>');
document.writeln('<embed src="' + f + '" width="850" height="250" align="" quality=autohigh wmode=transparent bgcolor=#66CCFF type="application/x-shockwave-flash" pluginspage="http://get.adobe.com/jp/flashplayer/" name="0"></embed>');
document.writeln('</object>');