$(document).ready(function(){
  $("#h-nav ul li a img").load(function () {
      $("<img>").attr("src", this.src.replace('-off', '-on'));
    }
  );

  $("#h-nav ul li a img").hover(function () {
      this.src = this.src.replace('-off', '-on');
    }, function () {
      this.src = this.src.replace('-on', '-off');
    }
  );
});
