function random_content(){
var mycontent=new Array()
mycontent[1]=''
mycontent[2]=''
mycontent[3]=''
mycontent[4]=''
mycontent[5]=''
mycontent[6]=''
var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()