function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="<a href=\"/highest-order/leading-way/christine.cfm\"><img src=\"/highest-order/images/img-banner-christine.jpg\" border=0 alt=\"Click to read Christine's story\"></a>"
myimages[2]="<a href=\"/highest-order/leading-way/jared.cfm\"><img src=\"/highest-order/images/img-banner-jared.jpg\" border=0 alt=\"Click to read Jared's story\"></a>"
myimages[3]="<a href=\"/highest-order/leading-way/cameron.cfm\"><img src=\"/highest-order/images/img-banner-cameron.jpg\" border=0 alt=\"Click to read Cameron's story\"></a>"
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write(myimages[ry])
}
random_imglink()