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