var theImages = new Array()

theImages[0] = 'http://lukovit-news.com/images/300x250adv.png'
theImages[1] = 'http://lukovit-news.com/images/razkaji_mi_istoriq.jpg'
theImages[2] = 'http://lukovit-news.com/images/bydete.png'

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(){
if(whichImage==0){
document.write('<a href ="http://lukovit-news.com/za_reklama"><img src="'+theImages[whichImage]+'" border=0 width=290 height=250  alt=""></a>');
}
else if(whichImage==1){
document.write('<a href ="http://lukovit-news.com/razkaji_mi_istoria.html"><img src="'+theImages[whichImage]+'" border=0 width=290 height=250  alt="Разкажи ми история, конкурс"></a>');
}
else if(whichImage==2){
document.write('<a href ="mailto:lukovit_new@abv.bg"><img src="'+theImages[whichImage]+'" border=0 width=290 height=250  alt=""></a>');
}

}

