
function get_random()
{
var ranNum= Math.floor(Math.random()*16);
return ranNum;
}
var whichImg=get_random();

function show_image() {
var img=new Array(16)
img[0]="http://www.fresh-off-the-bus.com/images/random/01.jpg";
img[1]="http://www.fresh-off-the-bus.com/images/random/02.jpg";
img[2]="http://www.fresh-off-the-bus.com/images/random/03.jpg";
img[3]="http://www.fresh-off-the-bus.com/images/random/04.jpg";
img[4]="http://www.fresh-off-the-bus.com/images/random/05.jpg";
img[5]="http://www.fresh-off-the-bus.com/images/random/06.jpg";
img[6]="http://www.fresh-off-the-bus.com/images/random/07.jpg";
img[7]="http://www.fresh-off-the-bus.com/images/random/08.jpg";
img[8]="http://www.fresh-off-the-bus.com/images/random/09.jpg";
img[9]="http://www.fresh-off-the-bus.com/images/random/10.jpg";
img[10]="http://www.fresh-off-the-bus.com/images/random/11.jpg";
img[11]="http://www.fresh-off-the-bus.com/images/random/12.jpg";
img[12]="http://www.fresh-off-the-bus.com/images/random/13.jpg";
img[13]="http://www.fresh-off-the-bus.com/images/random/14.jpg";
img[14]="http://www.fresh-off-the-bus.com/images/random/15.jpg";
img[15]="http://www.fresh-off-the-bus.com/images/random/16.jpg";

document.write("<img src='");
document.write(img[whichImg]);
document.write("' border='0' />");
}
