function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<b><a href="testimonials.htm"><img src="images/testimonials/1.jpg" border="none"></b>'
mycontent[2]='<b><a href="testimonials.htm"><img src="images/testimonials/2.jpg" border="none"></b>'
mycontent[3]='<b><a href="testimonials.htm"><img src="images/testimonials/3.jpg" border="none"></b>'

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()