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

if (!window.Nagi.logo)
	Nagi.logo = {
		// vars
		'a': '',
		'img': '',
		'href': 'http://nagi.ee/',
		'src': 'http://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': 'Jüri',
		'lname': 'Kaljundi',
		'username': 'jk',
		'src': 'http://static1.nagi.ee/1/p/0/0/ac7b195218d35e24a078a2cb6d953c89bee8f297.jpg/1244059122.jpg',
		'name': 'Jüri Kaljundi',
		'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/jk/"' + '" 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/jk/"' + '" 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/jk/"' + '" 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://nagi.ee/services/stream/jk'+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://nagi.ee/photos/jk/14009985/',
				'Avarii',
				'http://static2.nagi.ee/i/p/560/39/140099850615ee_sq.jpg',
				'http://static2.nagi.ee/i/p/560/39/140099850615ee_t.jpg',
				'http://static2.nagi.ee/i/p/560/39/140099850615ee_s.jpg',
				'http://static2.nagi.ee/i/p/560/39/140099850615ee_m.jpg',
				'http://static2.nagi.ee/i/p/560/39/140099850615ee_l.jpg',
				'http://static2.nagi.ee/i/p/560/39/140099850615ee_o.jpg',
				'14009985'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/14009983/',
				'Avarii',
				'http://static2.nagi.ee/i/p/560/39/14009983458b31_sq.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009983458b31_t.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009983458b31_s.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009983458b31_m.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009983458b31_l.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009983458b31_o.jpg',
				'14009983'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/14009981/',
				'Avarii',
				'http://static2.nagi.ee/i/p/560/39/14009981085860_sq.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009981085860_t.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009981085860_s.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009981085860_m.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009981085860_l.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009981085860_o.jpg',
				'14009981'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/14009977/',
				'Avarii',
				'http://static2.nagi.ee/i/p/560/39/14009977b59a64_sq.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009977b59a64_t.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009977b59a64_s.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009977b59a64_m.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009977b59a64_l.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009977b59a64_o.jpg',
				'14009977'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/14009975/',
				'Avarii',
				'http://static2.nagi.ee/i/p/560/39/14009975342f25_sq.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009975342f25_t.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009975342f25_s.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009975342f25_m.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009975342f25_l.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009975342f25_o.jpg',
				'14009975'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/14009973/',
				'Avarii',
				'http://static2.nagi.ee/i/p/560/39/140099737a1665_sq.jpg',
				'http://static2.nagi.ee/i/p/560/39/140099737a1665_t.jpg',
				'http://static2.nagi.ee/i/p/560/39/140099737a1665_s.jpg',
				'http://static2.nagi.ee/i/p/560/39/140099737a1665_m.jpg',
				'http://static2.nagi.ee/i/p/560/39/140099737a1665_l.jpg',
				'http://static2.nagi.ee/i/p/560/39/140099737a1665_o.jpg',
				'14009973'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/14009971/',
				'Avarii',
				'http://static2.nagi.ee/i/p/560/39/14009971a2cc24_sq.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009971a2cc24_t.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009971a2cc24_s.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009971a2cc24_m.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009971a2cc24_l.jpg',
				'http://static2.nagi.ee/i/p/560/39/14009971a2cc24_o.jpg',
				'14009971'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13707219/',
				'Vanakas ülalt',
				'http://static1.nagi.ee/i/p/548/28/13707219e9d16c_sq.jpg',
				'http://static1.nagi.ee/i/p/548/28/13707219e9d16c_t.jpg',
				'http://static1.nagi.ee/i/p/548/28/13707219e9d16c_s.jpg',
				'http://static1.nagi.ee/i/p/548/28/13707219e9d16c_m.jpg',
				'http://static1.nagi.ee/i/p/548/28/13707219e9d16c_l.jpg',
				'http://static1.nagi.ee/i/p/548/28/13707219e9d16c_o.jpg',
				'13707219'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13707215/',
				'Vanakas alt',
				'http://static1.nagi.ee/i/p/548/28/137072157d16b8_sq.jpg',
				'http://static1.nagi.ee/i/p/548/28/137072157d16b8_t.jpg',
				'http://static1.nagi.ee/i/p/548/28/137072157d16b8_s.jpg',
				'http://static1.nagi.ee/i/p/548/28/137072157d16b8_m.jpg',
				'http://static1.nagi.ee/i/p/548/28/137072157d16b8_l.jpg',
				'http://static1.nagi.ee/i/p/548/28/137072157d16b8_o.jpg',
				'13707215'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13644831/',
				'Häid jõule!',
				'http://static1.nagi.ee/i/p/545/79/13644831bf77d8_sq.jpg',
				'http://static1.nagi.ee/i/p/545/79/13644831bf77d8_t.jpg',
				'http://static1.nagi.ee/i/p/545/79/13644831bf77d8_s.jpg',
				'http://static1.nagi.ee/i/p/545/79/13644831bf77d8_m.jpg',
				'http://static1.nagi.ee/i/p/545/79/13644831bf77d8_l.jpg',
				'http://static1.nagi.ee/i/p/545/79/13644831bf77d8_o.jpg',
				'13644831'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13359813/',
				'*',
				'http://static1.nagi.ee/i/p/534/39/1335981392ff6a_sq.jpg',
				'http://static1.nagi.ee/i/p/534/39/1335981392ff6a_t.jpg',
				'http://static1.nagi.ee/i/p/534/39/1335981392ff6a_s.jpg',
				'http://static1.nagi.ee/i/p/534/39/1335981392ff6a_m.jpg',
				'http://static1.nagi.ee/i/p/534/39/1335981392ff6a_l.jpg',
				'http://static1.nagi.ee/i/p/534/39/1335981392ff6a_o.jpg',
				'13359813'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13359811/',
				'*',
				'http://static1.nagi.ee/i/p/534/39/1335981127b460_sq.jpg',
				'http://static1.nagi.ee/i/p/534/39/1335981127b460_t.jpg',
				'http://static1.nagi.ee/i/p/534/39/1335981127b460_s.jpg',
				'http://static1.nagi.ee/i/p/534/39/1335981127b460_m.jpg',
				'http://static1.nagi.ee/i/p/534/39/1335981127b460_l.jpg',
				'http://static1.nagi.ee/i/p/534/39/1335981127b460_o.jpg',
				'13359811'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13359809/',
				'*',
				'http://static1.nagi.ee/i/p/534/39/13359809779dd9_sq.jpg',
				'http://static1.nagi.ee/i/p/534/39/13359809779dd9_t.jpg',
				'http://static1.nagi.ee/i/p/534/39/13359809779dd9_s.jpg',
				'http://static1.nagi.ee/i/p/534/39/13359809779dd9_m.jpg',
				'http://static1.nagi.ee/i/p/534/39/13359809779dd9_l.jpg',
				'http://static1.nagi.ee/i/p/534/39/13359809779dd9_o.jpg',
				'13359809'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13359733/',
				'*',
				'http://static1.nagi.ee/i/p/534/38/13359733142996_sq.jpg',
				'http://static1.nagi.ee/i/p/534/38/13359733142996_t.jpg',
				'http://static1.nagi.ee/i/p/534/38/13359733142996_s.jpg',
				'http://static1.nagi.ee/i/p/534/38/13359733142996_m.jpg',
				'http://static1.nagi.ee/i/p/534/38/13359733142996_l.jpg',
				'http://static1.nagi.ee/i/p/534/38/13359733142996_o.jpg',
				'13359733'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13355595/',
				'Kukepoks',
				'http://static1.nagi.ee/i/p/534/22/13355595e00269_sq.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355595e00269_t.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355595e00269_s.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355595e00269_m.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355595e00269_l.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355595e00269_o.jpg',
				'13355595'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13355535/',
				'Suvi oli',
				'http://static1.nagi.ee/i/p/534/22/13355535cd60de_sq.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355535cd60de_t.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355535cd60de_s.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355535cd60de_m.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355535cd60de_l.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355535cd60de_o.jpg',
				'13355535'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13355527/',
				'Sügis oli',
				'http://static1.nagi.ee/i/p/534/22/133555273b73a3_sq.jpg',
				'http://static1.nagi.ee/i/p/534/22/133555273b73a3_t.jpg',
				'http://static1.nagi.ee/i/p/534/22/133555273b73a3_s.jpg',
				'http://static1.nagi.ee/i/p/534/22/133555273b73a3_m.jpg',
				'http://static1.nagi.ee/i/p/534/22/133555273b73a3_l.jpg',
				'http://static1.nagi.ee/i/p/534/22/133555273b73a3_o.jpg',
				'13355527'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13355515/',
				'Sügis oli',
				'http://static1.nagi.ee/i/p/534/22/13355515b11023_sq.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355515b11023_t.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355515b11023_s.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355515b11023_m.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355515b11023_l.jpg',
				'http://static1.nagi.ee/i/p/534/22/13355515b11023_o.jpg',
				'13355515'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13355475/',
				'Henkilökohtaisia kysymyksiä',
				'http://static1.nagi.ee/i/p/534/21/13355475be9299_sq.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355475be9299_t.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355475be9299_s.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355475be9299_m.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355475be9299_l.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355475be9299_o.jpg',
				'13355475'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13355471/',
				'Millist inimest kultiveerime?',
				'http://static1.nagi.ee/i/p/534/21/13355471549a9f_sq.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355471549a9f_t.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355471549a9f_s.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355471549a9f_m.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355471549a9f_l.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355471549a9f_o.jpg',
				'13355471'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/13355465/',
				'Kus lumi on? Siin!',
				'http://static1.nagi.ee/i/p/534/21/13355465cf4d9d_sq.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355465cf4d9d_t.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355465cf4d9d_s.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355465cf4d9d_m.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355465cf4d9d_l.jpg',
				'http://static1.nagi.ee/i/p/534/21/13355465cf4d9d_o.jpg',
				'13355465'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953941/',
				'',
				'http://static2.nagi.ee/i/p/518/15/129539413073cc_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539413073cc_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539413073cc_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539413073cc_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539413073cc_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539413073cc_o.jpg',
				'12953941'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953939/',
				'IMG_1479',
				'http://static2.nagi.ee/i/p/518/15/1295393972a4d4_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295393972a4d4_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295393972a4d4_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295393972a4d4_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295393972a4d4_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295393972a4d4_o.jpg',
				'12953939'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953937/',
				'IMG_1478',
				'http://static2.nagi.ee/i/p/518/15/12953937a6e65a_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953937a6e65a_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953937a6e65a_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953937a6e65a_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953937a6e65a_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953937a6e65a_o.jpg',
				'12953937'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953935/',
				'IMG_1477',
				'http://static2.nagi.ee/i/p/518/15/12953935773114_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953935773114_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953935773114_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953935773114_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953935773114_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953935773114_o.jpg',
				'12953935'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953933/',
				'IMG_1476',
				'http://static2.nagi.ee/i/p/518/15/12953933fb0ff0_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953933fb0ff0_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953933fb0ff0_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953933fb0ff0_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953933fb0ff0_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953933fb0ff0_o.jpg',
				'12953933'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953931/',
				'IMG_1475',
				'http://static2.nagi.ee/i/p/518/15/129539313fc9ff_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539313fc9ff_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539313fc9ff_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539313fc9ff_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539313fc9ff_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539313fc9ff_o.jpg',
				'12953931'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953929/',
				'IMG_1474',
				'http://static2.nagi.ee/i/p/518/15/12953929fd70c8_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953929fd70c8_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953929fd70c8_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953929fd70c8_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953929fd70c8_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953929fd70c8_o.jpg',
				'12953929'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953927/',
				'IMG_1473',
				'http://static2.nagi.ee/i/p/518/15/129539270fad96_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539270fad96_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539270fad96_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539270fad96_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539270fad96_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539270fad96_o.jpg',
				'12953927'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953925/',
				'IMG_1471',
				'http://static2.nagi.ee/i/p/518/15/1295392589a872_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295392589a872_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295392589a872_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295392589a872_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295392589a872_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295392589a872_o.jpg',
				'12953925'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953923/',
				'IMG_1469',
				'http://static2.nagi.ee/i/p/518/15/12953923c879aa_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953923c879aa_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953923c879aa_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953923c879aa_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953923c879aa_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953923c879aa_o.jpg',
				'12953923'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953921/',
				'IMG_1468',
				'http://static2.nagi.ee/i/p/518/15/1295392131ac59_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295392131ac59_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295392131ac59_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295392131ac59_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295392131ac59_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295392131ac59_o.jpg',
				'12953921'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953919/',
				'IMG_1467',
				'http://static2.nagi.ee/i/p/518/15/12953919358bde_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953919358bde_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953919358bde_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953919358bde_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953919358bde_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953919358bde_o.jpg',
				'12953919'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953917/',
				'IMG_1466',
				'http://static2.nagi.ee/i/p/518/15/129539170e83cd_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539170e83cd_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539170e83cd_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539170e83cd_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539170e83cd_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539170e83cd_o.jpg',
				'12953917'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953915/',
				'IMG_1464',
				'http://static2.nagi.ee/i/p/518/15/12953915ee3238_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953915ee3238_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953915ee3238_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953915ee3238_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953915ee3238_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953915ee3238_o.jpg',
				'12953915'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953913/',
				'IMG_1462',
				'http://static2.nagi.ee/i/p/518/15/12953913c5794e_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953913c5794e_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953913c5794e_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953913c5794e_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953913c5794e_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953913c5794e_o.jpg',
				'12953913'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953911/',
				'IMG_1461',
				'http://static2.nagi.ee/i/p/518/15/12953911baa704_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953911baa704_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953911baa704_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953911baa704_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953911baa704_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953911baa704_o.jpg',
				'12953911'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953909/',
				'IMG_1459',
				'http://static2.nagi.ee/i/p/518/15/1295390941d54c_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295390941d54c_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295390941d54c_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295390941d54c_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295390941d54c_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295390941d54c_o.jpg',
				'12953909'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953907/',
				'IMG_1456',
				'http://static2.nagi.ee/i/p/518/15/129539071776c9_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539071776c9_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539071776c9_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539071776c9_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539071776c9_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129539071776c9_o.jpg',
				'12953907'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953905/',
				'IMG_1454',
				'http://static2.nagi.ee/i/p/518/15/12953905c1100d_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953905c1100d_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953905c1100d_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953905c1100d_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953905c1100d_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953905c1100d_o.jpg',
				'12953905'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953903/',
				'IMG_1449',
				'http://static2.nagi.ee/i/p/518/15/12953903d44a20_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953903d44a20_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953903d44a20_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953903d44a20_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953903d44a20_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953903d44a20_o.jpg',
				'12953903'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953901/',
				'IMG_1446',
				'http://static2.nagi.ee/i/p/518/15/12953901ea6082_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953901ea6082_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953901ea6082_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953901ea6082_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953901ea6082_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953901ea6082_o.jpg',
				'12953901'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953899/',
				'IMG_1445',
				'http://static2.nagi.ee/i/p/518/15/12953899344a23_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953899344a23_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953899344a23_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953899344a23_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953899344a23_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953899344a23_o.jpg',
				'12953899'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953897/',
				'IMG_1442',
				'http://static2.nagi.ee/i/p/518/15/12953897e0e999_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953897e0e999_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953897e0e999_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953897e0e999_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953897e0e999_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953897e0e999_o.jpg',
				'12953897'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953895/',
				'IMG_1440',
				'http://static2.nagi.ee/i/p/518/15/12953895393b9f_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953895393b9f_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953895393b9f_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953895393b9f_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953895393b9f_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953895393b9f_o.jpg',
				'12953895'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953893/',
				'IMG_1439',
				'http://static2.nagi.ee/i/p/518/15/12953893e8ec55_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953893e8ec55_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953893e8ec55_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953893e8ec55_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953893e8ec55_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953893e8ec55_o.jpg',
				'12953893'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953891/',
				'IMG_1436',
				'http://static2.nagi.ee/i/p/518/15/12953891af207b_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953891af207b_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953891af207b_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953891af207b_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953891af207b_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953891af207b_o.jpg',
				'12953891'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953889/',
				'IMG_1434',
				'http://static2.nagi.ee/i/p/518/15/129538898de4f7_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538898de4f7_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538898de4f7_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538898de4f7_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538898de4f7_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538898de4f7_o.jpg',
				'12953889'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953887/',
				'IMG_1431',
				'http://static2.nagi.ee/i/p/518/15/12953887768569_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953887768569_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953887768569_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953887768569_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953887768569_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953887768569_o.jpg',
				'12953887'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953885/',
				'IMG_1429',
				'http://static2.nagi.ee/i/p/518/15/129538855d65fa_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538855d65fa_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538855d65fa_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538855d65fa_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538855d65fa_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538855d65fa_o.jpg',
				'12953885'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953883/',
				'IMG_1425',
				'http://static2.nagi.ee/i/p/518/15/1295388380def2_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295388380def2_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295388380def2_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295388380def2_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295388380def2_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295388380def2_o.jpg',
				'12953883'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953881/',
				'IMG_1422',
				'http://static2.nagi.ee/i/p/518/15/129538813b2774_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538813b2774_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538813b2774_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538813b2774_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538813b2774_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538813b2774_o.jpg',
				'12953881'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953879/',
				'IMG_1421',
				'http://static2.nagi.ee/i/p/518/15/129538799b77cb_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538799b77cb_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538799b77cb_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538799b77cb_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538799b77cb_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538799b77cb_o.jpg',
				'12953879'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953877/',
				'IMG_1420',
				'http://static2.nagi.ee/i/p/518/15/129538775a54d9_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538775a54d9_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538775a54d9_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538775a54d9_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538775a54d9_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538775a54d9_o.jpg',
				'12953877'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953875/',
				'IMG_1417',
				'http://static2.nagi.ee/i/p/518/15/12953875b9d633_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953875b9d633_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953875b9d633_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953875b9d633_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953875b9d633_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953875b9d633_o.jpg',
				'12953875'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953873/',
				'IMG_1415',
				'http://static2.nagi.ee/i/p/518/15/1295387357a5eb_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295387357a5eb_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295387357a5eb_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295387357a5eb_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295387357a5eb_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295387357a5eb_o.jpg',
				'12953873'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953871/',
				'IMG_1414',
				'http://static2.nagi.ee/i/p/518/15/1295387144464d_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295387144464d_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295387144464d_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295387144464d_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295387144464d_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295387144464d_o.jpg',
				'12953871'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953869/',
				'IMG_1412',
				'http://static2.nagi.ee/i/p/518/15/12953869103662_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953869103662_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953869103662_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953869103662_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953869103662_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953869103662_o.jpg',
				'12953869'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953867/',
				'IMG_1411',
				'http://static2.nagi.ee/i/p/518/15/12953867b140a5_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953867b140a5_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953867b140a5_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953867b140a5_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953867b140a5_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953867b140a5_o.jpg',
				'12953867'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953865/',
				'IMG_1408',
				'http://static2.nagi.ee/i/p/518/15/12953865be7291_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953865be7291_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953865be7291_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953865be7291_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953865be7291_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953865be7291_o.jpg',
				'12953865'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953863/',
				'IMG_1406',
				'http://static2.nagi.ee/i/p/518/15/12953863993ac5_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953863993ac5_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953863993ac5_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953863993ac5_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953863993ac5_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953863993ac5_o.jpg',
				'12953863'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953861/',
				'IMG_1404',
				'http://static2.nagi.ee/i/p/518/15/129538612f036f_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538612f036f_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538612f036f_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538612f036f_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538612f036f_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538612f036f_o.jpg',
				'12953861'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953859/',
				'IMG_1403',
				'http://static2.nagi.ee/i/p/518/15/129538590b4915_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538590b4915_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538590b4915_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538590b4915_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538590b4915_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538590b4915_o.jpg',
				'12953859'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953857/',
				'IMG_1400',
				'http://static2.nagi.ee/i/p/518/15/12953857fe423c_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953857fe423c_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953857fe423c_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953857fe423c_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953857fe423c_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953857fe423c_o.jpg',
				'12953857'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953855/',
				'IMG_1398',
				'http://static2.nagi.ee/i/p/518/15/129538551d3bc7_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538551d3bc7_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538551d3bc7_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538551d3bc7_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538551d3bc7_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538551d3bc7_o.jpg',
				'12953855'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953853/',
				'IMG_1396',
				'http://static2.nagi.ee/i/p/518/15/12953853739aa9_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953853739aa9_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953853739aa9_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953853739aa9_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953853739aa9_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953853739aa9_o.jpg',
				'12953853'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953851/',
				'IMG_1393',
				'http://static2.nagi.ee/i/p/518/15/12953851739aea_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953851739aea_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953851739aea_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953851739aea_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953851739aea_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953851739aea_o.jpg',
				'12953851'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953849/',
				'IMG_1390',
				'http://static2.nagi.ee/i/p/518/15/12953849188d7e_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953849188d7e_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953849188d7e_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953849188d7e_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953849188d7e_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953849188d7e_o.jpg',
				'12953849'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953847/',
				'IMG_1389',
				'http://static2.nagi.ee/i/p/518/15/12953847389903_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953847389903_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953847389903_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953847389903_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953847389903_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953847389903_o.jpg',
				'12953847'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953845/',
				'IMG_1388',
				'http://static2.nagi.ee/i/p/518/15/12953845d4c7fd_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953845d4c7fd_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953845d4c7fd_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953845d4c7fd_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953845d4c7fd_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953845d4c7fd_o.jpg',
				'12953845'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953843/',
				'IMG_1384',
				'http://static2.nagi.ee/i/p/518/15/12953843800888_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953843800888_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953843800888_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953843800888_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953843800888_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953843800888_o.jpg',
				'12953843'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953841/',
				'IMG_1382',
				'http://static2.nagi.ee/i/p/518/15/12953841d07594_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953841d07594_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953841d07594_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953841d07594_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953841d07594_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953841d07594_o.jpg',
				'12953841'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953839/',
				'IMG_1381',
				'http://static2.nagi.ee/i/p/518/15/12953839ab2237_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953839ab2237_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953839ab2237_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953839ab2237_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953839ab2237_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953839ab2237_o.jpg',
				'12953839'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953837/',
				'IMG_1377',
				'http://static2.nagi.ee/i/p/518/15/12953837667b8f_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953837667b8f_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953837667b8f_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953837667b8f_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953837667b8f_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953837667b8f_o.jpg',
				'12953837'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953835/',
				'IMG_1374',
				'http://static2.nagi.ee/i/p/518/15/129538357000cc_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538357000cc_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538357000cc_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538357000cc_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538357000cc_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538357000cc_o.jpg',
				'12953835'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953833/',
				'IMG_1372',
				'http://static2.nagi.ee/i/p/518/15/12953833ea0570_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953833ea0570_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953833ea0570_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953833ea0570_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953833ea0570_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953833ea0570_o.jpg',
				'12953833'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953831/',
				'IMG_1369',
				'http://static2.nagi.ee/i/p/518/15/12953831d91fc8_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953831d91fc8_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953831d91fc8_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953831d91fc8_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953831d91fc8_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953831d91fc8_o.jpg',
				'12953831'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953829/',
				'IMG_1363',
				'http://static2.nagi.ee/i/p/518/15/129538295bf03b_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538295bf03b_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538295bf03b_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538295bf03b_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538295bf03b_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538295bf03b_o.jpg',
				'12953829'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953827/',
				'IMG_1361',
				'http://static2.nagi.ee/i/p/518/15/1295382707cdfb_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295382707cdfb_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295382707cdfb_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295382707cdfb_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295382707cdfb_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295382707cdfb_o.jpg',
				'12953827'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953825/',
				'IMG_1359',
				'http://static2.nagi.ee/i/p/518/15/129538253df177_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538253df177_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538253df177_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538253df177_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538253df177_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538253df177_o.jpg',
				'12953825'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953823/',
				'IMG_1357',
				'http://static2.nagi.ee/i/p/518/15/1295382382833a_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295382382833a_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295382382833a_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295382382833a_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295382382833a_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295382382833a_o.jpg',
				'12953823'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953821/',
				'IMG_1355',
				'http://static2.nagi.ee/i/p/518/15/12953821394fa7_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953821394fa7_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953821394fa7_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953821394fa7_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953821394fa7_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953821394fa7_o.jpg',
				'12953821'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953819/',
				'IMG_1354',
				'http://static2.nagi.ee/i/p/518/15/129538197c5444_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538197c5444_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538197c5444_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538197c5444_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538197c5444_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538197c5444_o.jpg',
				'12953819'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953815/',
				'IMG_1352',
				'http://static2.nagi.ee/i/p/518/15/129538154e1797_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538154e1797_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538154e1797_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538154e1797_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538154e1797_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538154e1797_o.jpg',
				'12953815'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953813/',
				'IMG_1350',
				'http://static2.nagi.ee/i/p/518/15/1295381303add3_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295381303add3_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295381303add3_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295381303add3_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295381303add3_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295381303add3_o.jpg',
				'12953813'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953809/',
				'IMG_1342',
				'http://static2.nagi.ee/i/p/518/15/129538090d4a84_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538090d4a84_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538090d4a84_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538090d4a84_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538090d4a84_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129538090d4a84_o.jpg',
				'12953809'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953807/',
				'IMG_1340',
				'http://static2.nagi.ee/i/p/518/15/1295380773174d_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295380773174d_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295380773174d_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295380773174d_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295380773174d_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295380773174d_o.jpg',
				'12953807'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953805/',
				'IMG_1339',
				'http://static2.nagi.ee/i/p/518/15/12953805948313_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953805948313_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953805948313_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953805948313_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953805948313_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953805948313_o.jpg',
				'12953805'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953803/',
				'Oih!',
				'http://static2.nagi.ee/i/p/518/15/12953803d2993f_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953803d2993f_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953803d2993f_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953803d2993f_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953803d2993f_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953803d2993f_o.jpg',
				'12953803'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953801/',
				'IMG_1331',
				'http://static2.nagi.ee/i/p/518/15/12953801e5dd9e_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953801e5dd9e_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953801e5dd9e_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953801e5dd9e_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953801e5dd9e_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953801e5dd9e_o.jpg',
				'12953801'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953799/',
				'IMG_1330',
				'http://static2.nagi.ee/i/p/518/15/12953799a4b27c_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953799a4b27c_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953799a4b27c_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953799a4b27c_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953799a4b27c_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953799a4b27c_o.jpg',
				'12953799'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953797/',
				'IMG_1329',
				'http://static2.nagi.ee/i/p/518/15/12953797ef4df8_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953797ef4df8_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953797ef4df8_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953797ef4df8_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953797ef4df8_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953797ef4df8_o.jpg',
				'12953797'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953795/',
				'IMG_1327',
				'http://static2.nagi.ee/i/p/518/15/129537955bece7_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129537955bece7_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129537955bece7_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129537955bece7_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129537955bece7_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129537955bece7_o.jpg',
				'12953795'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953793/',
				'IMG_1325',
				'http://static2.nagi.ee/i/p/518/15/12953793647fe2_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953793647fe2_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953793647fe2_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953793647fe2_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953793647fe2_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953793647fe2_o.jpg',
				'12953793'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953791/',
				'IMG_1324',
				'http://static2.nagi.ee/i/p/518/15/129537917ba9f4_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/129537917ba9f4_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/129537917ba9f4_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/129537917ba9f4_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/129537917ba9f4_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/129537917ba9f4_o.jpg',
				'12953791'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953789/',
				'IMG_1323',
				'http://static2.nagi.ee/i/p/518/15/1295378926b863_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378926b863_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378926b863_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378926b863_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378926b863_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378926b863_o.jpg',
				'12953789'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953787/',
				'IMG_1322',
				'http://static2.nagi.ee/i/p/518/15/12953787ed32fc_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953787ed32fc_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953787ed32fc_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953787ed32fc_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953787ed32fc_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953787ed32fc_o.jpg',
				'12953787'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953785/',
				'IMG_1321',
				'http://static2.nagi.ee/i/p/518/15/1295378579d835_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378579d835_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378579d835_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378579d835_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378579d835_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378579d835_o.jpg',
				'12953785'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953783/',
				'IMG_1320',
				'http://static2.nagi.ee/i/p/518/15/12953783f24aab_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953783f24aab_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953783f24aab_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953783f24aab_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953783f24aab_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/12953783f24aab_o.jpg',
				'12953783'
			);
Nagi.pics.add(
				'http://nagi.ee/photos/jk/12953781/',
				'IMG_1319',
				'http://static2.nagi.ee/i/p/518/15/1295378115c37f_sq.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378115c37f_t.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378115c37f_s.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378115c37f_m.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378115c37f_l.jpg',
				'http://static2.nagi.ee/i/p/518/15/1295378115c37f_o.jpg',
				'12953781'
			);
Nagi.pics.setContext(nagi_pics_old_id);