/**
 *	@filename		nasco_banners.js
 *	@charset		shift_jis
 *	@created		December 11, 2009
 *	@lastmodified	December 11, 2009
 *	@description	バナー書き出し用
 */
////////////////////////////////////////////////////////////////////////////////////////////////////
//
//	DOMツリー構築完了後に実行（onload前）
//
////////////////////////////////////////////////////////////////////////////////////////////////////
$(function(){
	// バナーファイルの場所
	var fileName = "bannerlist/index.html";
	var bodyId = document.getElementsByTagName("body").item(0).getAttribute("id");

	var rootPath = $("#globalNavHome a").get(0).getAttribute("href");
	var url = rootPath.replace("index.html", "")+fileName;
	var dummyDiv = document.createElement("div");

	$(dummyDiv).load(url, function(){

		//要素を取得
		var productBanner = $("ul#bannerUl", this);

		if(bodyId=="home"){
			$("div#topsideContentsArea div#banners").append(productBanner);
		}
		else {
			$("div#sideContentsArea div#banners").append(productBanner);
		}

	});

});

////////////////////////////////////////////////////////////////////////////////////////////////////
