<!--
// ==============================================
// 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] = 'stars/andromeda.png'
theImages[1] = 'stars/aquarius.png'
theImages[2] = 'stars/aquila.png'
theImages[3] = 'stars/aries.png'
theImages[4] = 'stars/auriga.png'
theImages[5] = 'stars/bootes.png'
theImages[6] = 'stars/cancer.png'
theImages[7] = 'stars/canismajor.png'
theImages[8] = 'stars/canisminor.png'
theImages[9] = 'stars/capricorn.png'
theImages[10] = 'stars/carina.png'
theImages[11] = 'stars/cassiopeia.png'
theImages[12] = 'stars/centaurus.png'
theImages[13] = 'stars/cepheus.png'
theImages[14] = 'stars/cetus.png'
theImages[15] = 'stars/columba.png'
theImages[16] = 'stars/coma.png'
theImages[17] = 'stars/cornoa2.png'
theImages[18] = 'stars/corona1.png'
theImages[19] = 'stars/corvus.png'
theImages[20] = 'stars/crater.png'
theImages[21] = 'stars/crux.png'
theImages[22] = 'stars/cygnus.png'
theImages[23] = 'stars/delphinus.png'
theImages[24] = 'stars/draco.png'
theImages[25] = 'stars/equuleus.png'
theImages[26] = 'stars/eridanus.png'
theImages[27] = 'stars/gemini.png'
theImages[28] = 'stars/hercules.png'
theImages[29] = 'stars/hydra.png'
theImages[30] = 'stars/leo.png'
theImages[31] = 'stars/lepus.png'
theImages[32] = 'stars/libra.png'
theImages[33] = 'stars/lupus.png'
theImages[34] = 'stars/lyra.png'
theImages[35] = 'stars/monoceros.png'
theImages[36] = 'stars/ophicius.png'
theImages[37] = 'stars/orion.png'
theImages[38] = 'stars/pavo.png'
theImages[39] = 'stars/pegasus.png'
theImages[40] = 'stars/perseus.png'
theImages[41] = 'stars/pisces2.png'
theImages[42] = 'stars/pisces.png'
theImages[43] = 'stars/puppis.png'
theImages[44] = 'stars/pyxis.png'
theImages[45] = 'stars/sagitta.png'
theImages[46] = 'stars/sagittarius.png'
theImages[47] = 'stars/scorpius.png'
theImages[48] = 'stars/taurus.png'
theImages[49] = 'stars/triangulum.png'
theImages[50] = 'stars/ursamajor.png'
theImages[51] = 'stars/ursaminor.png'
theImages[52] = 'stars/vela.png'
theImages[53] = 'stars/virgo.png'


// ======================================
// 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]+'">');
}
