$(document).ready(function() {
  $(".chzn-select").chosen();
  $(".sf-menu").superfish({
    autoArrows: false,
    dropShadows: false
  });
  
  H5F.setup($("form"));

  $("#slides .content").cycle({
    fx: 'fade',
    speed: 1500,
    timeout: 6000
  });

  $("#control .next").click(function() { $("#slides .content").cycle("next") });
  $("#control .prev").click(function() { $("#slides .content").cycle("prev") });

  $("#testimonial").cycle({
    fx: 'fade',
    timeout: 10000
  });
  $(".sidebar .up a").click(function() { $("#testimonial").cycle("next") });
  $(".sidebar .down a").click(function() { $("#testimonial").cycle("prev") });

  /* IE8 #call fix */
  $(".ie8 #call").hover(function () {
    $(this).addClass("ie8-call");
  }, function () {
    $(this).removeClass("ie8-call");
  });
});

