

/*
Random Content Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
*/

function random_content(){
var mycontent=new Array()



//specify random content below.
mycontent[1]='<embed src=flash/geo1.swf width=780 height=200></embed>'
mycontent[2]='<embed src=flash/geo2.swf width=780 height=200></embed>'
mycontent[3]='<embed src=flash/geo3.swf width=780 height=200></embed>'
mycontent[4]='<embed src=flash/geo4.swf width=780 height=200></embed>'
mycontent[5]='<embed src=flash/geo5.swf width=780 height=200></embed>'

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()
