<!--
/*
Random Content Script
*/

function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<img src="images/secondary_logo_2.jpg" alt="" border="0" width="243" height="120" />'
mycontent[2]='<img src="images/secondary_logo_3.jpg" alt="" border="0" width="243" height="120" />'
mycontent[3]='<img src="images/secondary_logo_4.jpg" alt="" border="0" width="243" height="120" />'
mycontent[4]='<img src="images/secondary_logo_5.jpg" alt="" border="0" width="243" height="120" />'
mycontent[5]='<img src="images/secondary_logo_6.jpg" alt="" border="0" width="243" height="120" />'
mycontent[6]='<img src="images/secondary_logo_7.jpg" alt="" border="0" width="243" height="120" />'
mycontent[7]='<img src="images/secondary_logo_8.jpg" alt="" border="0" width="243" height="120" />'


var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()
//-->