var theImages = new Array()
var theLinks = new Array()

// Random képek
theImages[0] = 'rkepek/0001.jpg'
theImages[1] = 'rkepek/0003.jpg'
theImages[2] = 'rkepek/0006.jpg'

// Képek linkjei
theLinks[0] = 'gep.htm'
theLinks[1] = 'elerhetosegek.htm'
theLinks[2] = 'gep.htm'

// Kód:
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));
var whichLink = whichImage;

function showImage()
  {
  document.write('<a href="'+theLinks[whichLink]+'">'+'<img border="0" src="'+theImages[whichImage]+'"></a>');
  }
