<!--
jumpURL = new Array();
imgURL  = new Array();
jumpURL[0] = "news/index.html";
jumpURL[1] = "news/index.html";
jumpURL[2] = "news/index.html";
jumpURL[3] = "news/index.html";
jumpURL[4] = "news/index.html";
jumpURL[5] = "news/index.html";
jumpURL[6] = "news/index.html";

imgURL[0]  = "topimg/01.gif";
imgURL[1]  = "topimg/02.gif";
imgURL[2]  = "topimg/03.gif";
imgURL[3]  = "topimg/04.gif";
imgURL[4]  = "topimg/05.gif";
imgURL[5]  = "topimg/06.gif";
imgURL[6]  = "topimg/07.gif";


n = Math.floor(Math.random()*jumpURL.length);
document.write("<a href='"+jumpURL[n]+"'>");
document.write("<img src='"+imgURL[n]+"' border='0'>");
document.write("</a>");
// -->