// JavaScript Document

// 上バナー用

function random01(){
	
jumpURL = new Array();
imgURL  = new Array();
jumpURL[0] = "http://www.zima.jp";
jumpURL[1] = "http://www.zima.jp";
jumpURL[2] = "http://www.zima.jp";
jumpURL[3] = "http://www.zima.jp";
imgURL[0]  = "http://118.82.90.133/images/common/banatop/01.jpg";
imgURL[1]  = "http://118.82.90.133/images/common/banatop/02.jpg";
imgURL[2]  = "http://118.82.90.133/images/common/banatop/03.jpg";
imgURL[3]  = "http://118.82.90.133/images/common/banatop/04.jpg";

n = Math.floor(Math.random()*jumpURL.length);
document.write("<a href='"+jumpURL[n]+"' target='_blank'>");
document.write("<img src='"+imgURL[n]+"' border='0'>");
document.write("</a>");

};


// 横バナー用

function random02(){
	
jumpURL = new Array();
imgURL  = new Array();
jumpURL[0] = "http://www.love4children.jp/";
jumpURL[1] = "http://www.love4children.jp/";
jumpURL[2] = "http://www.love4children.jp/";
jumpURL[3] = "http://www.love4children.jp/";
imgURL[0]  = "http://118.82.90.133/images/common/baside/01.jpg";
imgURL[1]  = "http://118.82.90.133/images/common/baside/02.jpg";
imgURL[2]  = "http://118.82.90.133/images/common/baside/03.jpg";
imgURL[3]  = "http://118.82.90.133/images/common/baside/04.jpg";

n = Math.floor(Math.random()*jumpURL.length);
document.write("<a href='"+jumpURL[n]+"' target='_blank'>");
document.write("<img src='"+imgURL[n]+"' border='0'>");
document.write("</a>");

};