img = new Array();

img[0] = "img/image01.jpg";
img[1] = "img/image02.jpg";
img[2] = "img/image04.jpg";
img[3] = "img/image05.jpg";

n = Math.floor(Math.random()*img.length);

document.write("<img src='"+img[n]+"' border='0' alt='' width='663' height='299' />");
