

function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='1'
mycontent[2]='2'
mycontent[3]='3'
mycontent[4]='4'
mycontent[5]='5'
mycontent[6]='6'
mycontent[7]='7'
mycontent[8]='8'


var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write('<img src="/images/headers/0');
document.write(mycontent[ry]);
document.write('.jpg" alt="Gelarmony" width="750" height="114" border="0" />')
}
random_content()
