function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<a href="order.htm"><img src="http://www.flyingflea.com/images/star_entry50.gif" width="140" height="114" border="0"></a>'
mycontent[2]='<a href="order.htm"><img src="http://www.flyingflea.com/images/star_high150.gif" width="140" height="114" border="0"></a>'
var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()