<!-- Begin
// Set up the image files to be used.
var theImagesb = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImagesb[0] = "../images/rotate3/aa_man.jpg";
theImagesb[3] = "../images/rotate3/aa_woman.jpg";
theImagesb[2] = "../images/rotate3/basketball.jpg";
theImagesb[1] = "../images/rotate3/biking.jpg";
theImagesb[4] = "../images/rotate3/boys.jpg";
theImagesb[5] = "../images/rotate3/corn.jpg";
theImagesb[6] = "../images/rotate3/hiking.jpg";
theImagesb[7] = "../images/rotate3/l_man.jpg";
theImagesb[8] = "../images/rotate3/laughing.jpg";
theImagesb[9] = "../images/rotate3/peppers.jpg";
theImagesb[10] = "../images/rotate3/rapelling.jpg";
theImagesb[11] = "../images/rotate3/track.jpg";
theImagesb[12] = "../images/rotate3/wht_man.jpg";
theImagesb[13] = "../images/rotate3/wht_woman.jpg";

// do not edit anything below this line

var j = 0
var p = theImagesb.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagesb[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImageb(){
document.write('<img src="'+theImagesb[whichImage]+'" alt="Photos of people being active and of fruits and vegetables">');
}

//  End -->