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=&cruise_month=0&cruise_year=2010&cruise_duration=0-9999&VendorID%5B%5D=59&PIN=VIKING','http://www.cruisebrothers.com/images/home/VikingEarlyBooking.jpg');
myBanner1.add('http://www.cruisebrothers.com/','http://www.cruisebrothers.com/images/home/VarietyGreece2010.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://my.cruisebrothers.com/travel/cruise/search.rvlx?DestinationID=2&cruise_month=5&cruise_year=2010&cruise_duration=7-9&VendorID=6&portid=352&PIN=HomePic','http://www.cruisebrothers.com/images/home/PrincessAlaska.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();
    }
  }
}
