var theImages = ["sl_1.jpg","sl_2.jpg","sl_3.jpg"];
var theQuotes = ["When a student has been given a chance to really contribute something useful in a way that makes a real difference to someone, the learning becomes so much more vibrant and relevant and exciting.","The Service-Learning project allowed me, as an instructor, to promote concepts which went beyond programming: teamwork, communication, diplomacy, and compromise.","If I can give students the ability to not only apply what they have learned, but apply what they learn in a way that makes the world a better place to live, I have optimized what education is really all about."];

function showImage(){
document.writeln("<img src=\"images/"+ theImages[Math.floor(Math.random()*3)] +"\" />");

}

function randQuote(){


document.getElementById('rQuote').innerHTML = theQuotes[Math.floor(Math.random()*3)];
}