function randomBANNER () {

	jmp = new Array();
	img = new Array();

	//リンク先指定(数字は画像と対応)
	jmp[0] = "http://www.digitalcode.jp/category/?pmcid=7&piid=44";
	jmp[1] = "http://www.digitalcode.jp/brand/?pbid=33";
	jmp[2] = "http://www.digitalcode.jp/category/?pmcid=7&piid=30";

	//画像指定(数字はリンク先と対応)
	img[0] = "http://img09.shop-pro.jp/PA01044/951/etc/bnr_bosai_02.jpg";
	img[1] = "http://img09.shop-pro.jp/PA01044/951/etc/bnr_pleo06.jpg";
	img[2] = "http://www.ideadigitalcode.com/ec/bunner/chimneyam_bnr01.jpg";

	n = Math.floor(Math.random()*jmp.length);
	document.write("<a href='"+jmp[n]+"'>");
	document.write("<img src='"+img[n]+"' width='204' height='100' alt='"+"'>");
	document.write("</a>");

}
