// JavaScript Document

function getCSS()
{
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
theMonth = datetoday.getMonth()+1;

if (theMonth == 4)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_sp.css";
else if (theMonth == 5)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_sp.css";
else if (theMonth == 6)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_sm.css";
else if (theMonth == 7)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_sm.css";
else if (theMonth == 8)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_sm.css";
else if (theMonth == 9)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_at.css";
else if (theMonth == 10)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_at.css";
else if (theMonth == 11)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_at.css";
else if (theMonth == 12)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_wn.css";
else if (theMonth == 1)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_wn.css";
else if (theMonth == 2)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_wn.css";
else if (theMonth == 3)
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_sp.css";
else
display = "http://www.muchu.or.jp//shared/stylesheets/cimg_sp.css";
var css = '<'; css+='link rel="stylesheet" href=' + display + ' \/'; css+='>';
document.write(css);
}
