
//script for internal rotating images
var imagearray = new Array('http://climatetrust.org/images/random/1.jpg','http://climatetrust.org/images/random/2.jpg','http://climatetrust.org/images/random/3.jpg','http://climatetrust.org/images/random/4.jpg','http://climatetrust.org/images/random/5.jpg','http://climatetrust.org/images/random/6.jpg','http://climatetrust.org/images/random/7.jpg','http://climatetrust.org/images/random/8.jpg','http://climatetrust.org/images/random/9.jpg');
var j = 0
var p = imagearray.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = imagearray[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+imagearray[whichImage]+'" width="898" height="290" alt="The Climate Trust" title="The Climate Trust" border="0">');
}