$(function(){
  // navigation tabs
  $("div.tabs ul li").hover(function(){
      $(this).css("background-color", "#fc0");
      $(this).find("a").css("color", "#00275E").css("font-weight", "bold");
    },
    function(){
      $(this).css("background-color", "#00275E");
      $(this).find("a").css("color", "#fc0").css("font-weight", "bold");
    }
  );
});

