//ブランディング画像表示機能
function ChgTopImage( shibuName ){

	var topImageSpring = "top_branding_image_Haru.jpg";		// ブランディング画像（春）
	var topImageSummer = "top_branding_image_Natsu.jpg";	// ブランディング画像（夏）
	var topImageAutumn = "top_branding_image_Aki.jpg";		// ブランディング画像（秋）
	var topImageWinter = "top_branding_image_Fuyu.jpg";		// ブランディング画像（冬）

	var objDate = new Date(); //日付オブジェクト
	var thisMonth = objDate.getMonth() + 1;

	var topImageDirectory = "/images/" + shibuName + "/"; // ブランディング画像格納ディレクトリ

	// 3月〜5月をブランディング画像（春）を表示する
	// 6月〜8月をブランディング画像（夏）を表示する
	// 9月〜11月をブランディング画像（秋）を表示する
	// 12月〜2月をブランディング画像（冬）を表示する

	if(( thisMonth >= 3 ) && ( thisMonth <=5 )){
		document.write('<div id="top_branding_image"><img src="' + topImageDirectory + topImageSpring + '" width="356" height="144" alt="春のブランディング画像"></div>\n');
	} else if(( thisMonth >= 6 ) && ( thisMonth <=8 )){
		document.write('<div id="top_branding_image"><img src="' + topImageDirectory + topImageSummer + '" width="356" height="144" alt="夏のブランディング画像"></div>\n');
	} else if(( thisMonth >= 9 ) && ( thisMonth <=11 )){
		document.write('<div id="top_branding_image"><img src="' + topImageDirectory + topImageAutumn + '" width="356" height="144" alt="秋のブランディング画像"></div>\n');
	} else if(( thisMonth = 12 ) || (( thisMonth >= 1 ) && ( thisMonth <=2 ))){
		document.write('<div id="top_branding_image"><img src="' + topImageDirectory + topImageWinter + '" width="356" height="144" alt="冬のブランディング画像"></div>\n');
	}
}

