//ランダムバナー用スクリプト
	tgt = 'target="_top"';
	url = new Array();
	img = new Array();
	url[0] = "../shoes_goods/index.html"; img[0] = "../images/banner01.gif";
	url[1] = "../information/genki.html"; img[1] = "../images/banner02.gif";
	url[2] = "../orderinsole/index.html"; img[2] = "../images/banner03.gif";
	url[3] = "../footcare/index.html"; img[3] = "../images/banner04.gif";
	url[4] = "../information/mailmagagine.html"; img[4] = "../images/banner05.gif";
	url[5] = "../information/event.html"; img[5] = "../images/banner06.gif";
	url[6] = "../information/blog.html"; img[6] = "../images/banner07.gif";
	url[7] = "../information/blog.html"; img[7] = "../images/banner10.gif";
	url[8] = "../footcare/index.html"; img[8] = "../images/banner11.gif";
	url[9] = "../professional/index.html"; img[9] = "../images/banner12.gif";
	url[10] = "../information/mbt.html"; img[10] = "../images/banner08.gif";
	url[11] = "../information/yonex.html"; img[11] = "../images/banner09.gif";

	p = Math.round(Math.random() * (url.length - 1));
	p2 = Math.round(Math.random() * (url.length - 1));
	if(p == p2){
		p2 = p + 1;
			if(p2 > (url.length - 1)){
					p2 = 0;
			}
	}

	RandomBanner = "<a href=\"./"+url[p]+"\" "+tgt+"><img src=\""+img[p]+"\" border=0></a><br /><a href=\"./"+url[p2]+"\" "+tgt+"><img src=\""+img[p2]+"\" border=0></a>";