$(document).ready(function(){
   var change = false;

   $('#header div:first a').hover(function(){
      change = true;
      var id = $(this).attr("id");

      $('#submenu ul').css('display', 'none');
      $('#header div:first a').removeAttr("class");
      $(this).attr("class", id+"H");
      $('#submenu #'+id+'Sub').show();
   });

   $('#content').hover(function(){
      if (change)
      {
         change = false;
         $('#header div:first a').each(function(){
            $(this).removeAttr("class");
            var temp = $(this).attr("rel");

            if (temp)
            {
               var id = $(this).attr("id");
               $(this).attr("class", id+"H");
            }
         });
         $('#submenu ul').css('display', 'none');
         $('#submenu .current').show();
      }
   });
});

