var now   = new Date();
	var year  = now.getFullYear();
	var month = now.getMonth()+1;
	var day   = now.getDate();
	var hours = now.getHours();
	var min = now.getMinutes();
	
	if(hours < 10) { hours = "0" + hours; }
	if(min < 10) { min = "0" + min; }
	
	document.write(hours + '時' + min + '分');
	document.write('<div class="red">');
 
	if ( isSaturday(year,month,day) || isSunday(year,month,day) || isHoliday(year,month,day)) {
			document.write("只今営業時間外です。");
		} 
		else if( hours>9 && hours<18 ){
				document.write("現在営業中です。お電話下さい！");
		}
		else {
			document.write("只今営業時間外です。");
		}