// JavaScript Document
function get_random()
{
var ranNum= Math.floor(Math.random()*5);
return ranNum;
}
var whichImg=get_random();

function show_image() {
var img=new Array(5)
img[0]="http://www.relishfilms.com/images/random/main_1.jpg";
img[1]="http://www.relishfilms.com/images/random/main_2.jpg";
img[2]="http://www.relishfilms.com/images/random/main_3.jpg";
img[3]="http://www.relishfilms.com/images/random/main_4.jpg";
img[4]="http://www.relishfilms.com/images/random/main_5.jpg";


document.write("<td background='");
document.write(img[whichImg]);
document.write("' height='200' colspan='3'>");
}