
var num_heros = $('#hero-carousel').children().length;
$(document).ready(function() {
  $('#hero-carousel').cycle({
    before: function(carousel, li, index, state) {
      var hero = (index-1)%num_heros+1;
    },
    fx: 'fade',
    nowrap: 0,
    timeout: 6000,
    speed: 'slow',
    activePagerClass: 'activeSlide',
    pager: '#hero-pager',
    pauseOnPagerHover: 1
  });
    createDropDown("specialty", true, 16);
    createDropDown("office", true, 16);
    createDropDown("insurance", true, 16);
		$("#hero").addClass("shown");
});
