// 時刻によって画像変更
    today = new Date();
    hours = today.getHours();
    //AM5：00〜PM6:00の間の画像
    if(hours < 18 && hours >= 5){image = "common/images/img_day.jpg";}
    //PM6：00〜AM5:00の間の画像
    if(hours >=0 && hours < 5 || hours >= 18 && hours <=24){image = "common/images/img_night.jpg";}

