﻿window.onload = function() {
  initBanners();
}

function initBanners() {
  var settings = {
    globalShowTime: 2500,
    bannerSelector: ".banner",
    shiftStyle: "fade",
    fadefrontColor: "#ffffff",
    shiftSpeed: 3000,
    resizeSpeed: 500
  }

jQuery(document).ready(function() {
  jQuery(".contentBannerWrap .pidlink, #topBanner .pidlink").remove();
  jQuery("#topBannerWrap").startBannerShift(settings);
  jQuery(".contentBannerWrap").startBannerShift(settings);
});
}
