
var theImages = new Array()

//Random-loading images
theImages[0] = '../images/header/logo-banner-bannskog.jpg'
theImages[1] = '../images/header/logo-banner-banntjsk.jpg'
theImages[2] = '../images/header/logo-banner-Banntjern.jpg'
theImages[3] = '../images/header/logo-banner-blad.jpg'
theImages[4] = '../images/header/logo-banner-Holmen.jpg'
theImages[5] = '../images/header/logo-banner-skog.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 ="http://www.holmenkollenfitness.no"><img src="'+theImages[whichImage]+'" border=0 width=960 height=200></a>');
}
else if(whichImage==1){
document.write('<a href ="http://www.holmenkollenfitness.no"><img src="'+theImages[whichImage]+'" border=0 width=960 height=200></a>');
}
else if(whichImage==2){
document.write('<a href ="http://www.holmenkollenfitness.no"><img src="'+theImages[whichImage]+'" border=0 width=960 height=200></a>');
}
else if(whichImage==3){
document.write('<a href ="http://www.holmenkollenfitness.no"><img src="'+theImages[whichImage]+'" border=0 width=960 height=200></a>');
}
else if(whichImage==4){
document.write('<a href ="http://www.holmenkollenfitness.no"><img src="'+theImages[whichImage]+'" border=0 width=960 height=200></a>');
}
else if(whichImage==5){
document.write('<a href ="http://www.holmenkollenfitness.no"><img src="'+theImages[whichImage]+'" border=0 width=960 height=200></a>');
}

}


