$(document).ready(function() {
  $('#archive-search').focus(function() { if ($(this).val() == 'Wyszukaj...') $(this).val(''); });
  $('#archive-search').blur(function() { if ($(this).val() == '') $(this).val('Wyszukaj...'); });
  
  $('#slides').tabs({
    fx: {opacity:'toggle', duration:'normal'}
  }).tabs( "rotate" , 5000 , true );
  $('#tabs').tabs();
  
  $('#contactWrapper').mouseover(function() {
    $('#contactWrapper form')
      .css({'display':'block'}, {
        duration:'slow'
      });
  });
  $('#contactWrapper').mouseout(function() {
    $('#contactWrapper form')
      .css({'display':'none'}, {
        duration:'slow'
      });
  });
});