

<!-- Begin
// Set up the image files to be used.
var theImages = new Array()
var theLinks = new Array() 
var theAlts = new Array() 

// do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/main/index-top-chen-li.jpg'
theAlts[0] = '&quot;They were smart, hard working, and enthusiastic about learning a new technology; they made my volunteer work more meaningful.&quot; Click to read the full story'
theLinks[0] = 'stories/chen-li.htm'

theImages[1] = 'images/main/index-top-amber-hirschy.jpg'
theAlts[1] = '&quot;Living and working in Cambodia challenged me to see the world in new ways and to truly acknowledge the hardship and suffering that many people around the world face every day. Those eleven months were some of the most formative months of my life. I will never be the same...thankfully.&quot; Click to read the full story'
theLinks[1] = 'stories/amber-hirschy.htm'

theImages[2] = 'images/main/index-top-laura-rose.jpg'
theAlts[2] = '&quot;I experienced the deep satisfaction that comes with making a difference among those who need it most.&quot; Click to read the full story'
theLinks[2] = 'stories/laura-rose.htm'

theImages[3] = 'images/main/index-top-jennifer-gerson.jpg'
theAlts[3] = '&quot;By getting to know people, showing them love and respect, and teaching ways to prevent deadly diseases like malaria, we hope that lives and communities will be transformed.&quot; Click to read the full story'
theLinks[3] = 'stories/jennifer-gerson.htm'

theImages[4] = 'images/main/index-top-john-varallo.jpg'
theAlts[4] = '&quot;My volunteer experiences have been truly eye-opening and life-changing. I cannot imagine not being involved. In fact, I have changed my work so that I can devote more time to these causes.&quot; Click to read the full story'
theLinks[4] = 'stories/john-varallo.htm'

theImages[5] = 'images/main/index-top-wennberg-miller.jpg'
theAlts[5] = '&quot;This is the most challenging and rewarding project we have ever been a part of. The courage and spirit to face HIV were inspiring. Huge pieces of our hearts remain in Semonkong.&quot; Click to read the full story'
theLinks[5] = 'stories/wennberg-miller.htm'

// 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 = theImages[i]
}
var whichOne = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<a href="'+theLinks[whichOne]+'"><img border="0" src="'+theImages[whichOne]+'" alt="'+theAlts[whichOne]+'" title="'+theAlts[whichOne]+'"></a>');
}

//  End -->
