//***************************************
//	曜日で画像を切り替える（庄内支店）
//***************************************

	function ph_dsp(){

		photoHairetu = new Array(7);
		photoHairetu[1] = "chshonai_1231-0101.jpg";			//月曜日の画像
		photoHairetu[2] = "ch_2007kinga.jpg";			//火曜日の画像
		photoHairetu[3] = "ch_2007kinga.jpg";			//水曜日の画像
		photoHairetu[4] = "chshonai_1228.jpg";			//木曜日の画像
		photoHairetu[5] = "chshonai_1229.jpg";			//金曜日の画像
		photoHairetu[6] = "chshonai_1230.jpg";			//土曜日の画像
		photoHairetu[0] = "chshonai_1231-0101.jpg";			//日曜日の画像
		
		currentDateObject     = new Date();
		Youbi    = currentDateObject.getDay();	//曜日の取り出し
		gethour = currentDateObject.getHours();			//時取り出し）
		if (gethour >= 23){
			Youbi = Youbi + 1;			//設定時刻以降、翌日扱い
			if (Youbi > 6){
				Youbi = 0;
			}
		}
		

//		getmin = currentDateObject.getMinutes();		//テスト用（分取り出し）
//		currentYoubi = getmin % 7;

		phname         = "../images/pict/" + photoHairetu[Youbi]; 
		document.write("<img src=\"" + phname + "\">");
//		document.write("<img src=\"" + phname + "\" width=\"544\">");
		return;
	}
	
	function to2String(value){
		moji="" + value;
		if(moji.length<2){
		moji="0"+moji;
		}
	return moji;
	}
