//<--
function random_features(){
var mycontent=new Array()
//specify random content below.

mycontent[1]='<img src="/images/testimonials/banner_sucessstories_home1.jpg" alt="" width="240" height="87" border="0">'
mycontent[2]='<img src="/images/testimonials/banner_sucessstories_home2.jpg" alt="" width="240" height="87" border="0">'
mycontent[3]='<img src="/images/testimonials/banner_sucessstories_home3.jpg" alt="" width="240" height="87" border="0">'
mycontent[4]='<img src="/images/testimonials/banner_sucessstories_home4.jpg" alt="" width="240" height="87" border="0">'


var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_features()
//-->