
<!--
/*http://myako.net/ ako's cyberpage*/
now = new Date();
ima = now.getHours();

if ((ima >= 7) && (ima <13 )) {
document.write("<head><LINK rel='stylesheet' TYPE='text/css' href='css/1.css'></head>");
//■↑朝7時から午後12時59分までのCSS指定　CSSの名前と時間は適宜書き換えてね
}

else if ((ima >= 13) && (ima < 18)) {
document.write("<head><LINK rel='stylesheet' TYPE='text/css' href='css/2.css'></head>");
//■↑午後1時から午後5時59分までのCSS指定　CSSの名前と時間は適宜書き換えてね
}

else if ((ima >= 18) && (ima < 24)) {
document.write("<head><LINK rel='stylesheet' TYPE='text/css' href='css/3.css'></head>");
//■↑午後1時から午後5時59分までのCSS指定　CSSの名前と時間は適宜書き換えてね
}

else {
document.write("<head><LINK rel='stylesheet' TYPE='text/css' href='css/4.css'></head>");
//■それ以外の時間のCSS指定　CSSの名前は適宜書き換えてね
}
//-->
