
// Set up the image files to be used.
var iImages = 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!

iImages[0] = 'dance0.jpg'
iImages[1] = 'dance1.jpg'
iImages[2] = 'dance3.jpg'
iImages[3] = 'dance4.jpg'
iImages[4] = 'dance5.jpg'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = iImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = iImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage1(){
document.write('<img src="http://www.indianembassy.de/images/'+iImages[whichImage]+' "width="174" height="200""">');

}
