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': 'Reigo',
		'lname': 'Küngas',
		'username': 'reigo',
		'src': 'http://static1.nagi.ee/1/p/0/0/5e64a896cd546f9626e873566efd724ee6494e07.jpg',
		'name': 'Reigo Küngas',
		'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/reigo/"' + '" 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/reigo/"' + '" 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/reigo/"' + '" 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/reigo'+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/reigo/20240409/',
				'img_1391',
				'http://static3.nagi.ee/i/p/809/61/20240409ee1528_sq.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240409ee1528_t.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240409ee1528_s.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240409ee1528_m.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240409ee1528_l.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240409ee1528_o.jpg',
				'20240409'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/20240393/',
				'Casela vaateplatvorm',
				'http://static3.nagi.ee/i/p/809/61/20240393daa551_sq.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240393daa551_t.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240393daa551_s.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240393daa551_m.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240393daa551_l.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240393daa551_o.jpg',
				'20240393'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/20240389/',
				'Chamarel värviline maa',
				'http://static3.nagi.ee/i/p/809/61/20240389f83529_sq.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240389f83529_t.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240389f83529_s.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240389f83529_m.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240389f83529_l.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240389f83529_o.jpg',
				'20240389'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/20240387/',
				'Chamarel kosk',
				'http://static3.nagi.ee/i/p/809/61/20240387340504_sq.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240387340504_t.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240387340504_s.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240387340504_m.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240387340504_l.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240387340504_o.jpg',
				'20240387'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/20240385/',
				'Baie du cap / villa chez zaza rand',
				'http://static3.nagi.ee/i/p/809/61/2024038562a76c_sq.jpg',
				'http://static3.nagi.ee/i/p/809/61/2024038562a76c_t.jpg',
				'http://static3.nagi.ee/i/p/809/61/2024038562a76c_s.jpg',
				'http://static3.nagi.ee/i/p/809/61/2024038562a76c_m.jpg',
				'http://static3.nagi.ee/i/p/809/61/2024038562a76c_l.jpg',
				'http://static3.nagi.ee/i/p/809/61/2024038562a76c_o.jpg',
				'20240385'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/20240383/',
				'tige mesilane',
				'http://static3.nagi.ee/i/p/809/61/20240383c5b64f_sq.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240383c5b64f_t.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240383c5b64f_s.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240383c5b64f_m.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240383c5b64f_l.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240383c5b64f_o.jpg',
				'20240383'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/20240381/',
				'bassein',
				'http://static3.nagi.ee/i/p/809/61/2024038169e44f_sq.jpg',
				'http://static3.nagi.ee/i/p/809/61/2024038169e44f_t.jpg',
				'http://static3.nagi.ee/i/p/809/61/2024038169e44f_s.jpg',
				'http://static3.nagi.ee/i/p/809/61/2024038169e44f_m.jpg',
				'http://static3.nagi.ee/i/p/809/61/2024038169e44f_l.jpg',
				'http://static3.nagi.ee/i/p/809/61/2024038169e44f_o.jpg',
				'20240381'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/20240379/',
				'img_1330',
				'http://static3.nagi.ee/i/p/809/61/20240379a35851_sq.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240379a35851_t.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240379a35851_s.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240379a35851_m.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240379a35851_l.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240379a35851_o.jpg',
				'20240379'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/20240377/',
				'Bergamo/Itaalia',
				'http://static3.nagi.ee/i/p/809/61/20240377db49c2_sq.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240377db49c2_t.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240377db49c2_s.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240377db49c2_m.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240377db49c2_l.jpg',
				'http://static3.nagi.ee/i/p/809/61/20240377db49c2_o.jpg',
				'20240377'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/12372133/',
				'Kass liblikas ja lamp',
				'http://static2.nagi.ee/i/p/494/88/123721331fc230_sq.jpg',
				'http://static2.nagi.ee/i/p/494/88/123721331fc230_t.jpg',
				'http://static2.nagi.ee/i/p/494/88/123721331fc230_s.jpg',
				'http://static2.nagi.ee/i/p/494/88/123721331fc230_m.jpg',
				'http://static2.nagi.ee/i/p/494/88/123721331fc230_l.jpg',
				'http://static2.nagi.ee/i/p/494/88/123721331fc230_o.jpg',
				'12372133'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/11649995/',
				'Jalgrattamatk',
				'http://static2.nagi.ee/i/p/465/99/11649995bef326_sq.jpg',
				'http://static2.nagi.ee/i/p/465/99/11649995bef326_t.jpg',
				'http://static2.nagi.ee/i/p/465/99/11649995bef326_s.jpg',
				'http://static2.nagi.ee/i/p/465/99/11649995bef326_m.jpg',
				'http://static2.nagi.ee/i/p/465/99/11649995bef326_l.jpg',
				'http://static2.nagi.ee/i/p/465/99/11649995bef326_o.jpg',
				'11649995'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/11476393/',
				'08072009063',
				'http://static2.nagi.ee/i/p/459/5/114763938d81fb_sq.jpg',
				'http://static2.nagi.ee/i/p/459/5/114763938d81fb_t.jpg',
				'http://static2.nagi.ee/i/p/459/5/114763938d81fb_s.jpg',
				'http://static2.nagi.ee/i/p/459/5/114763938d81fb_m.jpg',
				'http://static2.nagi.ee/i/p/459/5/114763938d81fb_l.jpg',
				'http://static2.nagi.ee/i/p/459/5/114763938d81fb_o.jpg',
				'11476393'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/11466683/',
				'IMG_6975',
				'http://static2.nagi.ee/i/p/458/66/11466683a5e55f_sq.jpg',
				'http://static2.nagi.ee/i/p/458/66/11466683a5e55f_t.jpg',
				'http://static2.nagi.ee/i/p/458/66/11466683a5e55f_s.jpg',
				'http://static2.nagi.ee/i/p/458/66/11466683a5e55f_m.jpg',
				'http://static2.nagi.ee/i/p/458/66/11466683a5e55f_l.jpg',
				'http://static2.nagi.ee/i/p/458/66/11466683a5e55f_o.jpg',
				'11466683'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10835445/',
				'Invasoomlased',
				'http://static2.nagi.ee/i/p/433/41/108354455d2cbc_sq.jpg',
				'http://static2.nagi.ee/i/p/433/41/108354455d2cbc_t.jpg',
				'http://static2.nagi.ee/i/p/433/41/108354455d2cbc_s.jpg',
				'http://static2.nagi.ee/i/p/433/41/108354455d2cbc_m.jpg',
				'http://static2.nagi.ee/i/p/433/41/108354455d2cbc_l.jpg',
				'http://static2.nagi.ee/i/p/433/41/108354455d2cbc_o.jpg',
				'10835445'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776273/',
				'IMG_9418',
				'http://static2.nagi.ee/i/p/431/5/1077627372041f_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077627372041f_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077627372041f_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077627372041f_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077627372041f_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077627372041f_o.jpg',
				'10776273'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776271/',
				'IMG_9390',
				'http://static2.nagi.ee/i/p/431/5/10776271b5539d_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776271b5539d_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776271b5539d_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776271b5539d_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776271b5539d_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776271b5539d_o.jpg',
				'10776271'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776269/',
				'IMG_9436',
				'http://static2.nagi.ee/i/p/431/5/10776269ee0449_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776269ee0449_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776269ee0449_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776269ee0449_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776269ee0449_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776269ee0449_o.jpg',
				'10776269'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776267/',
				'IMG_9441',
				'http://static2.nagi.ee/i/p/431/5/10776267c8b695_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776267c8b695_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776267c8b695_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776267c8b695_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776267c8b695_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776267c8b695_o.jpg',
				'10776267'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776265/',
				'IMG_9396',
				'http://static2.nagi.ee/i/p/431/5/1077626533c316_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077626533c316_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077626533c316_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077626533c316_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077626533c316_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077626533c316_o.jpg',
				'10776265'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776263/',
				'IMG_9379',
				'http://static2.nagi.ee/i/p/431/5/10776263182fcc_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776263182fcc_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776263182fcc_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776263182fcc_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776263182fcc_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776263182fcc_o.jpg',
				'10776263'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776261/',
				'IMG_9395',
				'http://static2.nagi.ee/i/p/431/5/10776261df0285_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776261df0285_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776261df0285_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776261df0285_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776261df0285_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776261df0285_o.jpg',
				'10776261'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776259/',
				'IMG_9412',
				'http://static2.nagi.ee/i/p/431/5/107762596bb82e_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/107762596bb82e_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/107762596bb82e_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/107762596bb82e_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/107762596bb82e_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/107762596bb82e_o.jpg',
				'10776259'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776257/',
				'IMG_9416',
				'http://static2.nagi.ee/i/p/431/5/10776257048f8e_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776257048f8e_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776257048f8e_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776257048f8e_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776257048f8e_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776257048f8e_o.jpg',
				'10776257'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776255/',
				'IMG_9348',
				'http://static2.nagi.ee/i/p/431/5/1077625585ffa6_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077625585ffa6_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077625585ffa6_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077625585ffa6_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077625585ffa6_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/1077625585ffa6_o.jpg',
				'10776255'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776253/',
				'IMG_9415',
				'http://static2.nagi.ee/i/p/431/5/10776253866e4f_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776253866e4f_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776253866e4f_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776253866e4f_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776253866e4f_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776253866e4f_o.jpg',
				'10776253'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776251/',
				'IMG_9423',
				'http://static2.nagi.ee/i/p/431/5/10776251270b75_sq.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776251270b75_t.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776251270b75_s.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776251270b75_m.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776251270b75_l.jpg',
				'http://static2.nagi.ee/i/p/431/5/10776251270b75_o.jpg',
				'10776251'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776249/',
				'IMG_9427',
				'http://static2.nagi.ee/i/p/431/4/10776249a9ba64_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776249a9ba64_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776249a9ba64_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776249a9ba64_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776249a9ba64_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776249a9ba64_o.jpg',
				'10776249'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776247/',
				'IMG_9429',
				'http://static2.nagi.ee/i/p/431/4/10776247213b15_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776247213b15_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776247213b15_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776247213b15_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776247213b15_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776247213b15_o.jpg',
				'10776247'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776245/',
				'IMG_9440',
				'http://static2.nagi.ee/i/p/431/4/10776245951277_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776245951277_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776245951277_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776245951277_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776245951277_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776245951277_o.jpg',
				'10776245'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776243/',
				'IMG_9431',
				'http://static2.nagi.ee/i/p/431/4/107762433be593_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762433be593_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762433be593_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762433be593_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762433be593_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762433be593_o.jpg',
				'10776243'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776241/',
				'IMG_9419',
				'http://static2.nagi.ee/i/p/431/4/107762411571d8_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762411571d8_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762411571d8_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762411571d8_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762411571d8_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762411571d8_o.jpg',
				'10776241'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776239/',
				'IMG_9392',
				'http://static2.nagi.ee/i/p/431/4/10776239e20262_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776239e20262_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776239e20262_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776239e20262_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776239e20262_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776239e20262_o.jpg',
				'10776239'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776237/',
				'IMG_9345',
				'http://static2.nagi.ee/i/p/431/4/10776237a2870b_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776237a2870b_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776237a2870b_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776237a2870b_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776237a2870b_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776237a2870b_o.jpg',
				'10776237'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776235/',
				'IMG_9402',
				'http://static2.nagi.ee/i/p/431/4/10776235ba293b_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776235ba293b_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776235ba293b_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776235ba293b_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776235ba293b_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776235ba293b_o.jpg',
				'10776235'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776233/',
				'IMG_9346',
				'http://static2.nagi.ee/i/p/431/4/10776233d4d512_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776233d4d512_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776233d4d512_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776233d4d512_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776233d4d512_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776233d4d512_o.jpg',
				'10776233'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776231/',
				'IMG_9421',
				'http://static2.nagi.ee/i/p/431/4/10776231fc95e8_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776231fc95e8_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776231fc95e8_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776231fc95e8_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776231fc95e8_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776231fc95e8_o.jpg',
				'10776231'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776229/',
				'IMG_9442',
				'http://static2.nagi.ee/i/p/431/4/1077622972a7df_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077622972a7df_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077622972a7df_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077622972a7df_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077622972a7df_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077622972a7df_o.jpg',
				'10776229'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776227/',
				'IMG_9445',
				'http://static2.nagi.ee/i/p/431/4/1077622763321f_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077622763321f_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077622763321f_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077622763321f_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077622763321f_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077622763321f_o.jpg',
				'10776227'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776225/',
				'IMG_9307',
				'http://static2.nagi.ee/i/p/431/4/10776225b00fd0_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776225b00fd0_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776225b00fd0_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776225b00fd0_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776225b00fd0_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776225b00fd0_o.jpg',
				'10776225'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776223/',
				'IMG_9384',
				'http://static2.nagi.ee/i/p/431/4/107762237501d4_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762237501d4_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762237501d4_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762237501d4_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762237501d4_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107762237501d4_o.jpg',
				'10776223'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776221/',
				'IMG_9308',
				'http://static2.nagi.ee/i/p/431/4/10776221cff0a2_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776221cff0a2_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776221cff0a2_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776221cff0a2_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776221cff0a2_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776221cff0a2_o.jpg',
				'10776221'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776219/',
				'IMG_9428',
				'http://static2.nagi.ee/i/p/431/4/10776219a5c984_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776219a5c984_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776219a5c984_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776219a5c984_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776219a5c984_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776219a5c984_o.jpg',
				'10776219'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776217/',
				'IMG_9434',
				'http://static2.nagi.ee/i/p/431/4/10776217578fdd_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776217578fdd_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776217578fdd_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776217578fdd_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776217578fdd_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776217578fdd_o.jpg',
				'10776217'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776215/',
				'IMG_9305',
				'http://static2.nagi.ee/i/p/431/4/1077621546280f_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077621546280f_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077621546280f_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077621546280f_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077621546280f_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077621546280f_o.jpg',
				'10776215'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776213/',
				'IMG_9432',
				'http://static2.nagi.ee/i/p/431/4/10776213d211df_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776213d211df_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776213d211df_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776213d211df_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776213d211df_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776213d211df_o.jpg',
				'10776213'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776211/',
				'IMG_9264',
				'http://static2.nagi.ee/i/p/431/4/1077621174a9a4_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077621174a9a4_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077621174a9a4_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077621174a9a4_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077621174a9a4_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077621174a9a4_o.jpg',
				'10776211'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776209/',
				'IMG_9422',
				'http://static2.nagi.ee/i/p/431/4/10776209d9737e_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776209d9737e_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776209d9737e_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776209d9737e_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776209d9737e_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776209d9737e_o.jpg',
				'10776209'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776207/',
				'IMG_9414',
				'http://static2.nagi.ee/i/p/431/4/10776207178eb8_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776207178eb8_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776207178eb8_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776207178eb8_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776207178eb8_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776207178eb8_o.jpg',
				'10776207'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776205/',
				'IMG_9322',
				'http://static2.nagi.ee/i/p/431/4/10776205e930f5_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776205e930f5_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776205e930f5_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776205e930f5_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776205e930f5_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776205e930f5_o.jpg',
				'10776205'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776203/',
				'IMG_9426',
				'http://static2.nagi.ee/i/p/431/4/1077620335bed1_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077620335bed1_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077620335bed1_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077620335bed1_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077620335bed1_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077620335bed1_o.jpg',
				'10776203'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776201/',
				'IMG_9405',
				'http://static2.nagi.ee/i/p/431/4/1077620104ad93_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077620104ad93_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077620104ad93_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077620104ad93_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077620104ad93_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077620104ad93_o.jpg',
				'10776201'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776199/',
				'IMG_9174',
				'http://static2.nagi.ee/i/p/431/4/107761991ac0ed_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761991ac0ed_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761991ac0ed_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761991ac0ed_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761991ac0ed_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761991ac0ed_o.jpg',
				'10776199'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776197/',
				'IMG_9417',
				'http://static2.nagi.ee/i/p/431/4/107761970be73e_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761970be73e_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761970be73e_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761970be73e_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761970be73e_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761970be73e_o.jpg',
				'10776197'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776195/',
				'IMG_9303',
				'http://static2.nagi.ee/i/p/431/4/10776195534bac_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776195534bac_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776195534bac_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776195534bac_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776195534bac_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776195534bac_o.jpg',
				'10776195'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776193/',
				'IMG_9377',
				'http://static2.nagi.ee/i/p/431/4/10776193a4583a_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776193a4583a_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776193a4583a_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776193a4583a_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776193a4583a_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776193a4583a_o.jpg',
				'10776193'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776191/',
				'IMG_9404',
				'http://static2.nagi.ee/i/p/431/4/10776191f90a6e_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776191f90a6e_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776191f90a6e_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776191f90a6e_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776191f90a6e_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776191f90a6e_o.jpg',
				'10776191'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776189/',
				'IMG_9397',
				'http://static2.nagi.ee/i/p/431/4/10776189baa870_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776189baa870_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776189baa870_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776189baa870_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776189baa870_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776189baa870_o.jpg',
				'10776189'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776187/',
				'IMG_9424',
				'http://static2.nagi.ee/i/p/431/4/107761870cd76f_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761870cd76f_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761870cd76f_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761870cd76f_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761870cd76f_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761870cd76f_o.jpg',
				'10776187'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776185/',
				'IMG_9386',
				'http://static2.nagi.ee/i/p/431/4/107761857cdcbc_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761857cdcbc_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761857cdcbc_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761857cdcbc_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761857cdcbc_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761857cdcbc_o.jpg',
				'10776185'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776183/',
				'IMG_9353',
				'http://static2.nagi.ee/i/p/431/4/10776183fa3f52_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776183fa3f52_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776183fa3f52_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776183fa3f52_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776183fa3f52_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776183fa3f52_o.jpg',
				'10776183'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776181/',
				'IMG_9400',
				'http://static2.nagi.ee/i/p/431/4/10776181171139_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776181171139_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776181171139_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776181171139_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776181171139_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776181171139_o.jpg',
				'10776181'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776179/',
				'IMG_9388',
				'http://static2.nagi.ee/i/p/431/4/107761791fa437_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761791fa437_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761791fa437_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761791fa437_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761791fa437_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761791fa437_o.jpg',
				'10776179'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776177/',
				'IMG_9408',
				'http://static2.nagi.ee/i/p/431/4/1077617726d095_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077617726d095_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077617726d095_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077617726d095_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077617726d095_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077617726d095_o.jpg',
				'10776177'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776175/',
				'IMG_9378',
				'http://static2.nagi.ee/i/p/431/4/10776175ce410c_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776175ce410c_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776175ce410c_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776175ce410c_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776175ce410c_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776175ce410c_o.jpg',
				'10776175'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776173/',
				'IMG_9406',
				'http://static2.nagi.ee/i/p/431/4/107761737474b2_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761737474b2_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761737474b2_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761737474b2_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761737474b2_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761737474b2_o.jpg',
				'10776173'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776171/',
				'IMG_9409',
				'http://static2.nagi.ee/i/p/431/4/107761712e2ef6_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761712e2ef6_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761712e2ef6_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761712e2ef6_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761712e2ef6_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761712e2ef6_o.jpg',
				'10776171'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776169/',
				'IMG_9407',
				'http://static2.nagi.ee/i/p/431/4/10776169cbc509_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776169cbc509_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776169cbc509_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776169cbc509_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776169cbc509_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776169cbc509_o.jpg',
				'10776169'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776167/',
				'IMG_9320',
				'http://static2.nagi.ee/i/p/431/4/107761673ca376_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761673ca376_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761673ca376_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761673ca376_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761673ca376_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761673ca376_o.jpg',
				'10776167'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776165/',
				'IMG_9352',
				'http://static2.nagi.ee/i/p/431/4/10776165ee7920_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776165ee7920_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776165ee7920_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776165ee7920_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776165ee7920_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776165ee7920_o.jpg',
				'10776165'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776163/',
				'IMG_9309',
				'http://static2.nagi.ee/i/p/431/4/10776163dfc85d_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776163dfc85d_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776163dfc85d_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776163dfc85d_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776163dfc85d_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776163dfc85d_o.jpg',
				'10776163'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776161/',
				'IMG_9357',
				'http://static2.nagi.ee/i/p/431/4/107761619e495a_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761619e495a_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761619e495a_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761619e495a_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761619e495a_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761619e495a_o.jpg',
				'10776161'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776159/',
				'IMG_9358',
				'http://static2.nagi.ee/i/p/431/4/10776159198a21_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776159198a21_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776159198a21_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776159198a21_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776159198a21_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776159198a21_o.jpg',
				'10776159'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776157/',
				'IMG_9382',
				'http://static2.nagi.ee/i/p/431/4/10776157380e7d_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776157380e7d_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776157380e7d_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776157380e7d_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776157380e7d_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776157380e7d_o.jpg',
				'10776157'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776155/',
				'IMG_9401',
				'http://static2.nagi.ee/i/p/431/4/107761558cae59_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761558cae59_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761558cae59_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761558cae59_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761558cae59_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761558cae59_o.jpg',
				'10776155'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776153/',
				'IMG_9391',
				'http://static2.nagi.ee/i/p/431/4/10776153b05cd6_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776153b05cd6_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776153b05cd6_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776153b05cd6_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776153b05cd6_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776153b05cd6_o.jpg',
				'10776153'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776151/',
				'IMG_9381',
				'http://static2.nagi.ee/i/p/431/4/107761519cebcc_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761519cebcc_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761519cebcc_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761519cebcc_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761519cebcc_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761519cebcc_o.jpg',
				'10776151'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776149/',
				'IMG_9403',
				'http://static2.nagi.ee/i/p/431/4/10776149c65e3e_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776149c65e3e_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776149c65e3e_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776149c65e3e_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776149c65e3e_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776149c65e3e_o.jpg',
				'10776149'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776147/',
				'IMG_9328',
				'http://static2.nagi.ee/i/p/431/4/10776147279d0a_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776147279d0a_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776147279d0a_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776147279d0a_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776147279d0a_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776147279d0a_o.jpg',
				'10776147'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776145/',
				'IMG_9393',
				'http://static2.nagi.ee/i/p/431/4/1077614531906b_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077614531906b_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077614531906b_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077614531906b_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077614531906b_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077614531906b_o.jpg',
				'10776145'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776143/',
				'IMG_9398',
				'http://static2.nagi.ee/i/p/431/4/107761431d2b2e_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761431d2b2e_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761431d2b2e_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761431d2b2e_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761431d2b2e_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761431d2b2e_o.jpg',
				'10776143'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776141/',
				'IMG_9383',
				'http://static2.nagi.ee/i/p/431/4/1077614179c17d_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077614179c17d_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077614179c17d_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077614179c17d_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077614179c17d_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077614179c17d_o.jpg',
				'10776141'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776139/',
				'IMG_9333',
				'http://static2.nagi.ee/i/p/431/4/10776139fd762b_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776139fd762b_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776139fd762b_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776139fd762b_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776139fd762b_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776139fd762b_o.jpg',
				'10776139'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776137/',
				'IMG_9380',
				'http://static2.nagi.ee/i/p/431/4/10776137952613_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776137952613_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776137952613_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776137952613_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776137952613_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776137952613_o.jpg',
				'10776137'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776135/',
				'IMG_9355',
				'http://static2.nagi.ee/i/p/431/4/10776135365b55_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776135365b55_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776135365b55_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776135365b55_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776135365b55_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776135365b55_o.jpg',
				'10776135'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776133/',
				'IMG_9354',
				'http://static2.nagi.ee/i/p/431/4/10776133213ec4_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776133213ec4_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776133213ec4_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776133213ec4_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776133213ec4_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776133213ec4_o.jpg',
				'10776133'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776131/',
				'IMG_9385',
				'http://static2.nagi.ee/i/p/431/4/10776131d185af_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776131d185af_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776131d185af_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776131d185af_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776131d185af_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776131d185af_o.jpg',
				'10776131'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776129/',
				'IMG_9387',
				'http://static2.nagi.ee/i/p/431/4/10776129e26998_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776129e26998_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776129e26998_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776129e26998_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776129e26998_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776129e26998_o.jpg',
				'10776129'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776127/',
				'IMG_9363',
				'http://static2.nagi.ee/i/p/431/4/10776127888d04_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776127888d04_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776127888d04_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776127888d04_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776127888d04_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776127888d04_o.jpg',
				'10776127'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776125/',
				'IMG_9350',
				'http://static2.nagi.ee/i/p/431/4/10776125a1a8e6_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776125a1a8e6_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776125a1a8e6_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776125a1a8e6_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776125a1a8e6_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776125a1a8e6_o.jpg',
				'10776125'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776123/',
				'IMG_9351',
				'http://static2.nagi.ee/i/p/431/4/10776123e6a777_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776123e6a777_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776123e6a777_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776123e6a777_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776123e6a777_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776123e6a777_o.jpg',
				'10776123'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776121/',
				'IMG_9356',
				'http://static2.nagi.ee/i/p/431/4/107761212b2e3f_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761212b2e3f_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761212b2e3f_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761212b2e3f_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761212b2e3f_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761212b2e3f_o.jpg',
				'10776121'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776119/',
				'IMG_9339',
				'http://static2.nagi.ee/i/p/431/4/10776119e4326b_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776119e4326b_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776119e4326b_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776119e4326b_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776119e4326b_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776119e4326b_o.jpg',
				'10776119'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776117/',
				'IMG_9359',
				'http://static2.nagi.ee/i/p/431/4/1077611736fa72_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077611736fa72_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077611736fa72_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077611736fa72_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077611736fa72_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/1077611736fa72_o.jpg',
				'10776117'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776115/',
				'IMG_9260',
				'http://static2.nagi.ee/i/p/431/4/107761153dd5c3_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761153dd5c3_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761153dd5c3_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761153dd5c3_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761153dd5c3_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761153dd5c3_o.jpg',
				'10776115'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776113/',
				'IMG_9272',
				'http://static2.nagi.ee/i/p/431/4/10776113d40765_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776113d40765_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776113d40765_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776113d40765_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776113d40765_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776113d40765_o.jpg',
				'10776113'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776111/',
				'IMG_9349',
				'http://static2.nagi.ee/i/p/431/4/10776111852330_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776111852330_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776111852330_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776111852330_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776111852330_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776111852330_o.jpg',
				'10776111'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776109/',
				'IMG_9202',
				'http://static2.nagi.ee/i/p/431/4/107761095fe005_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761095fe005_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761095fe005_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761095fe005_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761095fe005_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/107761095fe005_o.jpg',
				'10776109'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776107/',
				'IMG_9294',
				'http://static2.nagi.ee/i/p/431/4/10776107a94bc4_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776107a94bc4_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776107a94bc4_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776107a94bc4_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776107a94bc4_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776107a94bc4_o.jpg',
				'10776107'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776105/',
				'IMG_9343',
				'http://static2.nagi.ee/i/p/431/4/10776105de7e98_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776105de7e98_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776105de7e98_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776105de7e98_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776105de7e98_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776105de7e98_o.jpg',
				'10776105'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/reigo/10776103/',
				'IMG_9340',
				'http://static2.nagi.ee/i/p/431/4/10776103b85568_sq.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776103b85568_t.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776103b85568_s.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776103b85568_m.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776103b85568_l.jpg',
				'http://static2.nagi.ee/i/p/431/4/10776103b85568_o.jpg',
				'10776103'
			);
Nagi.pics.setContext(nagi_pics_old_id);
