navList = function() {
  $('#nav > ul > li').mouseover(function(){
    $(this).toggleClass("hover");
  }).mouseout(function(){
    $(this).toggleClass("hover");
  });;
};

$(document).ready(function(){
  $("#tabs").tabs({
    // skip_first_tab: true
  });
  navList();
});

