// JavaScript Document

function banner() {
};
 
  banner = new banner();
number = 0;

// bannerArray

banner[number++] = "<img src='images/testimonial_portraits/lynn.jpg' alt='portrait of lynn' /><div class='white_box'><p><strong>Lynn</strong><br/>Last year, I took a living well class that was offered where I work part time.<br/></p></div><p class='read_more'> <a class='read_more_link' href='testimonials.cfm#lynn'>Read more. . .</a> </p> "

banner[number++] = "<img src='images/testimonial_portraits/purple_flowers.jpg' alt='purple flowers' /><div class='white_box'><p><strong>Brent</strong><br/>A year and a half ago I got involved with an Independent Living (IL) center <br/></p></div><p class='read_more'> <a href='testimonials.cfm#brent'>Read more. . .</a> </p> "

banner[number++] = "<img src='images/testimonial_portraits/tree.jpg' alt='picture of a tree' /><div class='white_box'><p><strong>Lucy</strong><br/>The fellowship associated with Living Well workshops was the most important thing to me<br/></p></div><p class='read_more'> <a href=testimonials.cfm#lucy'>Read more. . .</a> </p> "

banner[number++] = "<img src='images/testimonial_portraits/purple_flowers.jpg' alt='purple flowers' /><div class='white_box'><p><strong>Heather</strong><br/>The Living Well Program helped me remember I am not the only one with a disability.<br/></p></div><p class='read_more'> <a href='testimonials.cfm#heather'>Read more. . .</a> </p> "

banner[number++] = "<img src='images/testimonial_portraits/tree.jpg' alt='picture of a tree' /><div class='white_box'><p><strong>Brian</strong><br/>Brian set out to increase his stamina through fitness, address neck pain, and rekindle his love of life.<br/></p></div><p class='read_more'> <a href='testimonials.cfm#brian'>Read more. . .</a> </p> "

banner[number++] = "<img src='images/testimonial_portraits/purple_flowers.jpg' alt='purple flowers' /><div class='white_box'><p><strong>Doris</strong><br/>'Living Well is indeed a remarkable program...' <br/></p></div><p class='read_more'> <a href='testimonials.cfm#doris'>Read more. . .</a> </p> "

// add more photos here

increment = Math.floor(Math.random() * number);

document.write(banner[increment]);

//-->