$(document).ready(function() {
  switchFeatured();
  setInterval(switchFeatured, 8000);
});

function switchFeatured() {
  var b = $('.featured-business-active');
  var image = $('.featured-bullet-active');
  var next_image = (image.length && image.next('img').length)?
    image.next('.featured-bullets img') :
    $('.featured-bullets img:first-child');
  

  if(b.length && b.next('.featured-business').length) {
    b.removeClass('featured-business-active').next('.featured-business').addClass('featured-business-active');
//    image.removeClass('featured-bullet-active').next('.featured-bullets img').addClass('featured-bullet-active');
  }
  else {
    b.removeClass('featured-business-active');
    $('.featured-business:first-child').addClass('featured-business-active');
//    image.removeClass('featured-bullet-active');
//    $('.featured-bullets img:first-child').addClass('featured-bullet-active');
  }
  $('.featured-business-active .featured-introduction').ThreeDots({max_rows: 12});
  $('.featured-bullets img').removeClass('featured-bullet-active').attr('src', '/images/bullet.png');
  next_image.addClass('featured-bullet-active').attr('src', '/images/bullet_active.png');
  //alert($('.featured-bullet-active').length);
}
