/*************************************************************************
  This code is from Dynamic Web Coding at dyn-web.com
  Copyright 2001-5 by Sharon Paine 
  See Terms of Use at www.dyn-web.com/bus/terms.html
  regarding conditions under which you may use this code.
  This notice must be retained in the code as is!
*************************************************************************/

// for preloading images
imageHandler.path = "../images/ads/";
// put images to preload here
imageHandler.preload("at_banner_ad.jpg", "atr_banner_ad.jpg");

function initBanner() {
    if ( !document.getElementById ) return;
    // arguments: id, delay (amount of time in milliseconds you linger on each item)
    // set up pause onmouseover and resume onmouseout? (boolean) 
    var ban1 = new dw_Banner('banner_ads', 6000, true);
    // put your items here
   
   ban1.addItem('<a href="http://www.anchortrailways.com/" target="blank"><img src="../images/ads/at_banner_ad.jpg" width="648" height="137" alt="" border="0"></a>');
   
   ban1.addItem('<a href="http://www.atrunner.com/" target="blank"><img src="../images/ads/atr_banner_ad.jpg" width="649" height="137" alt="" border="0"></a>');
      
   ban1.rotate();  
   
   // Begin the rotation 
}

