
<!-- Begin
// 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.

theImages[0] = 'finnorszag-inarito.jpg'
theImages[1] = 'horvatorszag-krka1.jpg'
theImages[2] = 'irorszag-achill1.jpg'
theImages[3] = 'irorszag-kerryway2.jpg'
theImages[4] = 'irorszag-dublin-botanikuskert.jpg'
theImages[5] = 'magyaro-pecs-bazilika1.jpg'
theImages[6] = 'magyaro-szenna.jpg'
theImages[7] = 'romania-ogerlistye3.jpg'
theImages[8] = 'norvegia-norvegminta.jpg'
theImages[9] = 'norvegia-oslo2.jpg'
theImages[10] = 'norvegia-roros2.jpg'
theImages[11] = 'spanyolorszag-barcelona-lilahaz.jpg'
theImages[12] = 'svajc-aletsch.jpg'
theImages[13] = 'svajc-werdenberg.jpg'
theImages[14] = 'szerbia-lepenski2.jpg'
theImages[15] = 'szlovenia-bled.jpg'
theImages[16] = 'torokorszag-isztambul12.jpg'
theImages[17] = 'torokorszag-selime1.jpg'
theImages[18] = 'torokorszag-uchisar2.jpg'
theImages[19] = 'torokorszag-uchisar3.jpg'
theImages[20] = 'ujzeland-auckland.jpg'
theImages[21] = 'ujzeland-tekapo-to.jpg'
theImages[22] = 'ujzeland-wellington1.jpg'
theImages[23] = 'v07.jpg'


// do not edit 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]+'">');
}

//  End -->
