$(document).ready(function() {
  $(".tabs").tabs();
  $(".rollover").rollover(true);
  $("ul.sf-menu").superfish({
    animation: { opacity: 1, height: "show" },
    autoArrows: false
  });

highlight_menu();

});

function highlight_menu() {
  var active = $("a[href="+window.location.pathname+"]");
  active.parents("li").addClass("active");
  active.parents(".bluebutton").addClass("active");
}

