// JavaScript Document for EarSpace

adImagesEar = new Array("images/depear.gif",  "images/psbank1.gif", "images/ndepth.jpg", "images/dstear.gif")
adURLEar = new Array("bossdirectory.com/south_africa/deppw", "advertproof.com/psbank", "yebosa.com/housingdep", "yebosa.com/dst")

thisAdEar = 0
imgCtEar  = adImagesEar.length

function rotateEar() {
   if(document.images) {
     thisAdEar++
     if(thisAdEar == imgCtEar) {
       thisAdEar = 0
     }
     document.adBannerEar.src = adImagesEar[thisAdEar]
     setTimeout("rotateEar()", 5 * 1000)
   }
 }
 
 function newLocationEar() {
    document.location.href = "http://www."+ adURLEar[thisAdEar]
  }
  
 function navi(newLoc) {
   newPage = newLoc.options[newLoc.selectedIndex].value

   if(newPage != ""){
      window.location.href = newPage
   }
 }