// JavaScript Document
// Random Image Script

jmp = new Array();
img = new Array();
// address
jmp[0] = "bymodel/eng_112.html";
jmp[1] = "bymodel/eng_132.html";
jmp[2] = "bymodel/eng_134.html";
jmp[3] = "bymodel/eng_125.html";
// images
img[0] = "images/eng_top_img_v_spinet.jpg";
img[1] = "images/eng_top_img_v_resonance.jpg";
img[2] = "images/eng_top_img_v_burlesque.jpg";
img[3] = "images/eng_top_img_v_interlude.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>");