$(function() {

  $('ul#navi li:not(.aktiv)').hover(
    function(){
      try {
        _img = $("img:first", $(this));
        _img.attr('src', _img.attr('src').replace('nav_','nav_ak_') );
//        $("ul", $(this)).slideDown('fast');
      } catch(e){}
    },
    function(){
      try {
        _img = $("img:first", $(this));
        _img.attr('src', _img.attr('src').replace('nav_ak_','nav_') );
//        $("ul", $(this)).slideUp('fast');
      } catch(e){}
    }
  );
});
