$(document).ready(function () { 
  $('#suche_text').focus(
    function() {
      $(this).css('color', '#000');
      if ($(this).val() == 'Suche' || $(this).val() == 'Search') $(this).val('');
    }
  ).blur(
    function() {
      $(this).css('color', '#999');
    }
  );

  $('#suche_img').hover(
    function() {
      $(this).attr('src', '/de/images/go_on.gif');
    },
    function() {
      $(this).attr('src', '/de/images/go.gif');
    }
  ).click(
    function() {
      $('#f_suche').submit();
    }  
  );

  $('#n4_up').hover(
    function() {
      $(this).attr('src', '/images/up_on.gif');
    },
    function() {
      $(this).attr('src', '/images/up_off.gif');
    }
  );

  $('#n4_down').hover(
    function() {
      $(this).attr('src', '/images/down_on.gif');
    },
    function() {
      $(this).attr('src', '/images/down_off.gif');
    }
  );

  $('a #page_up').hover(
    function() {
      $(this).attr('src', '/images/up_on.gif');
    },
    function() {
      $(this).attr('src', '/images/up_off.gif');
    }
  );

  $('a #page_down').hover(
    function() {
      $(this).attr('src', '/images/down_on.gif');
    },
    function() {
      $(this).attr('src', '/images/down_off.gif');
    }
  );

  $('#sitemap').click(
    function() {
      openorfocus_sitemap();
      return false;
    }
  );

  $('#datenschutzhinweis').click(
    function() {
      openorfocus_datenschutzhinweis();
      return false;
    }
  );
});

