$(document).ready(function(){ 

  /* PNG-Fix für Internet Explorer <7 */
  if ($.browser.msie && $.browser.version < 7) {
    $.ifixpng('/js/img/pixel.gif');
    $('img[@src$=.png]').each(function() {
      if ($(this)[0].complete) {
        $(this).ifixpng();
      } else {
        $(this).load(function(){$(this).ifixpng();})
      }
    });
  }

  /* Rollover-Bilder (bitte wenn möglich auf Bereiche einschränken) */
  $('img[@src$=.png]').rollover();
  $('img[@src$=.gif]').rollover();

  
  /* enter button bei der suche bei stores */
  $("body#stores input[name=text]").keypress(function (e) {
      if (e.which == 13) {
        document.forms[0].submit();
      }
    });


});
