// JavaScript Document
// Random Image Script

jmp = new Array();
img = new Array();
// address
jmp[0] = "bymodel/eng_124.html";
jmp[1] = "bymodel/eng_041.html";
jmp[2] = "bymodel/eng_122.html";
jmp[3] = "bymodel/eng_065.html";
// images
img[0] = "images/eng_mid_pix_1.jpg";
img[1] = "images/eng_mid_pix_2.jpg";
img[2] = "images/eng_mid_pix_3.jpg";
img[3] = "images/eng_mid_pix_4.jpg";
n = Math.floor(Math.random()*jmp.length);
document.write("<a href='"+jmp[n]+"'>");
document.write("<img src='"+img[n]+"' border='0'>");
document.write("</a>");