var theImages = new Array()

theImages[0] = 'nl/pictures/macbookpro13_226.jpg'
theImages[1] = 'nl/pictures/macbookpro13_253.jpg'
theImages[2] = 'nl/pictures/macbookpro15_253.jpg'
theImages[3] = 'nl/pictures/macbookpro15_266.jpg'
theImages[4] = 'nl/pictures/macbookpro15_28.jpg'
theImages[5] = 'nl/pictures/macbookpro17_28.jpg'


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 ="shop/laptop_dutch?categoryid=1"><img src="'+theImages[whichImage]+'" border=0 width=334 height=250></a>');
}
else if(whichImage==1){
document.write('<a href ="shop/laptop_dutch?categoryid=1"><img src="'+theImages[whichImage]+'" border=0 width=334 height=250></a>');
}
else if(whichImage==2){
document.write('<a href ="shop/laptop_dutch?categoryid=1"><img src="'+theImages[whichImage]+'" border=0 width=334 height=250></a>');
}
else if(whichImage==3){
document.write('<a href ="shop/laptop_dutch?categoryid=1"><img src="'+theImages[whichImage]+'" border=0 width=334 height=250></a>');
}
else if(whichImage==4){
document.write('<a href ="shop/laptop_dutch?categoryid=1"><img src="'+theImages[whichImage]+'" border=0 width=334 height=250></a>');
}
else if(whichImage==5){
document.write('<a href ="shop/laptop_dutch?categoryid=1"><img src="'+theImages[whichImage]+'" border=0 width=334 height=250></a>');
}
else if(whichImage==6){
document.write('<a href ="shop/laptop_dutch?categoryid=1"><img src="'+theImages[whichImage]+'" border=0 width=334 height=250></a>');
}

}
