jQuery(document).ready(function(){
    
  jQuery('#h-search input')
    .focus(function() { 
      if (this.value == 'Szukaj w serwisie') {
        this.value = ''; 
      }
    })
    .blur(function() {
      if (this.value == '') {
          this.value = 'Szukaj w serwisie'; 
      }
    });

  jQuery('#newsletter')
    .focus(function() { 
      if (this.value == 'Podaj adres e-mail') {
        this.value = ''; 
      }
    })
    .blur(function() {
      if (this.value == '') {
          this.value = 'Podaj adres e-mail'; 
      }
    });

  jQuery("#partners a img").hover(function () {
      this.src = this.src.replace('-off', '-on');
    }, function () {
      this.src = this.src.replace('-on', '-off');
    }
  );

  if (jQuery.browser.safari) {
    jQuery('#h-search input')
      .attr({ type: "search", results: "10", autosave: "pl.com.peo.search" });
  }

});
