$(function() {
  imageRotator();
});

function imageRotator() {
  if($('#bannerItems').length > 0) {
    $('#bannerItems').cycle({
      fx: 'fade',
      timeout: 8000,
      pause: 1,
      speed: 'slow'
    });
  }
}
