$(document).ready(function(){
  
  $("#header_menu ul li a").hover(
    function () {
      $('ul', this).show(),
      $(this).attr("class" , "hover");
    },
    function () {
      $('ul', this).hide(),
      $(this).attr("class" , "");
    }
  );
  
});

