function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="<img src=\"/ob-gyn/divisions/maternal-fetal-medicine/Genetics/images/img-banner.jpg\" border=0 alt=\"Reproductive Genetics\">"
myimages[2]="<img src=\"/ob-gyn/divisions/maternal-fetal-medicine/Genetics/images/img-banner2.jpg\" border=0 alt=\"Reproductive Genetics\">"
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write(myimages[ry])
}
random_imglink()

