  function ustawTytul()
  {
    x=Math.floor(Math.random() * ($("html").width()-892) )+20;
    y=Math.floor(Math.random() * 70)+20;

//    $("div.title span").css("padding-left", x+"px");
//    $("div.title").css("padding-top", y+"px");
    $("div.title span").animate({ left: x, top: y}, 200);
  }

  $(document).ready(function(){
    title = setInterval("ustawTytul()", 10000);
    ustawTytul();

    if(!$.browser.msie)
    {
      $("div.sub:first").addClass("pierwszysub");
      $("div.sub:not(:first)").addClass("niepierwszysub");
      Nifty('div.content', 'bottom transparent');
      Nifty('div#dno', 'top transparent');
      Nifty('div.niepierwszysub', 'transparent');
      Nifty('div.pierwszysub', 'bottom transparent');
      $("div#logo div.logo").css('background-image', "url('/files/logo.png') !important");
      $("div#logo div.hamburger").css('background-image', "url('/files/hamburger.png') !important");
    }

    $("div.avatar img").each(function(){
      $(this).attr('title', ($(this).attr('alt')=='Złoichuj')?'Ten tekst został napisany wspólnymi siłami ekipy ZŁOiCHUJ':$(this).attr('alt')+' jest autorem tego wpisu').wrap('<a href="/autorzy/#'+$(this).attr('alt')+'"></a>');
      
    });
  });
