// Rotating banner script
var theImages = new Array()

//Random-loading images
theImages[0] = 'images/logos/rotate/nikwax-logo-s.jpg' 
theImages[1] = 'images/logos/rotate/paramo-rotate.jpg' 
theImages[2] = 'images/logos/rotate/cvf-logo-rotate.jpg'
theImages[3] = 'images/logos/rotate/lampiris-rotate.jpg'
theImages[4] = 'images/logos/rotate/aerobed-rotate.jpg'
theImages[5] = 'images/logos/rotate/puro-coffe-rotate.jpg'
theImages[6] = 'images/logos/rotate/jml-rotate.jpg'
theImages[7] = 'images/logos/rotate/PwCsmall-rotate.jpg'
theImages[8] = 'images/logos/rotate/reckitt-benckiser-rotate.jpg'
theImages[9] = 'images/logos/rotate/ecoigo-rotate.jpg'
theImages[10] = 'images/logos/rotate/goodlife-rotate.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.worldlandtrust.org/sponsors/index.htm#nikwax"><img src="'+theImages[whichImage]+'" border=0 width=107 height=120 alt="Nikwax" title="Nikwax"></a>');
}
else if(whichImage==1){
document.write('<a href ="http://www.worldlandtrust.org/sponsors/index.htm#paramo"><img src="'+theImages[whichImage]+'" border=0 width=120 height=120 alt="Paramo" title="Paramo"></a>');
}
else if(whichImage==2){
document.write('<a href ="http://www.worldlandtrust.org/sponsors/index.htm#cvf"><img src="'+theImages[whichImage]+'" border=0 width=107 height=120 alt="Commercial Vehicle Finance Limited" title="Commercial Vehicle Finance Limited"></a>');
}
else if(whichImage==3){
document.write('<a href ="http://www.worldlandtrust.org/sponsors/index.htm#lampiris"><img src="'+theImages[whichImage]+'" border=0 width=130 height=130 alt="Lampiris" title="Lampiris"></a>');
}
else if(whichImage==4){
document.write('<a href ="http://www.worldlandtrust.org/sponsors/index.htm#aerobed"><img src="'+theImages[whichImage]+'" border=0 width=130 height=130 alt="Aerobed" title="Aerobed"></a>');
}

else if(whichImage==5){
document.write('<a href ="http://www.worldlandtrust.org/sponsors/index.htm#puro"><img src="'+theImages[whichImage]+'" border=0 width=130 height=130 alt="puro" title="puro"></a>');
}

else if(whichImage==6){
document.write('<a href ="http://www.worldlandtrust.org/sponsors/index.htm#jml"><img src="'+theImages[whichImage]+'" border=0 width=130 height=130 alt="jml" title="jml"></a>');
}

else if(whichImage==7){
document.write('<a href ="http://www.worldlandtrust.org/sponsors/index.htm#pwc"><img src="'+theImages[whichImage]+'" border=0 width=130 height=130 alt="PriceWaterhouseCoopers" title="PriceWaterhouseCoopers"></a>');
}
else if(whichImage==8){
document.write('<a href ="http://www.worldlandtrust.org/sponsors/index.htm#rb"><img src="'+theImages[whichImage]+'" border=0 width=130 height=126 alt="Reckitt Benckiser" title="Reckitt Benckiser"></a>');
}
else if(whichImage==9){
document.write('<a href ="http://www.worldlandtrust.org/sponsors/index.htm#ecoigo"><img src="'+theImages[whichImage]+'" border=0 width=130 height=126 alt="ecoigo" title="ecoigo"></a>');
}
else if(whichImage==10){
document.write('<a href ="http://www.worldlandtrust.org/sponsors/index.htm#goodlife"><img src="'+theImages[whichImage]+'" border=0 width=130 height=130 alt="goodlife" title="goodlife"></a>');
}
}
