// JavaScript Document
//frontpage image rotator
<!-- Begin
// Set up the image files to be used.
var theImages2 = new Array() // do not change this

theImages2[0] = '/images/facts0.gif'
theImages2[1] = '/images/facts1.gif'
theImages2[2] = '/images/facts2.gif'
theImages2[3] = '/images/facts03.gif'
theImages2[4] = '/images/facts4.gif'
theImages2[5] = '/images/facts5.gif'
theImages2[6] = '/images/facts6.gif'
theImages2[7] = '/images/facts7.gif'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages2[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showFactsImage(){
document.write('<img src="'+theImages2[whichImage]+'" alt="Random Facts about Breast Cancer" width="536" />');
}

//  End -->
