M = new Array();
M[0] = "img/m/m_01.jpg";
M[1] = "img/m/m_02.jpg";
M[2] = "img/m/m_03.jpg";
M[3] = "img/m/m_04.jpg";
M[4] = "img/m/m_05.jpg";
M[5] = "img/m/m_06.jpg";
M[6] = "img/m/m_07.jpg";
M[7] = "img/m/m_08.jpg";
M[8] = "img/m/m_09.jpg";
M[9] = "img/m/m_10.jpg";
M[10] = "img/m/m_11.jpg";
M[11] = "img/m/m_12.jpg";
M[12] = "img/m/m_13.jpg";
M[13] = "img/m/m_05.jpg";
M[14] = "img/m/m_01.jpg";
M[15] = "img/m/m_02.jpg";
M[16] = "img/m/m_06.jpg";
M[17] = "img/m/m_11.jpg";
M[18] = "img/m/m_08.jpg";
M[19] = "img/m/m_03.jpg";
M[20] = "img/m/m_09.jpg";
M[21] = "img/m/m_10.jpg";
M[22] = "img/m/m_02.jpg";
M[23] = "img/m/m_04.jpg";
M[24] = "img/m/m_07.jpg";
M[25] = "img/m/m_08.jpg";
M[26] = "img/m/m_09.jpg";
M[27] = "img/m/m_11.jpg";
M[28] = "img/m/m_06.jpg";
M[29] = "img/m/m_03.jpg";
M[30] = "img/m/m_10.jpg";

T = new Array();
T[0] ="I'm fine!";
T[1] ="I'm shy.";
T[2] ="Because it's raining.";
T[3] ="...I want to run away.";
T[4] ="...I'm weary.";
T[5] ="Run away.";
T[6] ="I'm dreaming!";
T[7] ="Hold me If you love.";
T[8] ="I'm angry.";
T[9] ="Water...";
T[10] ="I lost my motivation.";
T[11] ="...!　　...!";
T[12] ="I blooming! I will die!";
T[13] ="It might be a dream.";
T[14] ="Poker face.";
T[15] ="Sunny spot.";
T[16] ="sometimes, I'm negative.";
T[17] ="Blue sky...";
T[18] ="Humming.";
T[19] ="I want to hide myself.";
T[20] ="No, I'm not fat.";
T[21] ="Touch my heart.";
T[22] ="A cloudy day, I'm cloudy.";
T[23] ="Please forget.";
T[24] ="Zero gravity.";
T[25] ="Shy and retired.";
T[26] ="Sometimes, I'm impudent.";
T[27] ="So what ?";
T[28] ="I don't want to look your face.";
T[29] ="Fake illness.";
T[30] ="I languish.";

nowdate = new Date();
year = nowdate.getFullYear();
mon  = nowdate.getMonth()+1;
date = nowdate.getDate();
document.write("<FONT style='font-size : 10px; color : #444'>");
document.write("<div style='text-align:left'>");
document.write(""+ year + "." + mon + "." + date +".");
document.write("</div>");
document.write("<br />");

month = M.length;
day = new Date();
today = Math.floor(day.getTime()/(60*60*24*1000));
n = today-Math.floor(today/month)*month;

document.write("<div style='text-align:center'>");
document.write("<img src='"+M[n]+"' border='0'>");
document.write("</div>");
document.write("<FONT style='font-size : 12px; color : #555'>");
document.write("<div style='text-align:center'>");
document.write(T[n]);
document.write("</div>");
document.write("<br />");

document.write("<div style='text-align:right'>");
document.write("<input type=button value=' See you tomorrow ! 'onClick='window.close();'>");
document.write("</div>");



