document.write('<style type="text/css">.jshide{display:none;}</style>');

$(function()
{
  $('div.node > h2').addClass('title');

  /* {{{ pierwsze elementy
   */

    $('div.node:first').addClass('first-node');
    $('#comments>ol>li:first').addClass('comment-first');

    $('#content div.content>:first').each(function()
    {
      if (this.className !== '')
      {
        this.className += ' '+this.className.replace(/([a-z]) /g, '$1-first ')+'-first first';
      }
      else
      {
        this.className = 'first';
      }
    });

  /* }}} */
  // {{{ centrowanie

    $('.center ul:first').each(function()
    {
      var ul   = $(this);
      var div  = $(this.parentNode.parentNode.parentNode);
      var diff = Math.floor(div.width() - ul.width())/2;

      this.style.visibility = 'visible';
      this.style.marginLeft = diff+'px';
    });

  /* }}} */
})
