// ==============================================
// 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] = 'top/top.jpg' 
theImages[1] = 'top/top1.jpg'
theImages[2] = 'top/top2.jpg'
theImages[3] = 'top/top3.jpg'
theImages[4] = 'top/top4.jpg'
theImages[5] = 'top/top5.jpg'
theImages[6] = 'top/top6.jpg'
theImages[7] = 'top/top7.jpg'
theImages[8] = 'top/top8.jpg'
theImages[9] = 'top/top9.jpg'
theImages[10] = 'top/top10.jpg'
theImages[11] = 'top/top11.jpg'
theImages[12] = 'top/top12.jpg'
theImages[13] = 'top/top13.jpg'
theImages[14] = 'top/top14.jpg'
//theImages[15] = 'top/top15.jpg'
//theImages[16] = 'top/top16.jpg'
//theImages[17] = 'top/top17.jpg'
//theImages[18] = 'top/top18.jpg'
//theImages[19] = 'top/top19.jpg'
//theImages[20] = 'top/top20.jpg'
//theImages[21] = 'top/top21.jpg'
//theImages[22] = 'top/top22.jpg'
//theImages[23] = 'top/top23.jpg'
//theImages[24] = 'top/top24.jpg'
//theImages[25] = 'top/top25.jpg'
//theImages[26] = 'top/top26.jpg'
//theImages[27] = 'top/top27.jpg'
//theImages[28] = 'top/top28.jpg'
//theImages[29] = 'top/top29.jpg'
//theImages[30] = 'top/top30.jpg'
//theImages[31] = 'top/top31.jpg'
//theImages[32] = 'top/top32.jpg'



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

var j = 0
var p = theImages.length;
function showImage()
{
  var p = 16;
  var whichImage = Math.round(Math.random()*p);
  document.write('<img style="height:227px" src="top/top'+whichImage+'.jpg" />');
} 

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

	