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

  highlight_menu();

  $('.map').maphilight();
});

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

function popup(mylink, windowname)
{
  if (! window.focus)return true;
  var href;
  if (typeof(mylink) == 'string')
    href=mylink;
  else
    href=mylink.href;
  window.open(href, windowname, 'width=500,height=500,scrollbars=yes');
  return false;
}

