<!--
function random_image(){
var pict=new Array()
pict[1]='<img src="images/small01.jpg" border="0" width="150" height="150">'
pict[2]='<img src="images/small02.jpg" border="0" width="150" height="150">'
pict[3]='<img src="images/small03.jpg" border="0" width="150" height="150">'
pict[4]='<img src="images/small04.jpg" border="0" width="150" height="150">'
pict[5]='<img src="images/small05.jpg" border="0" width="150" height="150">'
pict[6]='<img src="images/small06.jpg" border="0" width="150" height="150">'
pict[7]='<img src="images/small07.jpg" border="0" width="150" height="150">'
pict[8]='<img src="images/small08.jpg" border="0" width="150" height="150">'
pict[9]='<img src="images/small09.jpg" border="0" width="150" height="150">'
pict[10]='<img src="images/small10.jpg" border="0" width="150" height="150">'
pict[11]='<img src="images/small11.jpg" border="0" width="150" height="150">'
pict[12]='<img src="images/small12.jpg" border="0" width="150" height="150">'
pict[13]='<img src="images/small13.jpg" border="0" width="150" height="150">'
pict[14]='<img src="images/small14.jpg" border="0" width="150" height="150">'
pict[15]='<img src="images/small15.jpg" border="0" width="150" height="150">'
pict[16]='<img src="images/small16.jpg" border="0" width="150" height="150">'
pict[17]='<img src="images/small17.jpg" border="0" width="150" height="150">'
pict[18]='<img src="images/small18.jpg" border="0" width="150" height="150">'

var rand=Math.floor(Math.random()*pict.length)
if (rand==0)
rand=1
document.write(pict[rand])
}
random_image()
//-->
