if (!window.Nagi)
	Nagi = function () {
		return {
			logo: {},
			pics: {},
			profile: {}
		};
	};

if (!window.Nagi.logo)
	Nagi.logo = {
		// vars
		'a': '',
		'img': '',
		'href': 'http://www.nagi.ee/',
		'src': 'http://www.nagi.ee/images/nagi/nagilogo.gif',
		'alt': 'Nagi',

		setA: function (val) {
			Nagi.logo.a = val;	
		},
		setImg: function (val) {
			Nagi.logo.img = val;	
		},
		show: function () {
			tmp = '<a href="'+Nagi.logo.href+'" id="NagiLink" '+Nagi.logo.a+'><img src="'+Nagi.logo.src+'" id="NagiLogo" alt="'+Nagi.logo.alt+'" border="0"' +Nagi.logo.img+' width="74" height="30" /></a>';
			document.write(tmp);
		}
	};


if (!window.Nagi.profile)
	Nagi.profile = {
		//vars
		'fname': 'Priit',
		'lname': 'Salumaa',
		'username': 'arstionu',
		'src': 'http://static1.nagi.ee/1/p/0/3/d679ac0f7ae248ee7acdee14d11288a2f5cf76e5.jpg/1283177467.jpg',
		'name': 'Priit Salumaa',
		'a': '',
		'img': '',


		setName: function(type) {
			switch (type) {
				case 'fname': 
						Nagi.profile.name = Nagi.profile.fname;
						break;
				case 'lname': 
						Nagi.profile.name = Nagi.profile.lname;
						break;
				case 'username': 
						Nagi.profile.name = Nagi.profile.username;
						break;
				case 'full': 
						Nagi.profile.name = Nagi.profile.fname + ' ' + Nagi.profile.lname + ' alias ' + Nagi.profile.username;
						break;
				case 'name': 
				default:
						Nagi.profile.name = Nagi.profile.fname + ' ' + Nagi.profile.lname;
						break;
			}
		},
		setA: function (val) {
			Nagi.profile.a = val;	
		},
		setImg: function (val) {
			Nagi.profile.img = val;	
		},
		show: function() {
			tmp = '<a href="http://keskus.ee/profile/arstionu/"' + '" id="NagiProfileLink'+'" '+Nagi.profile.a+'><img src="' + Nagi.profile.src + '" id="NagiProfileImage" alt="'+Nagi.profile.name+'" border="0"' + Nagi.profile.img+' /></a>';
			document.write(tmp);
		},
		showWithName: function() {
			tmp = '<a href="http://keskus.ee/profile/arstionu/"' + '" id="NagiProfileLink_showWithName'+'" '+Nagi.profile.a+'><img src="' + Nagi.profile.src + '" id="NagiProfileImage" alt="'+Nagi.profile.name+'" border="0"' + Nagi.profile.img+' /><span id=\"ProfileWithName\">'+Nagi.profile.name+ '</span></a>';
			document.write(tmp);
		},
		showName: function() {
			tmp = '<a href="http://keskus.ee/profile/arstionu/"' + '" id="NagiProfileLink_showName'+'" '+Nagi.profile.a+'><span id="profileName">'+Nagi.profile.name+ '</span></a>';
			document.write(tmp);
		}
};


if (!Nagi.pics)
	Nagi.pics = {
		// vars
		'total': 0,
		'timeout': 0,
		'stat': new Array(),
		'pics': new Array(),
		'randpics': new Array(),
		'count': 0,
		'start': 1,
		'streams': new Array(),
		'context': 0,
		'currentStream': -1,
		'a': '',
		'img': '',

		newContext: function() {
			id = Nagi.pics.streams.length;
			return(id);
		},
		saveContext: function() {
			id = Nagi.pics.context;
			Nagi.pics.streams[id] = {
					'total': Nagi.pics.total, 
					'pics': Nagi.pics.pics,
					'randpics': Nagi.pics.randpics,
					'count': Nagi.pics.count,
					'start': Nagi.pics.start,
					'a': Nagi.pics.a,
					'img': Nagi.pics.img
					};
			return(id);
		},
		setContext: function(id) {
			var old = Nagi.pics.saveContext();
			if (Nagi.pics.streams[id] != null) {
				Nagi.pics.total = Nagi.pics.streams[id].total;
				Nagi.pics.pics = Nagi.pics.streams[id].pics;
				Nagi.pics.randpics = Nagi.pics.streams[id].randpics;
				Nagi.pics.count = Nagi.pics.streams[id].count;
				Nagi.pics.start = Nagi.pics.streams[id].start;
				Nagi.pics.a = Nagi.pics.streams[id].a;
				Nagi.pics.img = Nagi.pics.streams[id].img;
			}else {
				Nagi.pics.total = 0;
				Nagi.pics.pics = new Array();
				Nagi.pics.randpics = new Array();
				Nagi.pics.count = 0;
				Nagi.pics.start = 1;
				Nagi.pics.a = '';
				Nagi.pics.img = '';
			}
			Nagi.pics.context = id;
			return(old);
		},

		firstContext: function() {
			if (Nagi.pics.streams.length > 0) {
				return(0);
			}else
				return(false);
		},

		lastContext: function() {
			if (Nagi.pics.streams.length > 0) {
				return(Nagi.pics.streams.length-1);
			}else
				return(false);
		},

		nextContext: function() {
			if (Nagi.pics.streams.length > Nagi.pics.context + 1) {
				return(Nagi.pics.context+1);
			}else
				return(false);
		},

		getContext: function() {
			return(Nagi.pics.context);
		},

		firstStream: function() {
			if (Nagi.pics.streams.length > 0) {
				Nagi.pics.currentStream = 0;
				Nagi.pics.setContext(Nagi.pics.currentStream);
				return(Nagi.pics.currentStream);
			}else
				return(false);
		},

		lastStream: function() {
			if (Nagi.pics.streams.length > 0) {
				Nagi.pics.currentStream = Nagi.pics.streams.length-1;
				Nagi.pics.setContext(Nagi.pics.currentStream);
				return(Nagi.pics.currentStream);
			}else
				return(false);
		},

		nextStream: function() {
			if (Nagi.pics.streams.length > Nagi.pics.currentStream + 1) {
				Nagi.pics.currentStream++;
				Nagi.pics.setContext(Nagi.pics.currentStream);
				return(Nagi.pics.currentStream);
			}else
				return(false);
		},

		add: function(href, alt, sq,t,s,m,l,o,id) {
			var src = new Array();
			src['sq'] = sq;
			src['t'] = t;
			src['s'] = s;
			src['m'] = m;
			src['l'] = l;
			src['o'] = o;
			Nagi.pics.pics[Nagi.pics.pics.length] = {src: src, href: href, alt: alt,id: id};
			Nagi.pics.total++;
		},
		setA: function (val) {
			Nagi.pics.a = val;	
		},
		setImg: function (val) {
			Nagi.pics.img = val;	
		},
		show: function(size, limit) {
			if (Nagi.pics.start > Nagi.pics.total) return;
			if (Nagi.pics.start + limit > Nagi.pics.total) limit = Nagi.pics.total - Nagi.pics.start + 1;
		
			this.showrange(size,Nagi.pics.start,limit);
			Nagi.pics.start += limit;
		},
		random: function(size, limit) {
			if (Nagi.pics.count >= Nagi.pics.total) return; // no pics left
			if (limit > Nagi.pics.total) limit = Nagi.pics.total;
			for (i=1;i<=limit;i++) {
				j = Math.round(Math.random()*(Nagi.pics.total-1)+1); // 1-100 not 0-100
				while (Nagi.pics.randpics[j] != null && Nagi.pics.count < Nagi.pics.total) {
					j = Math.round(Math.random()*(Nagi.pics.total-1)+1);
				}

				if (Nagi.pics.randpics[j] != null) break; // no pics left
				else {
					Nagi.pics.randpics[j] = j;
					Nagi.pics.count++;
				}
				this.write(size,j);
			}
		},
		showrange: function(size, start, limit) {
			if (start > Nagi.pics.total) return;
			if (start + limit > Nagi.pics.total) limit = Nagi.pics.total - start + 1;
			for (i=start;i<start+limit;i++) {
				this.write(size,i);
			}
		},
		write: function(size,index) {
			pic = Nagi.pics.pics[index-1];
			if (pic == null) return;
			Nagi.pics.stat[Nagi.pics.stat.length] = pic.id;
			tmp = '<a href="' + pic.href + '" id="NagiLink'+i+'" '+Nagi.pics.a+'><img src="' + pic.src[size] + '" id="NagiPic'+i+'" alt="'+pic.alt+'" border="0" '+Nagi.pics.img+' /></a>';
			document.write(tmp);

			// after 2.5 seconds send stat to nagi
			if (Nagi.pics.timeout) window.clearTimeout(Nagi.pics.timeout);
			Nagi.pics.timeout = window.setTimeout(Nagi.pics.sendstat,2500);
		},
		sendstat: function() {
			if (Nagi.pics.stat.length > 0) {
				var q = '';
				for (i=0;i<Nagi.pics.stat.length;i++)
					q += '&id[]='+Nagi.pics.stat[i];
				var query = '?act=addstat'+q;
				var uri = 'http://www.nagi.ee/services/stream/arstionu/popular/'+query;
				var tmp = new Image();
				tmp.src = uri;
				Nagi.pics.stat = new Array();
			}
		}
	};



