function RunBannerRandom()
{

var images=new Array(5)

images[0]="<a href = '/success_stories/spotlight_tiber.cfm'><img src='/images/successstories/adriana.jpg' alt='Adriana DeLuca and Michelle Lalonde' border='0'  width='231' height='136' align='bottom'></a>";

images[1] = "<a href = '/success_stories/spotlight_barbara.cfm'><img src='/images/successstories/barbara.jpg' alt='Barbara O'Hara'  border='0' width='231' height='136' align='bottom'></a>";

images[2] = "<a href = '/success_stories/spotlight_karla.cfm'><img src='/images/successstories/karla.jpg' alt='Karla Dueck Thiessen' border='0'  width='231' height='136' align='bottom'></a>";

images[3] = "<a href = '/success_stories/spotlight_lori.cfm'><img src='/images/successstories/lori.jpg' alt='Lori Mitchell' border='0' width='231' height='136' align='bottom'></a>";

images[4] = "<a href = '/success_stories/spotlight_rebecca.cfm'><img src='/images/successstories/rebecca.jpg' alt='Rebecca McCormack' border='0' width='231' height='136' align='bottom'></a>";

index = Math.floor(Math.random() * images.length);
z
document.write(images[index]);
}




