	//Load Image Setting
	function loadimg01 () {
	img = new Array();
	alt = new Array();
	link = new Array();

	img[0] = "01";
	img[1] = "02";
	img[2] = "03";
	img[3] = "04";
	img[4] = "05";

	//Link Setting
	link_et = "http://www.mitsubishi.com/mpac/e/toyo/index.html";
	link_es = "http://www.mitsubishi.com/mpac/e/seikado/index.html";

	//alt Setting
	alt_et = "Toyo Bunko";
	alt_es = "Seikado Bunko Library and Art Museum";

	n = Math.floor(Math.random()*img.length);

	document.write("<a href='"+link_et+"'><img src='com_images/top/banner_mpacjt_"+img[n]+".jpg' width='73' height='95' alt='"+alt_et+"' class='left' /></a><a href='"+link_es+"'><img src='com_images/top/banner_mpacjs_"+img[n]+".jpg' width='73' height='95' alt='"+alt_es+"' /></a>");
	}

function loadimg02 ()
{
	var keyName = "eCnt";
	var imageMax = 5;

	var nowCnt = 0;
	var cookies = document.cookie.split(";");
	for (var i in cookies)
	{
		var cookie = cookies[i];
		    cookie = cookie.replace(/^[ ]+|[ ]+$/g, '');
		var val = cookie.split("=");
		if (val[0] == keyName && val[1].match(/^\d{1}$/)) { nowCnt = val[1]; }
	}
	nowCnt++;
	if (nowCnt > imageMax) { nowCnt = 1; }
	document.cookie = keyName + "=" + nowCnt;

	// Image Setting
	if (nowCnt < 10){ nowCnt = "0" + nowCnt; }
	var imgSrc1 = "com_images/top/banner_mpacjt_" + nowCnt + ".jpg"
	var imgSrc2 = "com_images/top/banner_mpacjs_" + nowCnt + ".jpg"

	//Link Setting
	link_et = "http://www.mitsubishi.com/mpac/e/toyo/index.html";
	link_es = "http://www.mitsubishi.com/mpac/e/seikado/index.html";

	//alt Setting
	alt_et = "Toyo Bunko";
	alt_es = "Seikado Bunko Library and Art Museum";

	document.write("<a href='"+link_et+"'><img src='" + imgSrc1 + "' width='73' height='95' alt='"+alt_et+"' class='left' /></a><a href='"+link_es+"'><img src='" + imgSrc2 + "' width='73' height='95' alt='"+alt_es+"' /></a>");
}
