/**/

var sync_4815162342 = function()
{
this.urls = [
[0, "http://pixel.mathtag.com/misc/img?mt_id=0&mt_adid=0&mop_seq=0:5&mt_cb=869952&mop_top="],
[13, "http://ib.adnxs.com/getuid?http://sync.mathtag.com/sync/img?mt_exid=13&mt_mminit=1&mt_exuid=$UID"],
[0, "http://pixel.mathtag.com/misc/img?mt_id=0&mt_adid=0&mop_seq=1:5&mt_cb=804050&mop_top=13:1422368658|"],
[5, "http://us-u.openx.net/w/1.0/sd?id=536872786&val=0f4254c7-5f83-4500-b9eb-0c7d4fe2a17a"],
[0, "http://pixel.mathtag.com/misc/img?mt_id=0&mt_adid=0&mop_seq=2:5&mt_cb=392980&mop_top=13:1422368658|5:1422368658|"],
[10, "http://ads.yahoo.com/pixel?id=2172018&t=2&piggyback=http%3A%2F%2Fads.yahoo.com%2Fcms%2Fv1%3Fesig%3D1~444de053567fa80a3054a1981c8febcf1176dd9d%26nwid%3D10000355603%26sigv%3D1"],
[15, "http://r.casalemedia.com/rum?cm_dsp_id=3&external_user_id=0f4254c7-5f83-4500-b9eb-0c7d4fe2a17a"],
[11, "http://bh.contextweb.com/bh/rtset?do=add&pid=530739&ev=0f4254c7-5f83-4500-b9eb-0c7d4fe2a17a"],
[0, "http://pixel.mathtag.com/misc/img?mt_id=0&mt_adid=0&mop_seq=5:5&mt_cb=491401&check=0f4254c7-5f83-4500-b9eb-0c7d4fe2a17a&mop_top=13:1422368658|5:1422368658|10:1422368658|15:1422368658|11:1422368658|"]
]

   this.progress = 0;

   var self = this;

   var tims = "";
   var errs = "";

   this.sync = function(i)
   {
       var e = document.createElement("img");

       var now = new Date();


       if (e.addEventListener)
       {
	   e.addEventListener('load', function() {
	       var temp = new Date().getTime() - now.getTime(); tims += self.urls[i][0]+':'+temp+"|";
	   });

	   e.addEventListener('error', function() {
	       var temp = new Date().getTime() - now.getTime(); errs += self.urls[i][0]+':'+temp+"|";
	   });
       }

       e.src = self.urls[i][1];
   }

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

   this.final = function()
   {
      var e = document.createElement("img");
      e.src = self.urls[self.urls.length-1][1]+"&final&timings="+tims+"&errors="+errs;
   }

   this.some = function(howmany)
   {
      var count = 0;
      for (var i = self.progress; i < self.urls.length && count < howmany; ++i)
      {
         self.sync(i);
	 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);

