var RandImgs = new Array()

RandImgs[1] = "/content/upload/AssetMgmt/Images/left_home1.gif"
RandImgs[2] = "/content/upload/AssetMgmt/Images/left_home2.gif"
RandImgs[3] = "/content/upload/AssetMgmt/Images/left_home3.gif"
RandImgs[4] = "/content/upload/AssetMgmt/Images/left_home4.gif"
RandImgs[5] = "/content/upload/AssetMgmt/Images/left_home5.gif"


var rnd = Math.floor(Math.random() * RandImgs.length)
if (rnd == 0) {
  rnd = 1
}
document.write("<img src='"+RandImgs[rnd]+"' border=0>")

