<!-- Hide from old browsers
// Copyright © 1999 Doug Popeney
// Created by Doug Popeney (easyjava@easyjavascipt.com)
// JavaScript Made Easy!! - http://www.easyjavascript.com

var imagenumber = 5;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
images = new Array
images[1] = "random01"
images[2] = "random02"
images[3] = "random03"
images[4] = "random04"
images[5] = "random05"
var image = images[rand1]
// -- End Hiding Here -->
