adrotation = new Array ("/ads/trenchesw.gif","/ads/greengrokw.gif")

adURL = new Array ("/insider/trenches/","/insider/thegreengrok/")


adrotation2 = new Array ("/ads/sp09.mag1.gif", "/ads/durhamplay.gif")

adURL2 = new Array ("/dukenvironment/sp09/economy","http://www.youtube.com/watch?v=hrD8Ue4Bm9g")


imgCt = adrotation.length

imgCt2 = adrotation2.length

function chooseAd() {
  if (document.images) {
  randomNum = Math.floor ((Math.random()* imgCt))
  document.ad.src = adrotation[randomNum]
}
}

function chooseAd2() {
  if (document.images) {
  randomNum2 = Math.floor ((Math.random()* imgCt2))
  document.ad2.src = adrotation2[randomNum2]
}
}

function newLocation() {
   document.location.href = adURL[randomNum]
}

function newLocation2() {
   document.location.href = adURL2[randomNum2]
}