//<--
function random_features(){
var mycontent=new Array()
//specify random content below.

mycontent[1]='<img src="/images/testimonials/success_story_nav1.jpg" alt="" width="150" height="136" hspace="0" vspace="0" border="0">'
mycontent[2]='<img src="/images/testimonials/success_story_nav2.jpg" alt="" width="150" height="136" hspace="0" vspace="0" border="0">'
mycontent[3]='<img src="/images/testimonials/success_story_nav3.jpg" alt="" width="150" height="136" hspace="0" vspace="0" border="0">'
mycontent[4]='<img src="/images/testimonials/success_story_nav4.jpg" alt="" width="150" height="136" hspace="0" vspace="0" border="0">'
mycontent[5]='<img src="/images/testimonials/success_story_nav5.jpg" alt="" width="150" height="136" hspace="0" vspace="0" border="0">'

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_features()
//-->