today = new Date();
today_month = today.getMonth()+1;
today_date = today.getDate();

// ■七五三期間 - 8月16日から、9月、10月、11月15日まで
if (((today_month == 8) && (today_date >= 16)) || (today_month == 9) || (today_month == 10) || ((today_month == 11) && (today_date <= 15))) {
  document.write("<p><a href='/?page_id=10'><img src='/home/head_photo_753.jpg' alt='レンタルのご返却は翌日でOK なかむらの七五三' width='600' height='270' /></a></p>");
} else 
// ■成人式期間 - 11月16日から、12月、1月10日まで
if (((today_month == 11) && (today_date >= 16)) || (today_month == 12) || ((today_month == 1) && (today_date <= 10))) {
  document.write("<p><a href='/?page_id=42'><img src='/home/head_photo_seijinshiki.jpg' alt='お求めもレンタルもおまかせください なかむらの成人式用お振袖' width='600' height='270' /></a></p>");
} else 
// ■卒業式期間 - 1月11日から、2月、3月15日まで
if (((today_month == 1) && (today_date >= 11)) || (today_month == 2) || ((today_month == 3) && (today_date <= 15))) {
  document.write("<p><a href='/?page_id=12'><img src='/home/head_photo_hakama.jpg' alt='入学・卒業式のレンタルお着物 なかむらのレンタル袴' width='600' height='270' /></a></p>");
} else 
// ■振袖・成人式 - 3月16日から、4月、5月5日まで
if (((today_month == 3) && (today_date >= 16)) || (today_month == 4) || ((today_month == 5) && (today_date <= 5))) {
  document.write("<p><a href='/?page_id=42'><img src='/home/head_photo_seijinshiki.jpg' alt='お求めもレンタルもおまかせください なかむらの成人式用お振袖' width='600' height='270' /></a></p>");
} else 
// ■ゆかた - 5月6日から、6月、7月、8月15日まで
if (((today_month == 5) && (today_date >= 6)) || (today_month == 6) || (today_month == 7) || ((today_month == 8) && (today_date <= 15))) {
  document.write("<p><img src='/home/head_photo_yukata.jpg' alt='きものを着る、日本の心 なかむら呉服店' width='600' height='270' /></p>");
} else {
  document.write("<p><img src='/home/head_photo_yukata.jpg' alt='きものを着る、日本の心 なかむら呉服店' width='600' height='270' /></p>");
}
