bg = new Array(4); //设定图片数量，如果图片数为3，这个参数就设为2，依次类推
bg[0] = 'image/img1.gif' //显示的图片路径，可用http://
bg[1] = 'image/img2.gif'
bg[2] = 'image/img3.gif'
bg[3] = 'image/img4.gif'
bg[4] = 'image/img5.gif'
index = Math.floor(Math.random() * bg.length);
document.write("<img src='"+bg[index]+"'/>");