// Random logo

// ==============================================
// 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] = '/images/polaroid.gif'
theImages[1] = '/images/polaroid02.gif'
theImages[2] = '/images/polaroid03.gif'
theImages[3] = '/images/polaroid04.gif'
theImages[4] = '/images/polaroid05.gif'
theImages[5] = '/images/polaroid06.gif'
theImages[6] = '/images/polaroid07.gif'
theImages[7] = '/images/polaroid08.gif'
theImages[8] = '/images/polaroid09.gif'
theImages[9] = '/images/polaroid10.gif'
theImages[10] = '/images/polaroid11.gif'
theImages[11] = '/images/polaroid12.gif'
theImages[12] = '/images/polaroid13.gif'
theImages[13] = '/images/polaroid14.gif'
theImages[14] = '/images/polaroid15.gif'
theImages[15] = '/images/polaroid16.gif'
theImages[16] = '/images/polaroid17.gif'
theImages[17] = '/images/polaroid18.gif'
theImages[18] = '/images/polaroid19.gif'
theImages[19] = '/images/polaroid20.gif'
theImages[20] = '/images/polaroid21.gif'
theImages[21] = '/images/polaroid22.gif'
theImages[22] = '/images/polaroid23.gif'
theImages[23] = '/images/polaroid24.gif'
theImages[24] = '/images/polaroid25.gif'

// ======================================
// 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]+'" title="Polaroid of Miss K" alt="Polaroid of Miss K" width="195" height="180" border="0" />');
}

