<!-- // BannerAD

   var bannerAD=new Array();
   var bannerADlink=new Array();
   var adNum=0;

   bannerAD[0]="slideshow/pater-office.jpg";
   bannerADlink[0]="rental-search.php";
   bannerAD[1]="slideshow/granary-rear.jpg";
   bannerADlink[1]="rental-search.php";
   bannerAD[2]="slideshow/d-wheaton.jpg";
   bannerADlink[2]="rental-search.php";
   bannerAD[3]="slideshow/le_townhouse.jpg";
   bannerADlink[3]="rental-search.php";
   bannerAD[4]="slideshow/e-ryan.jpg";
   bannerADlink[4]="rental-search.php";
   bannerAD[5]="slideshow/coach-run.jpg";
   bannerADlink[5]="rental-search.php";
   bannerAD[6]="slideshow/sunrise-east.jpg";
   bannerADlink[6]="rental-search.php";
   bannerAD[7]="slideshow/f-peera.jpg";
   bannerADlink[7]="rental-search.php";
   bannerAD[8]="slideshow/bartlett-brook-sign.jpg";
   bannerADlink[8]="rental-search.php";

   var preloadedimages=new Array();
   for (i=1;i<bannerAD.length;i++){
      preloadedimages[i]=new Image();
      preloadedimages[i].src=bannerAD[i];
   }

function setTransition(){
   if (document.all){
      bannerADrotator.filters.revealTrans.Transition=Math.floor(Math.random()*23);
      bannerADrotator.filters.revealTrans.apply();
   }
}

function playTransition(){
   if (document.all)
      bannerADrotator.filters.revealTrans.play()
}

function nextAd(){
   if(adNum<bannerAD.length-1)adNum++ ;
      else adNum=0;
   setTransition();
   document.images.bannerADrotator.src=bannerAD[adNum];
   playTransition();
   theTimer=setTimeout("nextAd()", 5000);
}

function jump2url(){
   jumpUrl=bannerADlink[adNum];
   jumpTarget='';
   if (jumpUrl != ''){
      if (jumpTarget != '')window.open(jumpUrl,jumpTarget);
      else location.href=jumpUrl;
   }
}
function displayStatusMsg() { 
   status=bannerADlink[adNum];
   document.returnValue = true;
}

//-->