<!--
images = new Array(3);

images[0] = "<img src='http://www.uww.edu/coe/mtp/images/randpic0.png' alt='Happy students.' class='peoplePic' />";

images[1] = "<img src='http://www.uww.edu/coe/mtp/images/randpic1.jpg' alt='MTP group photo.' class='peoplePic' />";

images[2] = "<img src='http://www.uww.edu/coe/mtp/images/randpic2.jpg' alt='MTP students.' class='peoplePic' />";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);
// -->


