function randImgCap()
{
var banner = new Array();
banner[0] ="/images/johndrake-2006.jpg"
banner[1] ="/images/testimonial/LisaCarlesso.jpg"
banner[2] ="/images/testimonial/Parnaby.jpg"
banner[3] ="/testimonials/okolisan.jpg"
banner[4] ="/images/testimonial/harrington.jpg";

var caption = new Array();
caption[0] = "Professional and attentive service delivered in a warm and friendly way. I have dealt with Gia before and will continue to do so in the future!"
caption[1] = "Hands down Gia is the best agent I have worked with. Very personable and professional. Buying a house has never been so fun! G is the bomb!"
caption[2] = "Gia was simply fantastic. Professional, polite and fun to work with. Gia Rocks!"
caption[3] = "Jess was fantastic about keeping us updated, even if there was no update. She also was great at answering all questions and following up on leads."
caption[4] = "We have sold seven houses in the past 18 years and Gia was by far the best agent we have used to date.  Thanks Gia!";
random = Math.floor(Math.random() * banner.length);
document.getElementById ('randomImage').src = banner[random];
document.getElementById ('caption').innerHTML = caption[random];
}