function random_content(){
var mycontent=new Array()
mycontent[1]='<img src="/images/image1.jpg" alt="Ameritas Variable Life Insurance Company" border="0">'
mycontent[2]='<img src="/images/image2.jpg" alt="Ameritas Variable Life Insurance Company" border="0">'
mycontent[3]='<img src="/images/image3.jpg" alt="Ameritas Variable Life Insurance Company" border="0">'
mycontent[4]='<img src="/images/image4.jpg" alt="Ameritas Variable Life Insurance Company" border="0">'
mycontent[5]='<img src="/images/image5.jpg" alt="Ameritas Variable Life Insurance Company" border="0">'
mycontent[6]='<img src="/images/image6.jpg" alt="Ameritas Variable Life Insurance Company" border="0">'
mycontent[7]='<img src="/images/image7.jpg" alt="Ameritas Variable Life Insurance Company" border="0">'
var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()