<!-- Begin
// Set up the image files to be used.
var theImagesa = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImagesa[0] = "images/rotate2/aa_boy.jpg";
theImagesa[1] = "images/rotate2/aa_woman.jpg";
theImagesa[5] = "images/rotate2/asian_woman.jpg";
theImagesa[3] = "images/rotate2/asparagus.jpg";
theImagesa[4] = "images/rotate2/football.jpg";
theImagesa[2] = "images/rotate2/fruit.jpg";
theImagesa[6] = "images/rotate2/golf.jpg";
theImagesa[7] = "images/rotate2/golf_man.jpg";
theImagesa[8] = "images/rotate2/jogging.jpg";
theImagesa[9] = "images/rotate2/l_woman.jpg";
theImagesa[10] = "images/rotate2/laughing.jpg";
theImagesa[11] = "images/rotate2/lounging.jpg";
theImagesa[12] = "images/rotate2/rejoicing.jpg";
theImagesa[13] = "images/rotate2/salad.jpg";

// do not edit anything below this line

var j = 0
var p = theImagesa.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagesa[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImagea(){
document.write('<img src="'+theImagesa[whichImage]+'" alt="Images of a healthy life with Diabetes">');
}

//  End -->
