    
  $(function()
  {
    
    
    $("#nav li").hover
    (
      function(){
        $(this).addClass("sfhover");
      },
      function(){
        $(this).removeClass("sfhover")
      }
    );
    
    
    
    $('.timestamp').css('display', 'none');
    $('.tile, .info').hover(
      function(){
        $(this).children('.timestamp').show('slow');
      },
      function(){
      }
    );
  })
  
    function czyscSzukaj(AInput, val)
    {
        if (AInput.value == val)
        {
            AInput.value = '';
        }
        return true;
    }
