//<--
function random_home(){
var mycontent=new Array()
//specify random content below.
mycontent[0]='<img src="images/i_story_1.gif" width="595" height="116" border="0">'
mycontent[1]='<img src="images/i_story_2.gif" width="595" height="116" border="0">'
mycontent[2]='<img src="images/i_story_3.gif" width="595" height="116" border="0">'
mycontent[3]='<img src="images/i_story_4.gif" width="595" height="116" border="0">'
mycontent[4]='<img src="images/i_story_5.gif" width="595" height="116" border="0">'
mycontent[5]='<img src="images/i_story_6.gif" width="595" height="116" border="0">'
mycontent[6]='<img src="images/i_story_7.gif" width="595" height="116" border="0">'
mycontent[7]='<img src="images/i_story_8.gif" width="595" height="116" border="0">'
mycontent[8]='<img src="images/i_story_9.gif" width="595" height="116" border="0">'
mycontent[9]='<img src="images/i_story_10.gif" width="595" height="116" border="0">'
mycontent[10]='<img src="images/i_story_11.gif" width="595" height="116" border="0">'

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_home()
//-->