// JavaScript Document
<!--random image-->
  
<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = '../random/pic-001.jpg'
theImages[1] = '../random/pic-002.jpg'
theImages[2] = '../random/pic-003.jpg'
theImages[3] = '../random/pic-004.jpg'
theImages[4] = '../random/pic-005.jpg'
theImages[5] = '../random/pic-006.jpg'
theImages[6] = '../random/pic-007.jpg'
theImages[7] = '../random/pic-008.jpg'
theImages[8] = '../random/pic-009.jpg'
theImages[9] = '../random/pic-010.jpg'
theImages[10] = '../random/pic-011.jpg'
theImages[11] = '../random/pic-012.jpg'
theImages[12] = '../random/pic-013.jpg'
theImages[13] = '../random/pic-014.jpg'
theImages[14] = '../random/pic-015.jpg'
theImages[15] = '../random/pic-016.jpg'
theImages[16] = '../random/pic-017.jpg'
theImages[17] = '../random/pic-018.jpg'
theImages[18] = '../random/pic-019.jpg'
theImages[19] = '../random/pic-020.jpg'
theImages[20] = '../random/pic-021.jpg'
theImages[21] = '../random/pic-022.jpg'
theImages[22] = '../random/pic-023.jpg'
theImages[23] = '../random/pic-024.jpg'
theImages[24] = '../random/pic-026.jpg'
theImages[25] = '../random/pic-027.jpg'
theImages[26] = '../random/pic-028.jpg'
theImages[27] = '../random/pic-029.jpg'
theImages[28] = '../random/pic-030.jpg'
theImages[29] = '../random/pic-031.jpg'
theImages[30] = '../random/pic-032.jpg'
theImages[31] = '../random/pic-033.jpg'
theImages[32] = '../random/pic-034.jpg'
theImages[33] = '../random/pic-035.jpg'
theImages[34] = '../random/pic-036.jpg'
theImages[35] = '../random/pic-037.jpg'
theImages[36] = '../random/pic-038.jpg'
theImages[37] = '../random/pic-039.jpg'
theImages[38] = '../random/pic-040.jpg'
theImages[39] = '../random/pic-041.jpg'
theImages[40] = '../random/pic-042.jpg'
theImages[41] = '../random/pic-043.jpg'
theImages[42] = '../random/pic-045.jpg'
theImages[43] = '../random/pic-046.jpg'
theImages[44] = '../random/pic-048.jpg'
theImages[45] = '../random/pic-049.jpg'
theImages[46] = '../random/pic-050.jpg'


// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//-->


  <!--randomimage end-->