var getTestimonial = new Array();
var getWhoSaidIt = new Array();

getTestimonial[0] = "&ldquo;At times, I thought there was no hope for my future. Now there's a future for me!&rdquo;";
getTestimonial[1] = "&ldquo;Hope has a ripple affect....by helping me, HomeStep helped five others who have become good citizens... You affected not only me, but my children and - in years to come - my children's children.&rdquo;";
getTestimonial[2] = "&ldquo;Going to college and finding work was very important to me. My case manager encouraged and supported me in many ways and now I have succeeded.&rdquo;";

getWhoSaidIt[0] = "Denise, former HomeStep client";
getWhoSaidIt[1] = "Sheila, former HomeStep client, reflecting back 10 years after leaving HomeStep's program";
getWhoSaidIt[2] = "Linda, former HomeStep client";

function loadTestimonial()
{
	var ranNum = Math.floor(Math.random()*(getTestimonial.length));
	document.getElementById("q1").innerHTML = getTestimonial[ranNum];
	document.getElementById("q2").innerHTML = getWhoSaidIt[ranNum];
}