$(document).ready(function(){

    //wyszukiwarka
    $('#searcher input[name=q]').addClass('hint');
    $('#searcher input[name=q]').val($('#searcher input[name=q]').attr('title'));
    
    $('#searcher input[name=q]').focus(function() {
      if ($(this).val() == $(this).attr('title')) {
        $(this).val('');
      }
      $(this).removeClass('hint');    
    });
    
    $('#searcher input[name=q]').blur(function() {
      if ($(this).val() == "") {
        $(this).addClass('hint');
        $(this).val(
          $(this).attr('title')
        );
      }   
    });
    
    $(".newsTicker").newsticker();
    
});

