<!--
// This is the array containing images of the kids.
var img = new Array (
"kids/comp1.jpg",
"kids/comp2.jpg",
"kids/comp3.jpg",
"kids/comp4.jpg"
);

// This is the array of names of the kids. ORDER MUST CORRESPOND EXACTLY.
var txt = new Array (
"Steven Madulago",
"Mitin Mulatu",
"Manuel Cazares",
"Luis Rivera"
);

//no editing required below here
//unless to alter image dimentions
//-------
//this code selects an image at random 
//from the list above. It then removes 
//it from the list, and selects another
//four times.
var count=img.length;
var pic=Math.floor(count*Math.random());
document.write("<center><img src=\""+img[pic]+"\" width=\"175\" height=\"225\" alt=\"Compassion\" /><h5>"+txt[pic]+"</h5><hr>");
img.splice(pic,1);
txt.splice(pic,1);
var count2=img.length;
var pic2=Math.floor(count2*Math.random());
document.write("<img src=\""+img[pic2]+"\" width=\"175\" height=\"225\" alt=\"Compassion\" /><h5>"+txt[pic2]+"</h5><hr>");
img.splice(pic2,1);
txt.splice(pic2,1);
var count3=img.length;
var pic3=Math.floor(count3*Math.random());
document.write("<img src=\""+img[pic3]+"\" width=\"175\" height=\"225\" alt=\"Compassion\" /><h5>"+txt[pic3]+"</h5><hr>");
img.splice(pic3,1);
txt.splice(pic3,1);
var count4=img.length;
var pic4=Math.floor(count4*Math.random());
document.write("<img src=\""+img[pic4]+"\" width=\"175\" height=\"225\" alt=\"Compassion\" /><h5>"+txt[pic4]+"</h5></center>");


//-->