var theImages = new Array()

theImages[0] = 'http://www.turismonline.ro/images/promo01.jpg'
theImages[1] = 'http://www.turismonline.ro/images/promo02.jpg'
theImages[2] = 'http://www.turismonline.ro/images/promo03.jpg'
theImages[3] = 'http://www.turismonline.ro/images/promo04.jpg'
theImages[4] = 'http://www.turismonline.ro/images/promo05.jpg'


// nu schimba nimic din ce urmeaza

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('<a href="http://www.turismonline.ro/login/"><img src="'+theImages[whichImage]+'" width="250" alt="" border="0"></a>');
}