jQuery(document).ready(function($)
{
  $(".reklamka a:first").fadeIn("slow");
  timer = setInterval(function()
  {
    $(".reklamka a").each(function() 
    {
      if($(this).css("display") != "none")
      {
        $(this).stop(true, true).fadeOut("fast", function()
        {
          var element = $(this).next();
          if(element.length == 0) element = $(".reklamka a:first");
          element.fadeIn("slow");
        });
      }
    }); 
  }, 10000);
  
});
