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': 'Eesti',
		'lname': 'Naabrivalve',
		'username': 'naabrivalve',
		'src': 'http://static1.nagi.ee/1/p/0/190/f5118ca217f57b42b0ea090c04c20a1b50126615.jpg/1218696637.jpg',
		'name': 'Eesti Naabrivalve',
		'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/naabrivalve/"' + '" 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/naabrivalve/"' + '" 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/naabrivalve/"' + '" 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/naabrivalve/random/'+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/naabrivalve/7519307/',
				'NV_talgud_2008 058',
				'http://static1.nagi.ee/i/p/300/77/0751930700417c_sq.jpg',
				'http://static1.nagi.ee/i/p/300/77/0751930700417c_t.jpg',
				'http://static1.nagi.ee/i/p/300/77/0751930700417c_s.jpg',
				'http://static1.nagi.ee/i/p/300/77/0751930700417c_m.jpg',
				'http://static1.nagi.ee/i/p/300/77/0751930700417c_l.jpg',
				'http://static1.nagi.ee/i/p/300/77/0751930700417c_o.jpg',
				'7519307'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097489/',
				'DSC_0533x',
				'http://static2.nagi.ee/i/p/403/89/10097489216caa_sq.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097489216caa_t.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097489216caa_s.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097489216caa_m.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097489216caa_l.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097489216caa_o.jpg',
				'10097489'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509861/',
				'Tšokmorova 258',
				'http://static1.nagi.ee/i/p/260/39/065098615c83a0_sq.jpg',
				'http://static1.nagi.ee/i/p/260/39/065098615c83a0_t.jpg',
				'http://static1.nagi.ee/i/p/260/39/065098615c83a0_s.jpg',
				'http://static1.nagi.ee/i/p/260/39/065098615c83a0_m.jpg',
				'http://static1.nagi.ee/i/p/260/39/065098615c83a0_l.jpg',
				'http://static1.nagi.ee/i/p/260/39/065098615c83a0_o.jpg',
				'6509861'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7510697/',
				'naabrivalve_2008 042',
				'http://static1.nagi.ee/i/p/300/42/07510697a4053d_sq.jpg',
				'http://static1.nagi.ee/i/p/300/42/07510697a4053d_t.jpg',
				'http://static1.nagi.ee/i/p/300/42/07510697a4053d_s.jpg',
				'http://static1.nagi.ee/i/p/300/42/07510697a4053d_m.jpg',
				'http://static1.nagi.ee/i/p/300/42/07510697a4053d_l.jpg',
				'http://static1.nagi.ee/i/p/300/42/07510697a4053d_o.jpg',
				'7510697'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7517711/',
				'NV_talgud_2008 020',
				'http://static1.nagi.ee/i/p/300/70/07517711729ba5_sq.jpg',
				'http://static1.nagi.ee/i/p/300/70/07517711729ba5_t.jpg',
				'http://static1.nagi.ee/i/p/300/70/07517711729ba5_s.jpg',
				'http://static1.nagi.ee/i/p/300/70/07517711729ba5_m.jpg',
				'http://static1.nagi.ee/i/p/300/70/07517711729ba5_l.jpg',
				'http://static1.nagi.ee/i/p/300/70/07517711729ba5_o.jpg',
				'7517711'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7506761/',
				'üldkoosolek 2008',
				'http://static1.nagi.ee/i/p/300/27/07506761129905_sq.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506761129905_t.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506761129905_s.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506761129905_m.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506761129905_l.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506761129905_o.jpg',
				'7506761'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510177/',
				'Seminar hotellis Dostuk',
				'http://static1.nagi.ee/i/p/260/40/06510177cc7459_sq.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510177cc7459_t.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510177cc7459_s.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510177cc7459_m.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510177cc7459_l.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510177cc7459_o.jpg',
				'6510177'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7519125/',
				'NV_talgud_2008 054',
				'http://static1.nagi.ee/i/p/300/76/0751912522ac4d_sq.jpg',
				'http://static1.nagi.ee/i/p/300/76/0751912522ac4d_t.jpg',
				'http://static1.nagi.ee/i/p/300/76/0751912522ac4d_s.jpg',
				'http://static1.nagi.ee/i/p/300/76/0751912522ac4d_m.jpg',
				'http://static1.nagi.ee/i/p/300/76/0751912522ac4d_l.jpg',
				'http://static1.nagi.ee/i/p/300/76/0751912522ac4d_o.jpg',
				'7519125'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7517893/',
				'NV_talgud_2008 024',
				'http://static1.nagi.ee/i/p/300/71/07517893ce7491_sq.jpg',
				'http://static1.nagi.ee/i/p/300/71/07517893ce7491_t.jpg',
				'http://static1.nagi.ee/i/p/300/71/07517893ce7491_s.jpg',
				'http://static1.nagi.ee/i/p/300/71/07517893ce7491_m.jpg',
				'http://static1.nagi.ee/i/p/300/71/07517893ce7491_l.jpg',
				'http://static1.nagi.ee/i/p/300/71/07517893ce7491_o.jpg',
				'7517893'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510255/',
				'Pidulik õhtusöök "Starõi Gorod" restoranis',
				'http://static1.nagi.ee/i/p/260/41/06510255529498_sq.jpg',
				'http://static1.nagi.ee/i/p/260/41/06510255529498_t.jpg',
				'http://static1.nagi.ee/i/p/260/41/06510255529498_s.jpg',
				'http://static1.nagi.ee/i/p/260/41/06510255529498_m.jpg',
				'http://static1.nagi.ee/i/p/260/41/06510255529498_l.jpg',
				'http://static1.nagi.ee/i/p/260/41/06510255529498_o.jpg',
				'6510255'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7518963/',
				'NV_talgud_2008 039',
				'http://static1.nagi.ee/i/p/300/75/075189637497a8_sq.jpg',
				'http://static1.nagi.ee/i/p/300/75/075189637497a8_t.jpg',
				'http://static1.nagi.ee/i/p/300/75/075189637497a8_s.jpg',
				'http://static1.nagi.ee/i/p/300/75/075189637497a8_m.jpg',
				'http://static1.nagi.ee/i/p/300/75/075189637497a8_l.jpg',
				'http://static1.nagi.ee/i/p/300/75/075189637497a8_o.jpg',
				'7518963'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7510097/',
				'naabrivalve_2008 034',
				'http://static1.nagi.ee/i/p/300/40/07510097f0970a_sq.jpg',
				'http://static1.nagi.ee/i/p/300/40/07510097f0970a_t.jpg',
				'http://static1.nagi.ee/i/p/300/40/07510097f0970a_s.jpg',
				'http://static1.nagi.ee/i/p/300/40/07510097f0970a_m.jpg',
				'http://static1.nagi.ee/i/p/300/40/07510097f0970a_l.jpg',
				'http://static1.nagi.ee/i/p/300/40/07510097f0970a_o.jpg',
				'7510097'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7519021/',
				'NV_talgud_2008 041',
				'http://static1.nagi.ee/i/p/300/76/07519021ebddd3_sq.jpg',
				'http://static1.nagi.ee/i/p/300/76/07519021ebddd3_t.jpg',
				'http://static1.nagi.ee/i/p/300/76/07519021ebddd3_s.jpg',
				'http://static1.nagi.ee/i/p/300/76/07519021ebddd3_m.jpg',
				'http://static1.nagi.ee/i/p/300/76/07519021ebddd3_l.jpg',
				'http://static1.nagi.ee/i/p/300/76/07519021ebddd3_o.jpg',
				'7519021'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7517369/',
				'NV_talgud_2008 007',
				'http://static1.nagi.ee/i/p/300/69/07517369d86c2d_sq.jpg',
				'http://static1.nagi.ee/i/p/300/69/07517369d86c2d_t.jpg',
				'http://static1.nagi.ee/i/p/300/69/07517369d86c2d_s.jpg',
				'http://static1.nagi.ee/i/p/300/69/07517369d86c2d_m.jpg',
				'http://static1.nagi.ee/i/p/300/69/07517369d86c2d_l.jpg',
				'http://static1.nagi.ee/i/p/300/69/07517369d86c2d_o.jpg',
				'7517369'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097427/',
				'DSC_0516x',
				'http://static2.nagi.ee/i/p/403/89/10097427fe1a03_sq.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097427fe1a03_t.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097427fe1a03_s.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097427fe1a03_m.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097427fe1a03_l.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097427fe1a03_o.jpg',
				'10097427'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510793/',
				'teel mägedesse',
				'http://static1.nagi.ee/i/p/260/43/065107934fbeb9_sq.jpg',
				'http://static1.nagi.ee/i/p/260/43/065107934fbeb9_t.jpg',
				'http://static1.nagi.ee/i/p/260/43/065107934fbeb9_s.jpg',
				'http://static1.nagi.ee/i/p/260/43/065107934fbeb9_m.jpg',
				'http://static1.nagi.ee/i/p/260/43/065107934fbeb9_l.jpg',
				'http://static1.nagi.ee/i/p/260/43/065107934fbeb9_o.jpg',
				'6510793'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509271/',
				'Kõrgõzstani esimene naabrivalve sektor',
				'http://static1.nagi.ee/i/p/260/37/0650927176eeaa_sq.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650927176eeaa_t.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650927176eeaa_s.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650927176eeaa_m.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650927176eeaa_l.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650927176eeaa_o.jpg',
				'6509271'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509597/',
				'Ošš turg',
				'http://static1.nagi.ee/i/p/260/38/06509597aeb553_sq.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509597aeb553_t.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509597aeb553_s.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509597aeb553_m.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509597aeb553_l.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509597aeb553_o.jpg',
				'6509597'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509367/',
				'miilits iga nurga peal',
				'http://static1.nagi.ee/i/p/260/37/06509367d9e8fe_sq.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509367d9e8fe_t.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509367d9e8fe_s.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509367d9e8fe_m.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509367d9e8fe_l.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509367d9e8fe_o.jpg',
				'6509367'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510553/',
				'Pidulik õhtusöök "Starõi Gorod" restoranis',
				'http://static1.nagi.ee/i/p/260/42/06510553ace36f_sq.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510553ace36f_t.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510553ace36f_s.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510553ace36f_m.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510553ace36f_l.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510553ace36f_o.jpg',
				'6510553'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097711/',
				'DSC_0551x',
				'http://static2.nagi.ee/i/p/403/90/1009771150a9ed_sq.jpg',
				'http://static2.nagi.ee/i/p/403/90/1009771150a9ed_t.jpg',
				'http://static2.nagi.ee/i/p/403/90/1009771150a9ed_s.jpg',
				'http://static2.nagi.ee/i/p/403/90/1009771150a9ed_m.jpg',
				'http://static2.nagi.ee/i/p/403/90/1009771150a9ed_l.jpg',
				'http://static2.nagi.ee/i/p/403/90/1009771150a9ed_o.jpg',
				'10097711'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7517829/',
				'NV_talgud_2008 022',
				'http://static1.nagi.ee/i/p/300/71/0751782997077a_sq.jpg',
				'http://static1.nagi.ee/i/p/300/71/0751782997077a_t.jpg',
				'http://static1.nagi.ee/i/p/300/71/0751782997077a_s.jpg',
				'http://static1.nagi.ee/i/p/300/71/0751782997077a_m.jpg',
				'http://static1.nagi.ee/i/p/300/71/0751782997077a_l.jpg',
				'http://static1.nagi.ee/i/p/300/71/0751782997077a_o.jpg',
				'7517829'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7506773/',
				'üldkoosolek 2008',
				'http://static1.nagi.ee/i/p/300/27/07506773365d5e_sq.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506773365d5e_t.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506773365d5e_s.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506773365d5e_m.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506773365d5e_l.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506773365d5e_o.jpg',
				'7506773'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509525/',
				'Ošš turg',
				'http://static1.nagi.ee/i/p/260/38/06509525c32045_sq.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509525c32045_t.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509525c32045_s.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509525c32045_m.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509525c32045_l.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509525c32045_o.jpg',
				'6509525'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7506799/',
				'üldkoosolek 2008',
				'http://static1.nagi.ee/i/p/300/27/07506799b6d70e_sq.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506799b6d70e_t.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506799b6d70e_s.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506799b6d70e_m.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506799b6d70e_l.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506799b6d70e_o.jpg',
				'7506799'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509215/',
				'10.juuni 2008, Biškek Manas lennujaam',
				'http://static1.nagi.ee/i/p/260/36/0650921545649e_sq.jpg',
				'http://static1.nagi.ee/i/p/260/36/0650921545649e_t.jpg',
				'http://static1.nagi.ee/i/p/260/36/0650921545649e_s.jpg',
				'http://static1.nagi.ee/i/p/260/36/0650921545649e_m.jpg',
				'http://static1.nagi.ee/i/p/260/36/0650921545649e_l.jpg',
				'http://static1.nagi.ee/i/p/260/36/0650921545649e_o.jpg',
				'6509215'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7519895/',
				'NV_talgud_2008 069',
				'http://static1.nagi.ee/i/p/300/79/075198955008aa_sq.jpg',
				'http://static1.nagi.ee/i/p/300/79/075198955008aa_t.jpg',
				'http://static1.nagi.ee/i/p/300/79/075198955008aa_s.jpg',
				'http://static1.nagi.ee/i/p/300/79/075198955008aa_m.jpg',
				'http://static1.nagi.ee/i/p/300/79/075198955008aa_l.jpg',
				'http://static1.nagi.ee/i/p/300/79/075198955008aa_o.jpg',
				'7519895'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7507243/',
				'naabrivalve_2008 011',
				'http://static1.nagi.ee/i/p/300/28/07507243899fe2_sq.jpg',
				'http://static1.nagi.ee/i/p/300/28/07507243899fe2_t.jpg',
				'http://static1.nagi.ee/i/p/300/28/07507243899fe2_s.jpg',
				'http://static1.nagi.ee/i/p/300/28/07507243899fe2_m.jpg',
				'http://static1.nagi.ee/i/p/300/28/07507243899fe2_l.jpg',
				'http://static1.nagi.ee/i/p/300/28/07507243899fe2_o.jpg',
				'7507243'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509319/',
				'Apteek',
				'http://static1.nagi.ee/i/p/260/37/065093193f1a43_sq.jpg',
				'http://static1.nagi.ee/i/p/260/37/065093193f1a43_t.jpg',
				'http://static1.nagi.ee/i/p/260/37/065093193f1a43_s.jpg',
				'http://static1.nagi.ee/i/p/260/37/065093193f1a43_m.jpg',
				'http://static1.nagi.ee/i/p/260/37/065093193f1a43_l.jpg',
				'http://static1.nagi.ee/i/p/260/37/065093193f1a43_o.jpg',
				'6509319'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7507131/',
				'naabrivalve_2008 010',
				'http://static1.nagi.ee/i/p/300/28/07507131681b2c_sq.jpg',
				'http://static1.nagi.ee/i/p/300/28/07507131681b2c_t.jpg',
				'http://static1.nagi.ee/i/p/300/28/07507131681b2c_s.jpg',
				'http://static1.nagi.ee/i/p/300/28/07507131681b2c_m.jpg',
				'http://static1.nagi.ee/i/p/300/28/07507131681b2c_l.jpg',
				'http://static1.nagi.ee/i/p/300/28/07507131681b2c_o.jpg',
				'7507131'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7507043/',
				'naabrivalve_2008 009',
				'http://static1.nagi.ee/i/p/300/28/0750704328a47f_sq.jpg',
				'http://static1.nagi.ee/i/p/300/28/0750704328a47f_t.jpg',
				'http://static1.nagi.ee/i/p/300/28/0750704328a47f_s.jpg',
				'http://static1.nagi.ee/i/p/300/28/0750704328a47f_m.jpg',
				'http://static1.nagi.ee/i/p/300/28/0750704328a47f_l.jpg',
				'http://static1.nagi.ee/i/p/300/28/0750704328a47f_o.jpg',
				'7507043'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509893/',
				'Biškeki arhitektuur',
				'http://static1.nagi.ee/i/p/260/39/0650989398726d_sq.jpg',
				'http://static1.nagi.ee/i/p/260/39/0650989398726d_t.jpg',
				'http://static1.nagi.ee/i/p/260/39/0650989398726d_s.jpg',
				'http://static1.nagi.ee/i/p/260/39/0650989398726d_m.jpg',
				'http://static1.nagi.ee/i/p/260/39/0650989398726d_l.jpg',
				'http://static1.nagi.ee/i/p/260/39/0650989398726d_o.jpg',
				'6509893'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510037/',
				'miilitsa auto',
				'http://static1.nagi.ee/i/p/260/40/06510037744912_sq.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510037744912_t.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510037744912_s.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510037744912_m.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510037744912_l.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510037744912_o.jpg',
				'6510037'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097531/',
				'DSC_0545x',
				'http://static2.nagi.ee/i/p/403/90/10097531deadf4_sq.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097531deadf4_t.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097531deadf4_s.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097531deadf4_m.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097531deadf4_l.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097531deadf4_o.jpg',
				'10097531'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097527/',
				'DSC_0544x',
				'http://static2.nagi.ee/i/p/403/90/10097527c4c583_sq.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097527c4c583_t.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097527c4c583_s.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097527c4c583_m.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097527c4c583_l.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097527c4c583_o.jpg',
				'10097527'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7510771/',
				'naabrivalve_2008 043',
				'http://static1.nagi.ee/i/p/300/43/07510771209c31_sq.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510771209c31_t.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510771209c31_s.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510771209c31_m.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510771209c31_l.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510771209c31_o.jpg',
				'7510771'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509581/',
				'Ošš turg',
				'http://static1.nagi.ee/i/p/260/38/065095819f2658_sq.jpg',
				'http://static1.nagi.ee/i/p/260/38/065095819f2658_t.jpg',
				'http://static1.nagi.ee/i/p/260/38/065095819f2658_s.jpg',
				'http://static1.nagi.ee/i/p/260/38/065095819f2658_m.jpg',
				'http://static1.nagi.ee/i/p/260/38/065095819f2658_l.jpg',
				'http://static1.nagi.ee/i/p/260/38/065095819f2658_o.jpg',
				'6509581'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7507877/',
				'naabrivalve_2008 018',
				'http://static1.nagi.ee/i/p/300/31/075078774e3114_sq.jpg',
				'http://static1.nagi.ee/i/p/300/31/075078774e3114_t.jpg',
				'http://static1.nagi.ee/i/p/300/31/075078774e3114_s.jpg',
				'http://static1.nagi.ee/i/p/300/31/075078774e3114_m.jpg',
				'http://static1.nagi.ee/i/p/300/31/075078774e3114_l.jpg',
				'http://static1.nagi.ee/i/p/300/31/075078774e3114_o.jpg',
				'7507877'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097421/',
				'DSC_0514x',
				'http://static2.nagi.ee/i/p/403/89/100974215616c7_sq.jpg',
				'http://static2.nagi.ee/i/p/403/89/100974215616c7_t.jpg',
				'http://static2.nagi.ee/i/p/403/89/100974215616c7_s.jpg',
				'http://static2.nagi.ee/i/p/403/89/100974215616c7_m.jpg',
				'http://static2.nagi.ee/i/p/403/89/100974215616c7_l.jpg',
				'http://static2.nagi.ee/i/p/403/89/100974215616c7_o.jpg',
				'10097421'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7519383/',
				'NV_talgud_2008 059',
				'http://static1.nagi.ee/i/p/300/77/075193830d7044_sq.jpg',
				'http://static1.nagi.ee/i/p/300/77/075193830d7044_t.jpg',
				'http://static1.nagi.ee/i/p/300/77/075193830d7044_s.jpg',
				'http://static1.nagi.ee/i/p/300/77/075193830d7044_m.jpg',
				'http://static1.nagi.ee/i/p/300/77/075193830d7044_l.jpg',
				'http://static1.nagi.ee/i/p/300/77/075193830d7044_o.jpg',
				'7519383'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097441/',
				'DSC_0521x',
				'http://static2.nagi.ee/i/p/403/89/10097441dcd234_sq.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097441dcd234_t.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097441dcd234_s.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097441dcd234_m.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097441dcd234_l.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097441dcd234_o.jpg',
				'10097441'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097437/',
				'DSC_0520x',
				'http://static2.nagi.ee/i/p/403/89/100974376d6c2b_sq.jpg',
				'http://static2.nagi.ee/i/p/403/89/100974376d6c2b_t.jpg',
				'http://static2.nagi.ee/i/p/403/89/100974376d6c2b_s.jpg',
				'http://static2.nagi.ee/i/p/403/89/100974376d6c2b_m.jpg',
				'http://static2.nagi.ee/i/p/403/89/100974376d6c2b_l.jpg',
				'http://static2.nagi.ee/i/p/403/89/100974376d6c2b_o.jpg',
				'10097437'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509927/',
				'kanep',
				'http://static1.nagi.ee/i/p/260/39/06509927b4d01c_sq.jpg',
				'http://static1.nagi.ee/i/p/260/39/06509927b4d01c_t.jpg',
				'http://static1.nagi.ee/i/p/260/39/06509927b4d01c_s.jpg',
				'http://static1.nagi.ee/i/p/260/39/06509927b4d01c_m.jpg',
				'http://static1.nagi.ee/i/p/260/39/06509927b4d01c_l.jpg',
				'http://static1.nagi.ee/i/p/260/39/06509927b4d01c_o.jpg',
				'6509927'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7517975/',
				'NV_talgud_2008 027',
				'http://static1.nagi.ee/i/p/300/71/07517975453f91_sq.jpg',
				'http://static1.nagi.ee/i/p/300/71/07517975453f91_t.jpg',
				'http://static1.nagi.ee/i/p/300/71/07517975453f91_s.jpg',
				'http://static1.nagi.ee/i/p/300/71/07517975453f91_m.jpg',
				'http://static1.nagi.ee/i/p/300/71/07517975453f91_l.jpg',
				'http://static1.nagi.ee/i/p/300/71/07517975453f91_o.jpg',
				'7517975'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7518067/',
				'NV_talgud_2008 028',
				'http://static1.nagi.ee/i/p/300/72/07518067eacc8d_sq.jpg',
				'http://static1.nagi.ee/i/p/300/72/07518067eacc8d_t.jpg',
				'http://static1.nagi.ee/i/p/300/72/07518067eacc8d_s.jpg',
				'http://static1.nagi.ee/i/p/300/72/07518067eacc8d_m.jpg',
				'http://static1.nagi.ee/i/p/300/72/07518067eacc8d_l.jpg',
				'http://static1.nagi.ee/i/p/300/72/07518067eacc8d_o.jpg',
				'7518067'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510053/',
				'Tiina, Sergei ja roosipõld',
				'http://static1.nagi.ee/i/p/260/40/06510053d58766_sq.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510053d58766_t.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510053d58766_s.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510053d58766_m.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510053d58766_l.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510053d58766_o.jpg',
				'6510053'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6511039/',
				'Ala-Artša looduskaitseala',
				'http://static1.nagi.ee/i/p/260/44/06511039d7385e_sq.jpg',
				'http://static1.nagi.ee/i/p/260/44/06511039d7385e_t.jpg',
				'http://static1.nagi.ee/i/p/260/44/06511039d7385e_s.jpg',
				'http://static1.nagi.ee/i/p/260/44/06511039d7385e_m.jpg',
				'http://static1.nagi.ee/i/p/260/44/06511039d7385e_l.jpg',
				'http://static1.nagi.ee/i/p/260/44/06511039d7385e_o.jpg',
				'6511039'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509633/',
				'Ošš turg',
				'http://static1.nagi.ee/i/p/260/38/06509633cbe10b_sq.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509633cbe10b_t.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509633cbe10b_s.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509633cbe10b_m.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509633cbe10b_l.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509633cbe10b_o.jpg',
				'6509633'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097679/',
				'DSC_0549x',
				'http://static2.nagi.ee/i/p/403/90/1009767950c3cd_sq.jpg',
				'http://static2.nagi.ee/i/p/403/90/1009767950c3cd_t.jpg',
				'http://static2.nagi.ee/i/p/403/90/1009767950c3cd_s.jpg',
				'http://static2.nagi.ee/i/p/403/90/1009767950c3cd_m.jpg',
				'http://static2.nagi.ee/i/p/403/90/1009767950c3cd_l.jpg',
				'http://static2.nagi.ee/i/p/403/90/1009767950c3cd_o.jpg',
				'10097679'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510207/',
				'Seminar hotellis Dostuk',
				'http://static1.nagi.ee/i/p/260/40/06510207f5dc95_sq.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510207f5dc95_t.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510207f5dc95_s.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510207f5dc95_m.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510207f5dc95_l.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510207f5dc95_o.jpg',
				'6510207'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509455/',
				'Ošš turg',
				'http://static1.nagi.ee/i/p/260/37/0650945594f5d8_sq.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650945594f5d8_t.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650945594f5d8_s.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650945594f5d8_m.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650945594f5d8_l.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650945594f5d8_o.jpg',
				'6509455'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097461/',
				'DSC_0526x',
				'http://static2.nagi.ee/i/p/403/89/10097461612012_sq.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097461612012_t.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097461612012_s.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097461612012_m.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097461612012_l.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097461612012_o.jpg',
				'10097461'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097453/',
				'DSC_0524x',
				'http://static2.nagi.ee/i/p/403/89/10097453db6840_sq.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097453db6840_t.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097453db6840_s.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097453db6840_m.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097453db6840_l.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097453db6840_o.jpg',
				'10097453'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7509613/',
				'naabrivalve_2008 031',
				'http://static1.nagi.ee/i/p/300/38/07509613a723b5_sq.jpg',
				'http://static1.nagi.ee/i/p/300/38/07509613a723b5_t.jpg',
				'http://static1.nagi.ee/i/p/300/38/07509613a723b5_s.jpg',
				'http://static1.nagi.ee/i/p/300/38/07509613a723b5_m.jpg',
				'http://static1.nagi.ee/i/p/300/38/07509613a723b5_l.jpg',
				'http://static1.nagi.ee/i/p/300/38/07509613a723b5_o.jpg',
				'7509613'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509547/',
				'Ošš turg',
				'http://static1.nagi.ee/i/p/260/38/06509547392786_sq.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509547392786_t.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509547392786_s.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509547392786_m.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509547392786_l.jpg',
				'http://static1.nagi.ee/i/p/260/38/06509547392786_o.jpg',
				'6509547'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7519797/',
				'NV_talgud_2008 063',
				'http://static1.nagi.ee/i/p/300/79/07519797e50b46_sq.jpg',
				'http://static1.nagi.ee/i/p/300/79/07519797e50b46_t.jpg',
				'http://static1.nagi.ee/i/p/300/79/07519797e50b46_s.jpg',
				'http://static1.nagi.ee/i/p/300/79/07519797e50b46_m.jpg',
				'http://static1.nagi.ee/i/p/300/79/07519797e50b46_l.jpg',
				'http://static1.nagi.ee/i/p/300/79/07519797e50b46_o.jpg',
				'7519797'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7510959/',
				'naabrivalve_2008 045',
				'http://static1.nagi.ee/i/p/300/43/07510959e29a94_sq.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510959e29a94_t.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510959e29a94_s.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510959e29a94_m.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510959e29a94_l.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510959e29a94_o.jpg',
				'7510959'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097415/',
				'DSC_0513x',
				'http://static2.nagi.ee/i/p/403/89/10097415682c3e_sq.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097415682c3e_t.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097415682c3e_s.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097415682c3e_m.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097415682c3e_l.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097415682c3e_o.jpg',
				'10097415'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7518451/',
				'NV_talgud_2008 035',
				'http://static1.nagi.ee/i/p/300/73/07518451c11fdb_sq.jpg',
				'http://static1.nagi.ee/i/p/300/73/07518451c11fdb_t.jpg',
				'http://static1.nagi.ee/i/p/300/73/07518451c11fdb_s.jpg',
				'http://static1.nagi.ee/i/p/300/73/07518451c11fdb_m.jpg',
				'http://static1.nagi.ee/i/p/300/73/07518451c11fdb_l.jpg',
				'http://static1.nagi.ee/i/p/300/73/07518451c11fdb_o.jpg',
				'7518451'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510609/',
				'Pidulik õhtusöök "Starõi Gorod" restoranis',
				'http://static1.nagi.ee/i/p/260/42/06510609d5b155_sq.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510609d5b155_t.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510609d5b155_s.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510609d5b155_m.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510609d5b155_l.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510609d5b155_o.jpg',
				'6510609'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7507735/',
				'naabrivalve_2008 015',
				'http://static1.nagi.ee/i/p/300/30/0750773561d1c8_sq.jpg',
				'http://static1.nagi.ee/i/p/300/30/0750773561d1c8_t.jpg',
				'http://static1.nagi.ee/i/p/300/30/0750773561d1c8_s.jpg',
				'http://static1.nagi.ee/i/p/300/30/0750773561d1c8_m.jpg',
				'http://static1.nagi.ee/i/p/300/30/0750773561d1c8_l.jpg',
				'http://static1.nagi.ee/i/p/300/30/0750773561d1c8_o.jpg',
				'7507735'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7506949/',
				'üldkoosolek 2008',
				'http://static1.nagi.ee/i/p/300/27/07506949f057fc_sq.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506949f057fc_t.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506949f057fc_s.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506949f057fc_m.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506949f057fc_l.jpg',
				'http://static1.nagi.ee/i/p/300/27/07506949f057fc_o.jpg',
				'7506949'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510773/',
				'teel mägedesse',
				'http://static1.nagi.ee/i/p/260/43/06510773bc30fd_sq.jpg',
				'http://static1.nagi.ee/i/p/260/43/06510773bc30fd_t.jpg',
				'http://static1.nagi.ee/i/p/260/43/06510773bc30fd_s.jpg',
				'http://static1.nagi.ee/i/p/260/43/06510773bc30fd_m.jpg',
				'http://static1.nagi.ee/i/p/260/43/06510773bc30fd_l.jpg',
				'http://static1.nagi.ee/i/p/260/43/06510773bc30fd_o.jpg',
				'6510773'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510707/',
				'turg.. Ošš turg ',
				'http://static1.nagi.ee/i/p/260/42/06510707be5c13_sq.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510707be5c13_t.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510707be5c13_s.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510707be5c13_m.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510707be5c13_l.jpg',
				'http://static1.nagi.ee/i/p/260/42/06510707be5c13_o.jpg',
				'6510707'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7509187/',
				'naabrivalve_2008 029',
				'http://static1.nagi.ee/i/p/300/36/07509187ab4b46_sq.jpg',
				'http://static1.nagi.ee/i/p/300/36/07509187ab4b46_t.jpg',
				'http://static1.nagi.ee/i/p/300/36/07509187ab4b46_s.jpg',
				'http://static1.nagi.ee/i/p/300/36/07509187ab4b46_m.jpg',
				'http://static1.nagi.ee/i/p/300/36/07509187ab4b46_l.jpg',
				'http://static1.nagi.ee/i/p/300/36/07509187ab4b46_o.jpg',
				'7509187'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7519863/',
				'NV_talgud_2008 067',
				'http://static1.nagi.ee/i/p/300/79/07519863fdbc7a_sq.jpg',
				'http://static1.nagi.ee/i/p/300/79/07519863fdbc7a_t.jpg',
				'http://static1.nagi.ee/i/p/300/79/07519863fdbc7a_s.jpg',
				'http://static1.nagi.ee/i/p/300/79/07519863fdbc7a_m.jpg',
				'http://static1.nagi.ee/i/p/300/79/07519863fdbc7a_l.jpg',
				'http://static1.nagi.ee/i/p/300/79/07519863fdbc7a_o.jpg',
				'7519863'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7517649/',
				'NV_talgud_2008 018',
				'http://static1.nagi.ee/i/p/300/70/07517649409aa8_sq.jpg',
				'http://static1.nagi.ee/i/p/300/70/07517649409aa8_t.jpg',
				'http://static1.nagi.ee/i/p/300/70/07517649409aa8_s.jpg',
				'http://static1.nagi.ee/i/p/300/70/07517649409aa8_m.jpg',
				'http://static1.nagi.ee/i/p/300/70/07517649409aa8_l.jpg',
				'http://static1.nagi.ee/i/p/300/70/07517649409aa8_o.jpg',
				'7517649'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7510243/',
				'naabrivalve_2008 037',
				'http://static1.nagi.ee/i/p/300/40/075102439c0f0c_sq.jpg',
				'http://static1.nagi.ee/i/p/300/40/075102439c0f0c_t.jpg',
				'http://static1.nagi.ee/i/p/300/40/075102439c0f0c_s.jpg',
				'http://static1.nagi.ee/i/p/300/40/075102439c0f0c_m.jpg',
				'http://static1.nagi.ee/i/p/300/40/075102439c0f0c_l.jpg',
				'http://static1.nagi.ee/i/p/300/40/075102439c0f0c_o.jpg',
				'7510243'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7508691/',
				'naabrivalve_2008 027',
				'http://static1.nagi.ee/i/p/300/34/07508691b68981_sq.jpg',
				'http://static1.nagi.ee/i/p/300/34/07508691b68981_t.jpg',
				'http://static1.nagi.ee/i/p/300/34/07508691b68981_s.jpg',
				'http://static1.nagi.ee/i/p/300/34/07508691b68981_m.jpg',
				'http://static1.nagi.ee/i/p/300/34/07508691b68981_l.jpg',
				'http://static1.nagi.ee/i/p/300/34/07508691b68981_o.jpg',
				'7508691'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510489/',
				'Pidulik õhtusöök "Starõi Gorod" restoranis',
				'http://static1.nagi.ee/i/p/260/41/0651048912915b_sq.jpg',
				'http://static1.nagi.ee/i/p/260/41/0651048912915b_t.jpg',
				'http://static1.nagi.ee/i/p/260/41/0651048912915b_s.jpg',
				'http://static1.nagi.ee/i/p/260/41/0651048912915b_m.jpg',
				'http://static1.nagi.ee/i/p/260/41/0651048912915b_l.jpg',
				'http://static1.nagi.ee/i/p/260/41/0651048912915b_o.jpg',
				'6510489'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509645/',
				'Ošš turg',
				'http://static1.nagi.ee/i/p/260/38/0650964590d4e2_sq.jpg',
				'http://static1.nagi.ee/i/p/260/38/0650964590d4e2_t.jpg',
				'http://static1.nagi.ee/i/p/260/38/0650964590d4e2_s.jpg',
				'http://static1.nagi.ee/i/p/260/38/0650964590d4e2_m.jpg',
				'http://static1.nagi.ee/i/p/260/38/0650964590d4e2_l.jpg',
				'http://static1.nagi.ee/i/p/260/38/0650964590d4e2_o.jpg',
				'6509645'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7518537/',
				'NV_talgud_2008 036',
				'http://static1.nagi.ee/i/p/300/74/07518537219ac3_sq.jpg',
				'http://static1.nagi.ee/i/p/300/74/07518537219ac3_t.jpg',
				'http://static1.nagi.ee/i/p/300/74/07518537219ac3_s.jpg',
				'http://static1.nagi.ee/i/p/300/74/07518537219ac3_m.jpg',
				'http://static1.nagi.ee/i/p/300/74/07518537219ac3_l.jpg',
				'http://static1.nagi.ee/i/p/300/74/07518537219ac3_o.jpg',
				'7518537'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097503/',
				'DSC_0538x',
				'http://static2.nagi.ee/i/p/403/90/100975039dfdef_sq.jpg',
				'http://static2.nagi.ee/i/p/403/90/100975039dfdef_t.jpg',
				'http://static2.nagi.ee/i/p/403/90/100975039dfdef_s.jpg',
				'http://static2.nagi.ee/i/p/403/90/100975039dfdef_m.jpg',
				'http://static2.nagi.ee/i/p/403/90/100975039dfdef_l.jpg',
				'http://static2.nagi.ee/i/p/403/90/100975039dfdef_o.jpg',
				'10097503'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7510845/',
				'naabrivalve_2008 044',
				'http://static1.nagi.ee/i/p/300/43/07510845ee5500_sq.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510845ee5500_t.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510845ee5500_s.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510845ee5500_m.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510845ee5500_l.jpg',
				'http://static1.nagi.ee/i/p/300/43/07510845ee5500_o.jpg',
				'7510845'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510105/',
				'Seminar hotellis Dostuk',
				'http://static1.nagi.ee/i/p/260/40/06510105514df3_sq.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510105514df3_t.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510105514df3_s.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510105514df3_m.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510105514df3_l.jpg',
				'http://static1.nagi.ee/i/p/260/40/06510105514df3_o.jpg',
				'6510105'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097517/',
				'DSC_0542x',
				'http://static2.nagi.ee/i/p/403/90/10097517932bc9_sq.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097517932bc9_t.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097517932bc9_s.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097517932bc9_m.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097517932bc9_l.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097517932bc9_o.jpg',
				'10097517'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509331/',
				'Biškek',
				'http://static1.nagi.ee/i/p/260/37/06509331442707_sq.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509331442707_t.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509331442707_s.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509331442707_m.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509331442707_l.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509331442707_o.jpg',
				'6509331'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6510383/',
				'Pidulik õhtusöök "Starõi Gorod" restoranis',
				'http://static1.nagi.ee/i/p/260/41/065103836b5fbd_sq.jpg',
				'http://static1.nagi.ee/i/p/260/41/065103836b5fbd_t.jpg',
				'http://static1.nagi.ee/i/p/260/41/065103836b5fbd_s.jpg',
				'http://static1.nagi.ee/i/p/260/41/065103836b5fbd_m.jpg',
				'http://static1.nagi.ee/i/p/260/41/065103836b5fbd_l.jpg',
				'http://static1.nagi.ee/i/p/260/41/065103836b5fbd_o.jpg',
				'6510383'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509421/',
				'Biškek on täis kõrgeid puid',
				'http://static1.nagi.ee/i/p/260/37/06509421b80a5b_sq.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509421b80a5b_t.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509421b80a5b_s.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509421b80a5b_m.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509421b80a5b_l.jpg',
				'http://static1.nagi.ee/i/p/260/37/06509421b80a5b_o.jpg',
				'6509421'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097435/',
				'DSC_0519x',
				'http://static2.nagi.ee/i/p/403/89/10097435b557fa_sq.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097435b557fa_t.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097435b557fa_s.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097435b557fa_m.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097435b557fa_l.jpg',
				'http://static2.nagi.ee/i/p/403/89/10097435b557fa_o.jpg',
				'10097435'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509225/',
				'meie köök',
				'http://static1.nagi.ee/i/p/260/36/0650922511c21f_sq.jpg',
				'http://static1.nagi.ee/i/p/260/36/0650922511c21f_t.jpg',
				'http://static1.nagi.ee/i/p/260/36/0650922511c21f_s.jpg',
				'http://static1.nagi.ee/i/p/260/36/0650922511c21f_m.jpg',
				'http://static1.nagi.ee/i/p/260/36/0650922511c21f_l.jpg',
				'http://static1.nagi.ee/i/p/260/36/0650922511c21f_o.jpg',
				'6509225'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097655/',
				'DSC_0548x',
				'http://static2.nagi.ee/i/p/403/90/10097655c78f59_sq.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097655c78f59_t.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097655c78f59_s.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097655c78f59_m.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097655c78f59_l.jpg',
				'http://static2.nagi.ee/i/p/403/90/10097655c78f59_o.jpg',
				'10097655'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/6509485/',
				'Ošš turg',
				'http://static1.nagi.ee/i/p/260/37/0650948571417c_sq.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650948571417c_t.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650948571417c_s.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650948571417c_m.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650948571417c_l.jpg',
				'http://static1.nagi.ee/i/p/260/37/0650948571417c_o.jpg',
				'6509485'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7507339/',
				'naabrivalve_2008 012',
				'http://static1.nagi.ee/i/p/300/29/075073393a591d_sq.jpg',
				'http://static1.nagi.ee/i/p/300/29/075073393a591d_t.jpg',
				'http://static1.nagi.ee/i/p/300/29/075073393a591d_s.jpg',
				'http://static1.nagi.ee/i/p/300/29/075073393a591d_m.jpg',
				'http://static1.nagi.ee/i/p/300/29/075073393a591d_l.jpg',
				'http://static1.nagi.ee/i/p/300/29/075073393a591d_o.jpg',
				'7507339'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7507989/',
				'naabrivalve_2008 022',
				'http://static1.nagi.ee/i/p/300/31/0750798920aca4_sq.jpg',
				'http://static1.nagi.ee/i/p/300/31/0750798920aca4_t.jpg',
				'http://static1.nagi.ee/i/p/300/31/0750798920aca4_s.jpg',
				'http://static1.nagi.ee/i/p/300/31/0750798920aca4_m.jpg',
				'http://static1.nagi.ee/i/p/300/31/0750798920aca4_l.jpg',
				'http://static1.nagi.ee/i/p/300/31/0750798920aca4_o.jpg',
				'7507989'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7508073/',
				'naabrivalve_2008 023',
				'http://static1.nagi.ee/i/p/300/32/075080731c2611_sq.jpg',
				'http://static1.nagi.ee/i/p/300/32/075080731c2611_t.jpg',
				'http://static1.nagi.ee/i/p/300/32/075080731c2611_s.jpg',
				'http://static1.nagi.ee/i/p/300/32/075080731c2611_m.jpg',
				'http://static1.nagi.ee/i/p/300/32/075080731c2611_l.jpg',
				'http://static1.nagi.ee/i/p/300/32/075080731c2611_o.jpg',
				'7508073'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7508227/',
				'naabrivalve_2008 024',
				'http://static1.nagi.ee/i/p/300/32/07508227e290f8_sq.jpg',
				'http://static1.nagi.ee/i/p/300/32/07508227e290f8_t.jpg',
				'http://static1.nagi.ee/i/p/300/32/07508227e290f8_s.jpg',
				'http://static1.nagi.ee/i/p/300/32/07508227e290f8_m.jpg',
				'http://static1.nagi.ee/i/p/300/32/07508227e290f8_l.jpg',
				'http://static1.nagi.ee/i/p/300/32/07508227e290f8_o.jpg',
				'7508227'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7508451/',
				'naabrivalve_2008 025',
				'http://static1.nagi.ee/i/p/300/33/0750845165d3e8_sq.jpg',
				'http://static1.nagi.ee/i/p/300/33/0750845165d3e8_t.jpg',
				'http://static1.nagi.ee/i/p/300/33/0750845165d3e8_s.jpg',
				'http://static1.nagi.ee/i/p/300/33/0750845165d3e8_m.jpg',
				'http://static1.nagi.ee/i/p/300/33/0750845165d3e8_l.jpg',
				'http://static1.nagi.ee/i/p/300/33/0750845165d3e8_o.jpg',
				'7508451'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7508561/',
				'naabrivalve_2008 026',
				'http://static1.nagi.ee/i/p/300/34/07508561960406_sq.jpg',
				'http://static1.nagi.ee/i/p/300/34/07508561960406_t.jpg',
				'http://static1.nagi.ee/i/p/300/34/07508561960406_s.jpg',
				'http://static1.nagi.ee/i/p/300/34/07508561960406_m.jpg',
				'http://static1.nagi.ee/i/p/300/34/07508561960406_l.jpg',
				'http://static1.nagi.ee/i/p/300/34/07508561960406_o.jpg',
				'7508561'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7508987/',
				'naabrivalve_2008 028',
				'http://static1.nagi.ee/i/p/300/35/075089876fcaf9_sq.jpg',
				'http://static1.nagi.ee/i/p/300/35/075089876fcaf9_t.jpg',
				'http://static1.nagi.ee/i/p/300/35/075089876fcaf9_s.jpg',
				'http://static1.nagi.ee/i/p/300/35/075089876fcaf9_m.jpg',
				'http://static1.nagi.ee/i/p/300/35/075089876fcaf9_l.jpg',
				'http://static1.nagi.ee/i/p/300/35/075089876fcaf9_o.jpg',
				'7508987'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7509355/',
				'naabrivalve_2008 030',
				'http://static1.nagi.ee/i/p/300/37/07509355236de6_sq.jpg',
				'http://static1.nagi.ee/i/p/300/37/07509355236de6_t.jpg',
				'http://static1.nagi.ee/i/p/300/37/07509355236de6_s.jpg',
				'http://static1.nagi.ee/i/p/300/37/07509355236de6_m.jpg',
				'http://static1.nagi.ee/i/p/300/37/07509355236de6_l.jpg',
				'http://static1.nagi.ee/i/p/300/37/07509355236de6_o.jpg',
				'7509355'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7510611/',
				'naabrivalve_2008 041',
				'http://static1.nagi.ee/i/p/300/42/0751061197dad0_sq.jpg',
				'http://static1.nagi.ee/i/p/300/42/0751061197dad0_t.jpg',
				'http://static1.nagi.ee/i/p/300/42/0751061197dad0_s.jpg',
				'http://static1.nagi.ee/i/p/300/42/0751061197dad0_m.jpg',
				'http://static1.nagi.ee/i/p/300/42/0751061197dad0_l.jpg',
				'http://static1.nagi.ee/i/p/300/42/0751061197dad0_o.jpg',
				'7510611'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7510503/',
				'naabrivalve_2008 040',
				'http://static1.nagi.ee/i/p/300/42/07510503549ffe_sq.jpg',
				'http://static1.nagi.ee/i/p/300/42/07510503549ffe_t.jpg',
				'http://static1.nagi.ee/i/p/300/42/07510503549ffe_s.jpg',
				'http://static1.nagi.ee/i/p/300/42/07510503549ffe_m.jpg',
				'http://static1.nagi.ee/i/p/300/42/07510503549ffe_l.jpg',
				'http://static1.nagi.ee/i/p/300/42/07510503549ffe_o.jpg',
				'7510503'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7510383/',
				'naabrivalve_2008 039',
				'http://static1.nagi.ee/i/p/300/41/07510383d3dae8_sq.jpg',
				'http://static1.nagi.ee/i/p/300/41/07510383d3dae8_t.jpg',
				'http://static1.nagi.ee/i/p/300/41/07510383d3dae8_s.jpg',
				'http://static1.nagi.ee/i/p/300/41/07510383d3dae8_m.jpg',
				'http://static1.nagi.ee/i/p/300/41/07510383d3dae8_l.jpg',
				'http://static1.nagi.ee/i/p/300/41/07510383d3dae8_o.jpg',
				'7510383'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7510187/',
				'naabrivalve_2008 036',
				'http://static1.nagi.ee/i/p/300/40/07510187dea57d_sq.jpg',
				'http://static1.nagi.ee/i/p/300/40/07510187dea57d_t.jpg',
				'http://static1.nagi.ee/i/p/300/40/07510187dea57d_s.jpg',
				'http://static1.nagi.ee/i/p/300/40/07510187dea57d_m.jpg',
				'http://static1.nagi.ee/i/p/300/40/07510187dea57d_l.jpg',
				'http://static1.nagi.ee/i/p/300/40/07510187dea57d_o.jpg',
				'7510187'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7510161/',
				'naabrivalve_2008 035',
				'http://static1.nagi.ee/i/p/300/40/0751016154014a_sq.jpg',
				'http://static1.nagi.ee/i/p/300/40/0751016154014a_t.jpg',
				'http://static1.nagi.ee/i/p/300/40/0751016154014a_s.jpg',
				'http://static1.nagi.ee/i/p/300/40/0751016154014a_m.jpg',
				'http://static1.nagi.ee/i/p/300/40/0751016154014a_l.jpg',
				'http://static1.nagi.ee/i/p/300/40/0751016154014a_o.jpg',
				'7510161'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7509959/',
				'naabrivalve_2008 033',
				'http://static1.nagi.ee/i/p/300/39/075099594d4af1_sq.jpg',
				'http://static1.nagi.ee/i/p/300/39/075099594d4af1_t.jpg',
				'http://static1.nagi.ee/i/p/300/39/075099594d4af1_s.jpg',
				'http://static1.nagi.ee/i/p/300/39/075099594d4af1_m.jpg',
				'http://static1.nagi.ee/i/p/300/39/075099594d4af1_l.jpg',
				'http://static1.nagi.ee/i/p/300/39/075099594d4af1_o.jpg',
				'7509959'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/7509811/',
				'naabrivalve_2008 032',
				'http://static1.nagi.ee/i/p/300/39/07509811effa9e_sq.jpg',
				'http://static1.nagi.ee/i/p/300/39/07509811effa9e_t.jpg',
				'http://static1.nagi.ee/i/p/300/39/07509811effa9e_s.jpg',
				'http://static1.nagi.ee/i/p/300/39/07509811effa9e_m.jpg',
				'http://static1.nagi.ee/i/p/300/39/07509811effa9e_l.jpg',
				'http://static1.nagi.ee/i/p/300/39/07509811effa9e_o.jpg',
				'7509811'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097783/',
				'DSC_0560x',
				'http://static2.nagi.ee/i/p/403/91/100977832beedb_sq.jpg',
				'http://static2.nagi.ee/i/p/403/91/100977832beedb_t.jpg',
				'http://static2.nagi.ee/i/p/403/91/100977832beedb_s.jpg',
				'http://static2.nagi.ee/i/p/403/91/100977832beedb_m.jpg',
				'http://static2.nagi.ee/i/p/403/91/100977832beedb_l.jpg',
				'http://static2.nagi.ee/i/p/403/91/100977832beedb_o.jpg',
				'10097783'
			);
Nagi.pics.add(
				'http://www.nagi.ee/photos/naabrivalve/10097755/',
				'DSC_0559x',
				'http://static2.nagi.ee/i/p/403/91/1009775545f34d_sq.jpg',
				'http://static2.nagi.ee/i/p/403/91/1009775545f34d_t.jpg',
				'http://static2.nagi.ee/i/p/403/91/1009775545f34d_s.jpg',
				'http://static2.nagi.ee/i/p/403/91/1009775545f34d_m.jpg',
				'http://static2.nagi.ee/i/p/403/91/1009775545f34d_l.jpg',
				'http://static2.nagi.ee/i/p/403/91/1009775545f34d_o.jpg',
				'10097755'
			);
Nagi.pics.setContext(nagi_pics_old_id);
