    
  $(function()
  {
    $(".hide-me").css('display', 'none');
    
    
    $("#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 show_hide(id)
	{
		$("#" + id).toggleClass("show-me");
    $("#" + id + "_a").toggleClass("hide-me");
	}
  
    function czyscSzukaj(AInput, val)
    {
        if (AInput.value == val)
        {
            AInput.value = '';
        }
        return true;
    }
