// JavaScript Document
//
function endTimeTable(){
document.write('<table border="0" cellspacing="0" cellpadding="1"><tr>');
document.write('<td colspan="3" height="20"><font size="2">＜今月の営業時間＞</font></td></tr>');
document.write('<tr><td><font size="2">平日</font></td><td width="12">　</td>');
document.write('<td><font size="2" color="#330066">午前 5:00 〜 午後 5:00</font></td></tr>');
document.write('<tr><td><font size="2">土日祝</font></td><td width="12">　</td>');
document.write('<td><font size="2" color="#330066">午前 5:00 〜 午後 5:00</font></td></tr>');
document.write('</table>');
document.write('<font size="2">季節により変動しますので詳しくはお問い合わせ下さい。</font>');
}