adrotation = new Array ("/ads/resumebook.gif")

adURL = new Array ("/career/resumes2008/index.html")


adrotation2 = new Array ("/ads/2009internships.gif")

adURL2 = new Array ("/careerservices/2009internships")


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]
}