﻿function addRssTracker (strRssUrl)
  {
  var strRssUrl = strRssUrl || "http://feeds.feedburner.com/alik-kirillovich";
  Sizzle ("a[href="+ strRssUrl +"]").forEach (function (aRSS)
    {
    aRSS.onclick = function ()
      {
      //alert (strRssUrl);
      pageTracker._trackPageview(strRssUrl);
      }
    });
  }
