/**/

var sync_4815162342 = function()
{
this.urls = [
"https://pixel.mathtag.com/misc/img?mt_id=442390&mt_adid=109363&mop_seq=0:7&mt_cb=925440&mop_top=",
"https://us-u.openx.net/w/1.0/sd?id=536872786&val=adb65441-cae1-4b00-abb6-17a84919e20e",
"https://pixel.mathtag.com/misc/img?mt_id=442390&mt_adid=109363&mop_seq=1:7&mt_cb=905122&mop_top=5:1413718618|",
"https://r.casalemedia.com/rum?cm_dsp_id=3&external_user_id=adb65441-cae1-4b00-abb6-17a84919e20e",
"https://pixel.mathtag.com/misc/img?mt_id=442390&mt_adid=109363&mop_seq=2:7&mt_cb=258059&mop_top=5:1413718618|15:1413718618|",
"https://stags.bluekai.com/site/2948?id=adb65441-cae1-4b00-abb6-17a84919e20e",
"https://stags.bluekai.com/site/4448?id=adb65441-cae1-4b00-abb6-17a84919e20e",
"https://loadm.exelator.com/load/?p=204&g=101&buid=adb65441-cae1-4b00-abb6-17a84919e20e&j=0",
"https://ad.360yield.com/match?publisher_dsp_id=5&external_user_id=adb65441-cae1-4b00-abb6-17a84919e20e",
"https://analytics.twitter.com/i/adsct?p_user_id=adb65441-cae1-4b00-abb6-17a84919e20e&p_id=13524",
"https://pixel.mathtag.com/misc/img?mt_id=442390&mt_adid=109363&mop_seq=7:7&mt_cb=904921&check=adb65441-cae1-4b00-abb6-17a84919e20e&mop_top=5:1413718618|15:1413718618|10002:1413718618|10010:1413718618|10008:1413718618|16:1413718618|43:1413718618|",
]

   this.progress = 0;

   var self = this;

   this.sync = function(url)
   {
      var e = new Image();
      e.src = url;
   }

   this.batch = function()
   {
      for (var i = self.progress; i < self.urls.length; ++i)
      {
          self.sync(self.urls[i]);
      }
   }

   this.final = function()
   {
      self.sync(self.urls[self.urls.length-1]+"&final");
   }

   this.some = function(howmany)
   {
      var count = 0;
      for (var i = self.progress; i < self.urls.length && count < howmany; ++i)
      {
         self.sync(self.urls[self.progress++]);
         count++;
      }
   }
}


var s_4815162342 = new sync_4815162342();
s_4815162342.some(1);
setTimeout('s_4815162342.some(2)', 1000);
setTimeout(s_4815162342.batch, 3000);
setTimeout(s_4815162342.final, 10000);

