$("document").ready(function() {
  $(".textinput").focus(function() {
    $(this).addClass("current");
  });

  $(".textinput").blur(function() {
    $(this).removeClass("current");
  });

  $("#navigation a:not(.current) img").hover(
    function() {
      foo = $(this).attr("src");
      foo = foo.replace('.gif', '_aktiviert.gif');
      $(this).attr("src", foo);
    }, 
    function() {
      foo = $(this).attr("src");
      foo = foo.replace('_aktiviert.gif', '.gif');
      $(this).attr("src", foo);
    });
});