<!--

function random_content(){

var mycontent=new Array()

//specify random content below.

mycontent[1]='<img src="images/random_pinkrose.jpg" width="160" alt ="Garden Divas" border="1" />'

mycontent[2]='<img src="images/random_bluecampanula.jpg" width="160" alt ="Garden Divas" border="1" />'

mycontent[3]='<img src="images/random_aliumhead.jpg" width="160" alt ="Garden Divas" border="1" />'

mycontent[4]='<img src="images/random_roses1.jpg" width="160" alt ="Garden Divas" border="1" />'

mycontent[5]='<img src="images/random_roses2.jpg" width="160" alt ="Garden Divas" border="1" />'

var ry=Math.floor(Math.random()*mycontent.length)

if (ry==0)

ry=1

document.write(mycontent[ry])

}

random_content()

//-->
