// JavaScript Document
function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<a href="store/index.php"><img src="images/postcard1.jpg" width="363" height="252" border="0" /></a>'
mycontent[2]='<a href="store/index.php"><img src="images/postcard2.jpg" width="363" height="252" border="0" /></a>'

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()