var nagi_pics_id = Nagi.pics.newContext();
var nagi_pics_old_id = Nagi.pics.setContext(nagi_pics_id);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3262885/',
				'IMG_8003',
				'http://static1.nagi.ee/i/p/130/51/032628851332d1_sq.jpg',
				'http://static1.nagi.ee/i/p/130/51/032628851332d1_t.jpg',
				'http://static1.nagi.ee/i/p/130/51/032628851332d1_s.jpg',
				'http://static1.nagi.ee/i/p/130/51/032628851332d1_m.jpg',
				'http://static1.nagi.ee/i/p/130/51/032628851332d1_l.jpg',
				'http://static1.nagi.ee/i/p/130/51/032628851332d1_o.jpg',
				'3262885'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3262871/',
				'IMG_8001',
				'http://static1.nagi.ee/i/p/130/51/03262871e74d73_sq.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262871e74d73_t.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262871e74d73_s.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262871e74d73_m.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262871e74d73_l.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262871e74d73_o.jpg',
				'3262871'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3262831/',
				'IMG_7997',
				'http://static1.nagi.ee/i/p/130/51/03262831c01e26_sq.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262831c01e26_t.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262831c01e26_s.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262831c01e26_m.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262831c01e26_l.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262831c01e26_o.jpg',
				'3262831'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3262843/',
				'IMG_8000',
				'http://static1.nagi.ee/i/p/130/51/03262843efd107_sq.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262843efd107_t.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262843efd107_s.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262843efd107_m.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262843efd107_l.jpg',
				'http://static1.nagi.ee/i/p/130/51/03262843efd107_o.jpg',
				'3262843'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3262915/',
				'IMG_8011',
				'http://static1.nagi.ee/i/p/130/51/032629158be205_sq.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629158be205_t.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629158be205_s.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629158be205_m.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629158be205_l.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629158be205_o.jpg',
				'3262915'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3262817/',
				'IMG_7996',
				'http://static1.nagi.ee/i/p/130/51/0326281771b8f4_sq.jpg',
				'http://static1.nagi.ee/i/p/130/51/0326281771b8f4_t.jpg',
				'http://static1.nagi.ee/i/p/130/51/0326281771b8f4_s.jpg',
				'http://static1.nagi.ee/i/p/130/51/0326281771b8f4_m.jpg',
				'http://static1.nagi.ee/i/p/130/51/0326281771b8f4_l.jpg',
				'http://static1.nagi.ee/i/p/130/51/0326281771b8f4_o.jpg',
				'3262817'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/1319650/',
				'Image00129',
				'http://static1.nagi.ee/i/p/96/50/013196509bbbee_sq.jpg',
				'http://static1.nagi.ee/i/p/96/50/013196509bbbee_t.jpg',
				'http://static1.nagi.ee/i/p/96/50/013196509bbbee_s.jpg',
				'http://static1.nagi.ee/i/p/96/50/013196509bbbee_m.jpg',
				'http://static1.nagi.ee/i/p/96/50/013196509bbbee_l.jpg',
				'http://static1.nagi.ee/i/p/96/50/013196509bbbee_o.jpg',
				'1319650'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/226475/',
				'IMG_2533',
				'http://static1.nagi.ee/i/p/64/75/00226475b1dd29_sq.jpg',
				'http://static1.nagi.ee/i/p/64/75/00226475b1dd29_t.jpg',
				'http://static1.nagi.ee/i/p/64/75/00226475b1dd29_s.jpg',
				'http://static1.nagi.ee/i/p/64/75/00226475b1dd29_m.jpg',
				'http://static1.nagi.ee/i/p/64/75/00226475b1dd29_l.jpg',
				'http://static1.nagi.ee/i/p/64/75/00226475b1dd29_o.jpg',
				'226475'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3262955/',
				'IMG_8012',
				'http://static1.nagi.ee/i/p/130/51/032629559f0202_sq.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629559f0202_t.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629559f0202_s.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629559f0202_m.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629559f0202_l.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629559f0202_o.jpg',
				'3262955'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/1319730/',
				'Image00131',
				'http://static1.nagi.ee/i/p/97/30/013197307d024a_sq.jpg',
				'http://static1.nagi.ee/i/p/97/30/013197307d024a_t.jpg',
				'http://static1.nagi.ee/i/p/97/30/013197307d024a_s.jpg',
				'http://static1.nagi.ee/i/p/97/30/013197307d024a_m.jpg',
				'http://static1.nagi.ee/i/p/97/30/013197307d024a_l.jpg',
				'http://static1.nagi.ee/i/p/97/30/013197307d024a_o.jpg',
				'1319730'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3259203/',
				'IMG_7424_2',
				'http://static1.nagi.ee/i/p/130/36/032592036b34f9_sq.jpg',
				'http://static1.nagi.ee/i/p/130/36/032592036b34f9_t.jpg',
				'http://static1.nagi.ee/i/p/130/36/032592036b34f9_s.jpg',
				'http://static1.nagi.ee/i/p/130/36/032592036b34f9_m.jpg',
				'http://static1.nagi.ee/i/p/130/36/032592036b34f9_l.jpg',
				'http://static1.nagi.ee/i/p/130/36/032592036b34f9_o.jpg',
				'3259203'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16390341/',
				'IMG_0640',
				'http://static3.nagi.ee/i/p/655/61/16390341e4a6bd_sq.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390341e4a6bd_t.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390341e4a6bd_s.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390341e4a6bd_m.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390341e4a6bd_l.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390341e4a6bd_o.jpg',
				'16390341'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3262987/',
				'IMG_8013',
				'http://static1.nagi.ee/i/p/130/51/032629879a39b9_sq.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629879a39b9_t.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629879a39b9_s.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629879a39b9_m.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629879a39b9_l.jpg',
				'http://static1.nagi.ee/i/p/130/51/032629879a39b9_o.jpg',
				'3262987'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850209/',
				'IMG_1251',
				'http://static3.nagi.ee/i/p/674/0/16850209adcdd5_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850209adcdd5_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850209adcdd5_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850209adcdd5_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850209adcdd5_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850209adcdd5_o.jpg',
				'16850209'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/1319828/',
				'Image00133',
				'http://static1.nagi.ee/i/p/98/28/0131982862e30c_sq.jpg',
				'http://static1.nagi.ee/i/p/98/28/0131982862e30c_t.jpg',
				'http://static1.nagi.ee/i/p/98/28/0131982862e30c_s.jpg',
				'http://static1.nagi.ee/i/p/98/28/0131982862e30c_m.jpg',
				'http://static1.nagi.ee/i/p/98/28/0131982862e30c_l.jpg',
				'http://static1.nagi.ee/i/p/98/28/0131982862e30c_o.jpg',
				'1319828'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3259201/',
				'IMG_7424',
				'http://static1.nagi.ee/i/p/130/36/032592017b59f2_sq.jpg',
				'http://static1.nagi.ee/i/p/130/36/032592017b59f2_t.jpg',
				'http://static1.nagi.ee/i/p/130/36/032592017b59f2_s.jpg',
				'http://static1.nagi.ee/i/p/130/36/032592017b59f2_m.jpg',
				'http://static1.nagi.ee/i/p/130/36/032592017b59f2_l.jpg',
				'http://static1.nagi.ee/i/p/130/36/032592017b59f2_o.jpg',
				'3259201'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16390399/',
				'IMG_0681',
				'http://static3.nagi.ee/i/p/655/61/16390399ec5e83_sq.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390399ec5e83_t.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390399ec5e83_s.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390399ec5e83_m.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390399ec5e83_l.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390399ec5e83_o.jpg',
				'16390399'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16390407/',
				'IMG_0685',
				'http://static3.nagi.ee/i/p/655/61/163904076abd63_sq.jpg',
				'http://static3.nagi.ee/i/p/655/61/163904076abd63_t.jpg',
				'http://static3.nagi.ee/i/p/655/61/163904076abd63_s.jpg',
				'http://static3.nagi.ee/i/p/655/61/163904076abd63_m.jpg',
				'http://static3.nagi.ee/i/p/655/61/163904076abd63_l.jpg',
				'http://static3.nagi.ee/i/p/655/61/163904076abd63_o.jpg',
				'16390407'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16107357/',
				'IMG_6180',
				'http://static3.nagi.ee/i/p/644/29/1610735764a9ad_sq.jpg',
				'http://static3.nagi.ee/i/p/644/29/1610735764a9ad_t.jpg',
				'http://static3.nagi.ee/i/p/644/29/1610735764a9ad_s.jpg',
				'http://static3.nagi.ee/i/p/644/29/1610735764a9ad_m.jpg',
				'http://static3.nagi.ee/i/p/644/29/1610735764a9ad_l.jpg',
				'http://static3.nagi.ee/i/p/644/29/1610735764a9ad_o.jpg',
				'16107357'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951525/',
				'IMG_6593',
				'http://static2.nagi.ee/i/p/438/6/10951525f1bf84_sq.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951525f1bf84_t.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951525f1bf84_s.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951525f1bf84_m.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951525f1bf84_l.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951525f1bf84_o.jpg',
				'10951525'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/1319738/',
				'Image00132',
				'http://static1.nagi.ee/i/p/97/38/0131973880259c_sq.jpg',
				'http://static1.nagi.ee/i/p/97/38/0131973880259c_t.jpg',
				'http://static1.nagi.ee/i/p/97/38/0131973880259c_s.jpg',
				'http://static1.nagi.ee/i/p/97/38/0131973880259c_m.jpg',
				'http://static1.nagi.ee/i/p/97/38/0131973880259c_l.jpg',
				'http://static1.nagi.ee/i/p/97/38/0131973880259c_o.jpg',
				'1319738'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3263009/',
				'IMG_8015',
				'http://static1.nagi.ee/i/p/130/52/03263009083d4a_sq.jpg',
				'http://static1.nagi.ee/i/p/130/52/03263009083d4a_t.jpg',
				'http://static1.nagi.ee/i/p/130/52/03263009083d4a_s.jpg',
				'http://static1.nagi.ee/i/p/130/52/03263009083d4a_m.jpg',
				'http://static1.nagi.ee/i/p/130/52/03263009083d4a_l.jpg',
				'http://static1.nagi.ee/i/p/130/52/03263009083d4a_o.jpg',
				'3263009'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16390463/',
				'IMG_0732',
				'http://static3.nagi.ee/i/p/655/61/1639046307c3bf_sq.jpg',
				'http://static3.nagi.ee/i/p/655/61/1639046307c3bf_t.jpg',
				'http://static3.nagi.ee/i/p/655/61/1639046307c3bf_s.jpg',
				'http://static3.nagi.ee/i/p/655/61/1639046307c3bf_m.jpg',
				'http://static3.nagi.ee/i/p/655/61/1639046307c3bf_l.jpg',
				'http://static3.nagi.ee/i/p/655/61/1639046307c3bf_o.jpg',
				'16390463'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850219/',
				'IMG_1256',
				'http://static3.nagi.ee/i/p/674/0/16850219f41693_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850219f41693_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850219f41693_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850219f41693_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850219f41693_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850219f41693_o.jpg',
				'16850219'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/4013579/',
				'IMG_2922',
				'http://static1.nagi.ee/i/p/160/54/040135797836a1_sq.jpg',
				'http://static1.nagi.ee/i/p/160/54/040135797836a1_t.jpg',
				'http://static1.nagi.ee/i/p/160/54/040135797836a1_s.jpg',
				'http://static1.nagi.ee/i/p/160/54/040135797836a1_m.jpg',
				'http://static1.nagi.ee/i/p/160/54/040135797836a1_l.jpg',
				'http://static1.nagi.ee/i/p/160/54/040135797836a1_o.jpg',
				'4013579'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10062811/',
				'IMG_3730',
				'http://static2.nagi.ee/i/p/402/51/1006281141ba4a_sq.jpg',
				'http://static2.nagi.ee/i/p/402/51/1006281141ba4a_t.jpg',
				'http://static2.nagi.ee/i/p/402/51/1006281141ba4a_s.jpg',
				'http://static2.nagi.ee/i/p/402/51/1006281141ba4a_m.jpg',
				'http://static2.nagi.ee/i/p/402/51/1006281141ba4a_l.jpg',
				'http://static2.nagi.ee/i/p/402/51/1006281141ba4a_o.jpg',
				'10062811'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/17561997/',
				'IMG_1019',
				'http://static3.nagi.ee/i/p/702/47/17561997050e55_sq.jpg',
				'http://static3.nagi.ee/i/p/702/47/17561997050e55_t.jpg',
				'http://static3.nagi.ee/i/p/702/47/17561997050e55_s.jpg',
				'http://static3.nagi.ee/i/p/702/47/17561997050e55_m.jpg',
				'http://static3.nagi.ee/i/p/702/47/17561997050e55_l.jpg',
				'http://static3.nagi.ee/i/p/702/47/17561997050e55_o.jpg',
				'17561997'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16126251/',
				'IMG_6947',
				'http://static3.nagi.ee/i/p/645/5/16126251b7dc13_sq.jpg',
				'http://static3.nagi.ee/i/p/645/5/16126251b7dc13_t.jpg',
				'http://static3.nagi.ee/i/p/645/5/16126251b7dc13_s.jpg',
				'http://static3.nagi.ee/i/p/645/5/16126251b7dc13_m.jpg',
				'http://static3.nagi.ee/i/p/645/5/16126251b7dc13_l.jpg',
				'http://static3.nagi.ee/i/p/645/5/16126251b7dc13_o.jpg',
				'16126251'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/4015273/',
				'IMG_3926',
				'http://static1.nagi.ee/i/p/160/61/04015273b42e1e_sq.jpg',
				'http://static1.nagi.ee/i/p/160/61/04015273b42e1e_t.jpg',
				'http://static1.nagi.ee/i/p/160/61/04015273b42e1e_s.jpg',
				'http://static1.nagi.ee/i/p/160/61/04015273b42e1e_m.jpg',
				'http://static1.nagi.ee/i/p/160/61/04015273b42e1e_l.jpg',
				'http://static1.nagi.ee/i/p/160/61/04015273b42e1e_o.jpg',
				'4015273'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10063143/',
				'IMG_3920',
				'http://static2.nagi.ee/i/p/402/52/10063143a1813f_sq.jpg',
				'http://static2.nagi.ee/i/p/402/52/10063143a1813f_t.jpg',
				'http://static2.nagi.ee/i/p/402/52/10063143a1813f_s.jpg',
				'http://static2.nagi.ee/i/p/402/52/10063143a1813f_m.jpg',
				'http://static2.nagi.ee/i/p/402/52/10063143a1813f_l.jpg',
				'http://static2.nagi.ee/i/p/402/52/10063143a1813f_o.jpg',
				'10063143'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/1319995/',
				'Image00135',
				'http://static1.nagi.ee/i/p/99/95/01319995af43e1_sq.jpg',
				'http://static1.nagi.ee/i/p/99/95/01319995af43e1_t.jpg',
				'http://static1.nagi.ee/i/p/99/95/01319995af43e1_s.jpg',
				'http://static1.nagi.ee/i/p/99/95/01319995af43e1_m.jpg',
				'http://static1.nagi.ee/i/p/99/95/01319995af43e1_l.jpg',
				'http://static1.nagi.ee/i/p/99/95/01319995af43e1_o.jpg',
				'1319995'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951161/',
				'IMG_6288',
				'http://static2.nagi.ee/i/p/438/4/109511615a9645_sq.jpg',
				'http://static2.nagi.ee/i/p/438/4/109511615a9645_t.jpg',
				'http://static2.nagi.ee/i/p/438/4/109511615a9645_s.jpg',
				'http://static2.nagi.ee/i/p/438/4/109511615a9645_m.jpg',
				'http://static2.nagi.ee/i/p/438/4/109511615a9645_l.jpg',
				'http://static2.nagi.ee/i/p/438/4/109511615a9645_o.jpg',
				'10951161'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/12185291/',
				'IMG_3284',
				'http://static2.nagi.ee/i/p/487/41/12185291679cb8_sq.jpg',
				'http://static2.nagi.ee/i/p/487/41/12185291679cb8_t.jpg',
				'http://static2.nagi.ee/i/p/487/41/12185291679cb8_s.jpg',
				'http://static2.nagi.ee/i/p/487/41/12185291679cb8_m.jpg',
				'http://static2.nagi.ee/i/p/487/41/12185291679cb8_l.jpg',
				'http://static2.nagi.ee/i/p/487/41/12185291679cb8_o.jpg',
				'12185291'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850359/',
				'IMG_1327',
				'http://static3.nagi.ee/i/p/674/1/16850359e39a00_sq.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850359e39a00_t.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850359e39a00_s.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850359e39a00_m.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850359e39a00_l.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850359e39a00_o.jpg',
				'16850359'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850301/',
				'IMG_1297',
				'http://static3.nagi.ee/i/p/674/1/16850301848d5a_sq.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850301848d5a_t.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850301848d5a_s.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850301848d5a_m.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850301848d5a_l.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850301848d5a_o.jpg',
				'16850301'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951353/',
				'IMG_6489',
				'http://static2.nagi.ee/i/p/438/5/10951353027e35_sq.jpg',
				'http://static2.nagi.ee/i/p/438/5/10951353027e35_t.jpg',
				'http://static2.nagi.ee/i/p/438/5/10951353027e35_s.jpg',
				'http://static2.nagi.ee/i/p/438/5/10951353027e35_m.jpg',
				'http://static2.nagi.ee/i/p/438/5/10951353027e35_l.jpg',
				'http://static2.nagi.ee/i/p/438/5/10951353027e35_o.jpg',
				'10951353'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951547/',
				'IMG_6601',
				'http://static2.nagi.ee/i/p/438/6/109515471e8567_sq.jpg',
				'http://static2.nagi.ee/i/p/438/6/109515471e8567_t.jpg',
				'http://static2.nagi.ee/i/p/438/6/109515471e8567_s.jpg',
				'http://static2.nagi.ee/i/p/438/6/109515471e8567_m.jpg',
				'http://static2.nagi.ee/i/p/438/6/109515471e8567_l.jpg',
				'http://static2.nagi.ee/i/p/438/6/109515471e8567_o.jpg',
				'10951547'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/15740763/',
				'IMG_9180',
				'http://static3.nagi.ee/i/p/629/63/1574076316ad21_sq.jpg',
				'http://static3.nagi.ee/i/p/629/63/1574076316ad21_t.jpg',
				'http://static3.nagi.ee/i/p/629/63/1574076316ad21_s.jpg',
				'http://static3.nagi.ee/i/p/629/63/1574076316ad21_m.jpg',
				'http://static3.nagi.ee/i/p/629/63/1574076316ad21_l.jpg',
				'http://static3.nagi.ee/i/p/629/63/1574076316ad21_o.jpg',
				'15740763'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850157/',
				'IMG_1235',
				'http://static3.nagi.ee/i/p/674/0/1685015733ad56_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685015733ad56_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685015733ad56_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685015733ad56_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685015733ad56_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685015733ad56_o.jpg',
				'16850157'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3157475/',
				'IMG_7301',
				'http://static1.nagi.ee/i/p/126/29/03157475ddc765_sq.jpg',
				'http://static1.nagi.ee/i/p/126/29/03157475ddc765_t.jpg',
				'http://static1.nagi.ee/i/p/126/29/03157475ddc765_s.jpg',
				'http://static1.nagi.ee/i/p/126/29/03157475ddc765_m.jpg',
				'http://static1.nagi.ee/i/p/126/29/03157475ddc765_l.jpg',
				'http://static1.nagi.ee/i/p/126/29/03157475ddc765_o.jpg',
				'3157475'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/3262803/',
				'IMG_7988',
				'http://static1.nagi.ee/i/p/130/51/032628030b5de9_sq.jpg',
				'http://static1.nagi.ee/i/p/130/51/032628030b5de9_t.jpg',
				'http://static1.nagi.ee/i/p/130/51/032628030b5de9_s.jpg',
				'http://static1.nagi.ee/i/p/130/51/032628030b5de9_m.jpg',
				'http://static1.nagi.ee/i/p/130/51/032628030b5de9_l.jpg',
				'http://static1.nagi.ee/i/p/130/51/032628030b5de9_o.jpg',
				'3262803'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850145/',
				'IMG_1229',
				'http://static3.nagi.ee/i/p/674/0/16850145f73cf3_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850145f73cf3_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850145f73cf3_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850145f73cf3_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850145f73cf3_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850145f73cf3_o.jpg',
				'16850145'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850183/',
				'IMG_1241',
				'http://static3.nagi.ee/i/p/674/0/16850183918df8_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850183918df8_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850183918df8_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850183918df8_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850183918df8_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850183918df8_o.jpg',
				'16850183'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850177/',
				'IMG_1239',
				'http://static3.nagi.ee/i/p/674/0/16850177d420b9_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850177d420b9_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850177d420b9_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850177d420b9_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850177d420b9_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850177d420b9_o.jpg',
				'16850177'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850141/',
				'IMG_1228',
				'http://static3.nagi.ee/i/p/674/0/16850141f00abd_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850141f00abd_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850141f00abd_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850141f00abd_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850141f00abd_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850141f00abd_o.jpg',
				'16850141'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/4891693/',
				'IMG_6779',
				'http://static1.nagi.ee/i/p/195/66/048916934ee3f6_sq.jpg',
				'http://static1.nagi.ee/i/p/195/66/048916934ee3f6_t.jpg',
				'http://static1.nagi.ee/i/p/195/66/048916934ee3f6_s.jpg',
				'http://static1.nagi.ee/i/p/195/66/048916934ee3f6_m.jpg',
				'http://static1.nagi.ee/i/p/195/66/048916934ee3f6_l.jpg',
				'http://static1.nagi.ee/i/p/195/66/048916934ee3f6_o.jpg',
				'4891693'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850165/',
				'IMG_1237',
				'http://static3.nagi.ee/i/p/674/0/1685016506a6d8_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685016506a6d8_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685016506a6d8_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685016506a6d8_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685016506a6d8_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685016506a6d8_o.jpg',
				'16850165'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16107381/',
				'IMG_6188',
				'http://static3.nagi.ee/i/p/644/29/16107381b1850b_sq.jpg',
				'http://static3.nagi.ee/i/p/644/29/16107381b1850b_t.jpg',
				'http://static3.nagi.ee/i/p/644/29/16107381b1850b_s.jpg',
				'http://static3.nagi.ee/i/p/644/29/16107381b1850b_m.jpg',
				'http://static3.nagi.ee/i/p/644/29/16107381b1850b_l.jpg',
				'http://static3.nagi.ee/i/p/644/29/16107381b1850b_o.jpg',
				'16107381'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850193/',
				'IMG_1246',
				'http://static3.nagi.ee/i/p/674/0/168501936a8af1_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/168501936a8af1_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/168501936a8af1_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/168501936a8af1_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/168501936a8af1_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/168501936a8af1_o.jpg',
				'16850193'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10062835/',
				'IMG_3754',
				'http://static2.nagi.ee/i/p/402/51/10062835f66f0d_sq.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062835f66f0d_t.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062835f66f0d_s.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062835f66f0d_m.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062835f66f0d_l.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062835f66f0d_o.jpg',
				'10062835'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951361/',
				'IMG_6490',
				'http://static2.nagi.ee/i/p/438/5/10951361d69f62_sq.jpg',
				'http://static2.nagi.ee/i/p/438/5/10951361d69f62_t.jpg',
				'http://static2.nagi.ee/i/p/438/5/10951361d69f62_s.jpg',
				'http://static2.nagi.ee/i/p/438/5/10951361d69f62_m.jpg',
				'http://static2.nagi.ee/i/p/438/5/10951361d69f62_l.jpg',
				'http://static2.nagi.ee/i/p/438/5/10951361d69f62_o.jpg',
				'10951361'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951463/',
				'IMG_6543',
				'http://static2.nagi.ee/i/p/438/5/109514630af446_sq.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514630af446_t.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514630af446_s.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514630af446_m.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514630af446_l.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514630af446_o.jpg',
				'10951463'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850241/',
				'IMG_1265',
				'http://static3.nagi.ee/i/p/674/0/16850241785c72_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850241785c72_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850241785c72_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850241785c72_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850241785c72_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850241785c72_o.jpg',
				'16850241'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850215/',
				'IMG_1253',
				'http://static3.nagi.ee/i/p/674/0/1685021581cf13_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685021581cf13_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685021581cf13_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685021581cf13_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685021581cf13_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685021581cf13_o.jpg',
				'16850215'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850149/',
				'IMG_1232',
				'http://static3.nagi.ee/i/p/674/0/16850149f52dbe_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850149f52dbe_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850149f52dbe_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850149f52dbe_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850149f52dbe_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850149f52dbe_o.jpg',
				'16850149'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850187/',
				'IMG_1243',
				'http://static3.nagi.ee/i/p/674/0/16850187b44819_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850187b44819_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850187b44819_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850187b44819_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850187b44819_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850187b44819_o.jpg',
				'16850187'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951451/',
				'IMG_6541',
				'http://static2.nagi.ee/i/p/438/5/109514519f4093_sq.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514519f4093_t.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514519f4093_s.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514519f4093_m.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514519f4093_l.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514519f4093_o.jpg',
				'10951451'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951577/',
				'IMG_6632',
				'http://static2.nagi.ee/i/p/438/6/10951577f1fb7e_sq.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951577f1fb7e_t.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951577f1fb7e_s.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951577f1fb7e_m.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951577f1fb7e_l.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951577f1fb7e_o.jpg',
				'10951577'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951413/',
				'IMG_6525',
				'http://static2.nagi.ee/i/p/438/5/109514134f82f9_sq.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514134f82f9_t.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514134f82f9_s.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514134f82f9_m.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514134f82f9_l.jpg',
				'http://static2.nagi.ee/i/p/438/5/109514134f82f9_o.jpg',
				'10951413'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951517/',
				'IMG_6570',
				'http://static2.nagi.ee/i/p/438/6/1095151725cd66_sq.jpg',
				'http://static2.nagi.ee/i/p/438/6/1095151725cd66_t.jpg',
				'http://static2.nagi.ee/i/p/438/6/1095151725cd66_s.jpg',
				'http://static2.nagi.ee/i/p/438/6/1095151725cd66_m.jpg',
				'http://static2.nagi.ee/i/p/438/6/1095151725cd66_l.jpg',
				'http://static2.nagi.ee/i/p/438/6/1095151725cd66_o.jpg',
				'10951517'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951139/',
				'IMG_6263',
				'http://static2.nagi.ee/i/p/438/4/10951139432986_sq.jpg',
				'http://static2.nagi.ee/i/p/438/4/10951139432986_t.jpg',
				'http://static2.nagi.ee/i/p/438/4/10951139432986_s.jpg',
				'http://static2.nagi.ee/i/p/438/4/10951139432986_m.jpg',
				'http://static2.nagi.ee/i/p/438/4/10951139432986_l.jpg',
				'http://static2.nagi.ee/i/p/438/4/10951139432986_o.jpg',
				'10951139'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/761419/',
				'IMG_7357',
				'http://static1.nagi.ee/i/p/14/19/00761419522ff9_sq.jpg',
				'http://static1.nagi.ee/i/p/14/19/00761419522ff9_t.jpg',
				'http://static1.nagi.ee/i/p/14/19/00761419522ff9_s.jpg',
				'http://static1.nagi.ee/i/p/14/19/00761419522ff9_m.jpg',
				'http://static1.nagi.ee/i/p/14/19/00761419522ff9_l.jpg',
				'http://static1.nagi.ee/i/p/14/19/00761419522ff9_o.jpg',
				'761419'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850259/',
				'IMG_1276',
				'http://static3.nagi.ee/i/p/674/1/16850259a6c5a2_sq.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850259a6c5a2_t.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850259a6c5a2_s.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850259a6c5a2_m.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850259a6c5a2_l.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850259a6c5a2_o.jpg',
				'16850259'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/13816029/',
				'IMG_1517',
				'http://static2.nagi.ee/i/p/552/64/13816029e328c5_sq.jpg',
				'http://static2.nagi.ee/i/p/552/64/13816029e328c5_t.jpg',
				'http://static2.nagi.ee/i/p/552/64/13816029e328c5_s.jpg',
				'http://static2.nagi.ee/i/p/552/64/13816029e328c5_m.jpg',
				'http://static2.nagi.ee/i/p/552/64/13816029e328c5_l.jpg',
				'http://static2.nagi.ee/i/p/552/64/13816029e328c5_o.jpg',
				'13816029'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850161/',
				'IMG_1236',
				'http://static3.nagi.ee/i/p/674/0/16850161132182_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850161132182_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850161132182_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850161132182_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850161132182_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850161132182_o.jpg',
				'16850161'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10062827/',
				'IMG_3735',
				'http://static2.nagi.ee/i/p/402/51/10062827b9f6b0_sq.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062827b9f6b0_t.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062827b9f6b0_s.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062827b9f6b0_m.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062827b9f6b0_l.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062827b9f6b0_o.jpg',
				'10062827'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/227506/',
				'IMG_3273',
				'http://static1.nagi.ee/i/p/75/06/00227506113b63_sq.jpg',
				'http://static1.nagi.ee/i/p/75/06/00227506113b63_t.jpg',
				'http://static1.nagi.ee/i/p/75/06/00227506113b63_s.jpg',
				'http://static1.nagi.ee/i/p/75/06/00227506113b63_m.jpg',
				'http://static1.nagi.ee/i/p/75/06/00227506113b63_l.jpg',
				'http://static1.nagi.ee/i/p/75/06/00227506113b63_o.jpg',
				'227506'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10065531/',
				'IMG_3907',
				'http://static2.nagi.ee/i/p/402/62/1006553198ff41_sq.jpg',
				'http://static2.nagi.ee/i/p/402/62/1006553198ff41_t.jpg',
				'http://static2.nagi.ee/i/p/402/62/1006553198ff41_s.jpg',
				'http://static2.nagi.ee/i/p/402/62/1006553198ff41_m.jpg',
				'http://static2.nagi.ee/i/p/402/62/1006553198ff41_l.jpg',
				'http://static2.nagi.ee/i/p/402/62/1006553198ff41_o.jpg',
				'10065531'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10062947/',
				'IMG_3845',
				'http://static2.nagi.ee/i/p/402/51/10062947261fd1_sq.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062947261fd1_t.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062947261fd1_s.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062947261fd1_m.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062947261fd1_l.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062947261fd1_o.jpg',
				'10062947'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16338415/',
				'IMG_9933-2',
				'http://static3.nagi.ee/i/p/653/53/16338415186f5d_sq.jpg',
				'http://static3.nagi.ee/i/p/653/53/16338415186f5d_t.jpg',
				'http://static3.nagi.ee/i/p/653/53/16338415186f5d_s.jpg',
				'http://static3.nagi.ee/i/p/653/53/16338415186f5d_m.jpg',
				'http://static3.nagi.ee/i/p/653/53/16338415186f5d_l.jpg',
				'http://static3.nagi.ee/i/p/653/53/16338415186f5d_o.jpg',
				'16338415'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850153/',
				'IMG_1233',
				'http://static3.nagi.ee/i/p/674/0/16850153e521bb_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850153e521bb_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850153e521bb_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850153e521bb_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850153e521bb_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850153e521bb_o.jpg',
				'16850153'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10062919/',
				'IMG_3825',
				'http://static2.nagi.ee/i/p/402/51/10062919da15e5_sq.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062919da15e5_t.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062919da15e5_s.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062919da15e5_m.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062919da15e5_l.jpg',
				'http://static2.nagi.ee/i/p/402/51/10062919da15e5_o.jpg',
				'10062919'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/1318893/',
				'Image00113',
				'http://static1.nagi.ee/i/p/88/93/01318893196818_sq.jpg',
				'http://static1.nagi.ee/i/p/88/93/01318893196818_t.jpg',
				'http://static1.nagi.ee/i/p/88/93/01318893196818_s.jpg',
				'http://static1.nagi.ee/i/p/88/93/01318893196818_m.jpg',
				'http://static1.nagi.ee/i/p/88/93/01318893196818_l.jpg',
				'http://static1.nagi.ee/i/p/88/93/01318893196818_o.jpg',
				'1318893'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850207/',
				'IMG_1250',
				'http://static3.nagi.ee/i/p/674/0/16850207922c01_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850207922c01_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850207922c01_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850207922c01_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850207922c01_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850207922c01_o.jpg',
				'16850207'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/4013383/',
				'IMG_2838',
				'http://static1.nagi.ee/i/p/160/53/04013383986f09_sq.jpg',
				'http://static1.nagi.ee/i/p/160/53/04013383986f09_t.jpg',
				'http://static1.nagi.ee/i/p/160/53/04013383986f09_s.jpg',
				'http://static1.nagi.ee/i/p/160/53/04013383986f09_m.jpg',
				'http://static1.nagi.ee/i/p/160/53/04013383986f09_l.jpg',
				'http://static1.nagi.ee/i/p/160/53/04013383986f09_o.jpg',
				'4013383'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850249/',
				'IMG_1267',
				'http://static3.nagi.ee/i/p/674/0/1685024944209a_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685024944209a_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685024944209a_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685024944209a_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685024944209a_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/1685024944209a_o.jpg',
				'16850249'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/648124/',
				'IMG_4407',
				'http://static1.nagi.ee/i/p/81/24/006481246000a5_sq.jpg',
				'http://static1.nagi.ee/i/p/81/24/006481246000a5_t.jpg',
				'http://static1.nagi.ee/i/p/81/24/006481246000a5_s.jpg',
				'http://static1.nagi.ee/i/p/81/24/006481246000a5_m.jpg',
				'http://static1.nagi.ee/i/p/81/24/006481246000a5_l.jpg',
				'http://static1.nagi.ee/i/p/81/24/006481246000a5_o.jpg',
				'648124'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/1319981/',
				'Image00134',
				'http://static1.nagi.ee/i/p/99/81/01319981f66b35_sq.jpg',
				'http://static1.nagi.ee/i/p/99/81/01319981f66b35_t.jpg',
				'http://static1.nagi.ee/i/p/99/81/01319981f66b35_s.jpg',
				'http://static1.nagi.ee/i/p/99/81/01319981f66b35_m.jpg',
				'http://static1.nagi.ee/i/p/99/81/01319981f66b35_l.jpg',
				'http://static1.nagi.ee/i/p/99/81/01319981f66b35_o.jpg',
				'1319981'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850203/',
				'IMG_1249',
				'http://static3.nagi.ee/i/p/674/0/168502031c1534_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502031c1534_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502031c1534_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502031c1534_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502031c1534_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502031c1534_o.jpg',
				'16850203'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850327/',
				'IMG_1310',
				'http://static3.nagi.ee/i/p/674/1/1685032704481c_sq.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685032704481c_t.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685032704481c_s.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685032704481c_m.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685032704481c_l.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685032704481c_o.jpg',
				'16850327'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/13994557/',
				'IMG_2067',
				'http://static2.nagi.ee/i/p/559/78/13994557025a40_sq.jpg',
				'http://static2.nagi.ee/i/p/559/78/13994557025a40_t.jpg',
				'http://static2.nagi.ee/i/p/559/78/13994557025a40_s.jpg',
				'http://static2.nagi.ee/i/p/559/78/13994557025a40_m.jpg',
				'http://static2.nagi.ee/i/p/559/78/13994557025a40_l.jpg',
				'http://static2.nagi.ee/i/p/559/78/13994557025a40_o.jpg',
				'13994557'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951529/',
				'IMG_6596',
				'http://static2.nagi.ee/i/p/438/6/10951529e3f59e_sq.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951529e3f59e_t.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951529e3f59e_s.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951529e3f59e_m.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951529e3f59e_l.jpg',
				'http://static2.nagi.ee/i/p/438/6/10951529e3f59e_o.jpg',
				'10951529'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850255/',
				'IMG_1271',
				'http://static3.nagi.ee/i/p/674/1/16850255bb2da6_sq.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850255bb2da6_t.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850255bb2da6_s.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850255bb2da6_m.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850255bb2da6_l.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850255bb2da6_o.jpg',
				'16850255'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850227/',
				'IMG_1258',
				'http://static3.nagi.ee/i/p/674/0/168502277f58af_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502277f58af_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502277f58af_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502277f58af_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502277f58af_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502277f58af_o.jpg',
				'16850227'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951111/',
				'IMG_6241',
				'http://static2.nagi.ee/i/p/438/4/10951111caa8fd_sq.jpg',
				'http://static2.nagi.ee/i/p/438/4/10951111caa8fd_t.jpg',
				'http://static2.nagi.ee/i/p/438/4/10951111caa8fd_s.jpg',
				'http://static2.nagi.ee/i/p/438/4/10951111caa8fd_m.jpg',
				'http://static2.nagi.ee/i/p/438/4/10951111caa8fd_l.jpg',
				'http://static2.nagi.ee/i/p/438/4/10951111caa8fd_o.jpg',
				'10951111'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850377/',
				'IMG_1342',
				'http://static3.nagi.ee/i/p/674/1/168503772ba94d_sq.jpg',
				'http://static3.nagi.ee/i/p/674/1/168503772ba94d_t.jpg',
				'http://static3.nagi.ee/i/p/674/1/168503772ba94d_s.jpg',
				'http://static3.nagi.ee/i/p/674/1/168503772ba94d_m.jpg',
				'http://static3.nagi.ee/i/p/674/1/168503772ba94d_l.jpg',
				'http://static3.nagi.ee/i/p/674/1/168503772ba94d_o.jpg',
				'16850377'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16390345/',
				'IMG_0642',
				'http://static3.nagi.ee/i/p/655/61/16390345362a8c_sq.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390345362a8c_t.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390345362a8c_s.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390345362a8c_m.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390345362a8c_l.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390345362a8c_o.jpg',
				'16390345'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850235/',
				'IMG_1261',
				'http://static3.nagi.ee/i/p/674/0/168502355d3022_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502355d3022_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502355d3022_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502355d3022_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502355d3022_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/168502355d3022_o.jpg',
				'16850235'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/10951495/',
				'IMG_6558',
				'http://static2.nagi.ee/i/p/438/5/1095149598a1f9_sq.jpg',
				'http://static2.nagi.ee/i/p/438/5/1095149598a1f9_t.jpg',
				'http://static2.nagi.ee/i/p/438/5/1095149598a1f9_s.jpg',
				'http://static2.nagi.ee/i/p/438/5/1095149598a1f9_m.jpg',
				'http://static2.nagi.ee/i/p/438/5/1095149598a1f9_l.jpg',
				'http://static2.nagi.ee/i/p/438/5/1095149598a1f9_o.jpg',
				'10951495'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16390375/',
				'IMG_0666',
				'http://static3.nagi.ee/i/p/655/61/16390375e8a0bf_sq.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390375e8a0bf_t.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390375e8a0bf_s.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390375e8a0bf_m.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390375e8a0bf_l.jpg',
				'http://static3.nagi.ee/i/p/655/61/16390375e8a0bf_o.jpg',
				'16390375'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/761461/',
				'IMG_7534',
				'http://static1.nagi.ee/i/p/14/61/007614614471ff_sq.jpg',
				'http://static1.nagi.ee/i/p/14/61/007614614471ff_t.jpg',
				'http://static1.nagi.ee/i/p/14/61/007614614471ff_s.jpg',
				'http://static1.nagi.ee/i/p/14/61/007614614471ff_m.jpg',
				'http://static1.nagi.ee/i/p/14/61/007614614471ff_l.jpg',
				'http://static1.nagi.ee/i/p/14/61/007614614471ff_o.jpg',
				'761461'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850199/',
				'IMG_1248',
				'http://static3.nagi.ee/i/p/674/0/16850199d07ce6_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850199d07ce6_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850199d07ce6_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850199d07ce6_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850199d07ce6_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850199d07ce6_o.jpg',
				'16850199'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850379/',
				'IMG_1346',
				'http://static3.nagi.ee/i/p/674/1/1685037912d75a_sq.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685037912d75a_t.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685037912d75a_s.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685037912d75a_m.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685037912d75a_l.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685037912d75a_o.jpg',
				'16850379'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850169/',
				'IMG_1238',
				'http://static3.nagi.ee/i/p/674/0/16850169f59e05_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850169f59e05_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850169f59e05_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850169f59e05_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850169f59e05_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850169f59e05_o.jpg',
				'16850169'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850191/',
				'IMG_1245',
				'http://static3.nagi.ee/i/p/674/0/16850191127747_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850191127747_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850191127747_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850191127747_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850191127747_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850191127747_o.jpg',
				'16850191'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850257/',
				'IMG_1273',
				'http://static3.nagi.ee/i/p/674/1/1685025711eadf_sq.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685025711eadf_t.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685025711eadf_s.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685025711eadf_m.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685025711eadf_l.jpg',
				'http://static3.nagi.ee/i/p/674/1/1685025711eadf_o.jpg',
				'16850257'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850367/',
				'IMG_1334',
				'http://static3.nagi.ee/i/p/674/1/16850367bcd72c_sq.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850367bcd72c_t.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850367bcd72c_s.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850367bcd72c_m.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850367bcd72c_l.jpg',
				'http://static3.nagi.ee/i/p/674/1/16850367bcd72c_o.jpg',
				'16850367'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/4013389/',
				'IMG_2845',
				'http://static1.nagi.ee/i/p/160/53/040133890b67c6_sq.jpg',
				'http://static1.nagi.ee/i/p/160/53/040133890b67c6_t.jpg',
				'http://static1.nagi.ee/i/p/160/53/040133890b67c6_s.jpg',
				'http://static1.nagi.ee/i/p/160/53/040133890b67c6_m.jpg',
				'http://static1.nagi.ee/i/p/160/53/040133890b67c6_l.jpg',
				'http://static1.nagi.ee/i/p/160/53/040133890b67c6_o.jpg',
				'4013389'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/16850197/',
				'IMG_1247',
				'http://static3.nagi.ee/i/p/674/0/16850197895750_sq.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850197895750_t.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850197895750_s.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850197895750_m.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850197895750_l.jpg',
				'http://static3.nagi.ee/i/p/674/0/16850197895750_o.jpg',
				'16850197'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/arstionu/4013573/',
				'IMG_2924',
				'http://static1.nagi.ee/i/p/160/54/040135738f1f58_sq.jpg',
				'http://static1.nagi.ee/i/p/160/54/040135738f1f58_t.jpg',
				'http://static1.nagi.ee/i/p/160/54/040135738f1f58_s.jpg',
				'http://static1.nagi.ee/i/p/160/54/040135738f1f58_m.jpg',
				'http://static1.nagi.ee/i/p/160/54/040135738f1f58_l.jpg',
				'http://static1.nagi.ee/i/p/160/54/040135738f1f58_o.jpg',
				'4013573'
			);
Nagi.pics.setContext(nagi_pics_old_id);
