<!--

function a()
{
var thePics = new Array()

thePics[1] = "images/banner_1.jpg"
thePics[2] = "images/banner_2.jpg"
thePics[3] = "images/banner_3.jpg"
thePics[4] = "images/banner_4.jpg"
thePics[5] = "images/banner_5.jpg"
thePics[6] = "images/banner_6.jpg"
thePics[7] = "images/banner_7.jpg"
thePics[8] = "images/banner_8.jpg"
thePics[9] = "images/banner_9.jpg"
thePics[10] = "images/banner_10.jpg"


var rn = Math.floor(Math.random() * thePics.length)
if (rn == 0) {
  rn = 1
}
document.write("<img src='"+thePics[rn]+"'"+" WIDTH=763 HEIGHT=122>")
}
//-->

