var myBanner1 = new BannerRotator();
myBanner1.add('http://my.cruisebrothers.com/travel/cruise/search.rvlx?DestinationID=7&cruise_month=0&cruise_year=2010&cruise_duration=0-9999&VendorID=4&PIN=HALpic','http://www.cruisebrothers.com/images/home/HAL-Bermuda.jpg');
myBanner1.add('http://my.cruisebrothers.com/travel/cruise/search.rvlx?DestinationID=45&cruise_month=0&cruise_year=2010&cruise_duration=0-9999&VendorID%5B%5D=2&PIN=CELBDA','http://www.cruisebrothers.com/images/home/CEL-BDA-649.jpg');
myBanner1.add('http://my.cruisebrothers.com/travel/cruise/search.rvlx?DestinationID=45&cruise_month=1&cruise_year=2010&cruise_duration=7-9&VendorID%5B%5D=8&portid=334','http://www.cruisebrothers.com/images/home/OasisSaleNov09.jpg');
myBanner1.add('http://cabincloseouts.cruisebrothers.com/travel/cruise/search.rvlx?DestinationID=22&cruise_month=3&cruise_year=2010&cruise_duration=7-10&VendorID=16&PIN=CostaCChom','http://www.cruisebrothers.com/images/home/CostaMed.jpg');
myBanner1.add('http://my.cruisebrothers.com/travel/cruise/search.rvlx?DestinationID=45&cruise_month=4&cruise_year=2010&cruise_duration=7-9&VendorID%5B%5D=8&PIN=RCCLPic','http://www.cruisebrothers.com/images/home/RCCLFamilyGeneric.jpg');
myBanner1.timer = 5;// 5 secs between images

// Set-up display

addLoadEvent(function(){
  myBanner1.bind('banner1');// match to ID of element.
  myBanner1.startTimer();
});

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}
