  <!-- Kezdés
    // változó deklarálása
    var theImages = new Array() // do not change this
    
    // képnevek felsorolása, lehetnek különböző kiterjesztésű fájlok
    // javasolt azonban egy méretű képek használat, hogy a körülötte levő szöveg ne ugráljon a képméretek változása miatt
    // a példában azt feltételezzük, hogy a képek egy könyvtárban vannak a scripttel
    
    theImages[0] = 'FE1s.JPG'
    theImages[1] = 'FE2s.JPG'
	theImages[2] = 'FE3s.JPG'
	theImages[3] = 'FE4s.JPG'
	theImages[4] = 'FE5s.JPG'
	theImages[5] = 'FE6s.JPG'
	theImages[6] = 'FE7s.JPG'
	theImages[7] = 'FE8s.JPG'
	theImages[8] = 'FE9s.JPG'
	theImages[9] = 'FE10s.JPG'
	theImages[10] = 'FE11s.JPG'
	theImages[11] = 'FE12s.JPG'
	theImages[12] = 'FE13s.JPG'
	theImages[13] = 'FE14s.JPG'
	theImages[14] = 'FE15s.JPG'
	theImages[15] = 'FE16s.JPG'
	theImages[16] = 'FE17s.JPG'
	theImages[17] = 'FE18s.JPG'
	theImages[18] = 'FE19s.JPG'
	theImages[19] = 'FE20s.JPG'
	theImages[20] = 'FE21s.JPG'
	theImages[21] = 'FE22s.JPG'
	theImages[22] = 'FE23s.JPG'
	theImages[23] = 'FE24s.JPG'
	theImages[24] = 'FE25s.JPG'
	theImages[25] = 'FE26s.JPG'
	theImages[26] = 'FE27s.JPG'
	theImages[27] = 'FE28s.JPG'
	theImages[28] = 'FE29s.JPG'
	theImages[29] = 'FE30s.JPG'
	theImages[30] = 'FE31s.JPG'
	theImages[31] = 'FE32s.JPG'
	theImages[32] = 'FE33s.JPG'
	theImages[33] = 'FE34s.JPG'
	theImages[34] = 'FE35s.JPG'
	theImages[35] = 'FE36s.JPG'
	theImages[36] = 'FE37s.JPG'
	theImages[37] = 'FE38s.JPG'
	theImages[38] = 'FE39s.JPG'
	theImages[39] = 'FE40s.JPG'
	theImages[40] = 'FE41s.JPG'
	theImages[41] = 'FE42s.JPG'
	theImages[42] = 'FE43s.JPG'
	theImages[43] = 'FE44s.JPG'
	theImages[44] = 'FE45s.JPG'
	theImages[45] = 'FE46s.JPG'
	theImages[46] = 'FE47s.JPG'
	theImages[47] = 'FE48s.JPG'
	theImages[48] = 'FE49s.JPG'
	theImages[49] = 'FE50s.JPG'
	theImages[50] = 'FE51s.JPG'
	theImages[51] = 'FE52s.JPG'
	theImages[52] = 'FE53s.JPG'
	theImages[53] = 'FE54s.JPG'
	theImages[54] = 'FE55s.JPG'
	theImages[55] = 'FE56s.JPG'
	theImages[56] = 'FE57s.JPG'
	theImages[57] = 'FE58s.JPG'
	theImages[58] = 'FE59s.JPG'
	theImages[59] = 'FE60s.JPG'
	
    
    // ne módosíts csak a megjegyzéseket szedd ki esetleg
    
    var j = 0
    var p = theImages.length; // a theImages array darabszámának meghatározása
    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="../img/galery/2007/fotok/FE/'+theImages[whichImage]+'">'); // kép megjelenítése
    }
