// JavaScript Document
<script language="JavaScript">
<!-- go to j-scripts.com
var thePics = new Array()

thePics[1] = "/images/rotate/background1.jpg"
thePics[2] = "/images/rotate/background2.jpg"
thePics[3] = "/images/rotate/background3.jpg"
thePics[4] = "/images/rotate/background4.jpg"
thePics[5] = "/images/rotate/background5.jpg"
thePics[6] = "/images/rotate/background6.jpg"
thePics[7] = "/images/rotate/background7.jpg"
thePics[8] = "/images/rotate/background8.jpg"
thePics[9] = "/images/rotate/background9.jpg"
thePics[10] = "/images/rotate/background10.jpg"
thePics[11] = "/images/rotate/background11.jpg"
thePics[12] = "/images/rotate/background12.jpg"
thePics[13] = "/images/rotate/background13.jpg"
thePics[14] = "/images/rotate/background14.jpg"
thePics[15] = "/images/rotate/background15.jpg"

var rn = Math.floor(Math.random() * thePics.length)
if (rn == 0) {
  rn = 1
}
document.write("<img src='"+thePics[rn]+"' border=0>")
//-->
</script>