/***************************************************************************
* Create a photo object                                                    *
***************************************************************************/
function photo(id, galleries_id, photo_ref, section_code, src, width, height, caption, thumbnail, thumbnail_width, thumbnail_height, home, gallery, description, takendate, photographer, location, item_price, purchase_instruction) {
	this.id = id;
	this.galleries_id = galleries_id;
	this.photo_ref = photo_ref;
	this.section_code = section_code;
	this.src = src;
	this.width = width;
	this.height = height;
	this.caption = caption;
	this.thumbnail = thumbnail;
	this.thumbnail_width = thumbnail_width;
	this.thumbnail_height = thumbnail_height;
	this.home = home;
	this.gallery = gallery;
	this.description = description;
	this.takendate = takendate;
	this.photographer = photographer;
	this.location = location;
	this.item_price = item_price;
	this.purchase_instruction = purchase_instruction;
}
/***************************************************************************
* Create a gallery object                                                  *
***************************************************************************/

function gallery(id,featured_images,title,section_code) {
	this.id = id;
	this.featured_images = featured_images;
	this.title = title;
	this.section_code = section_code;}

/***************************************************************************
* Select a random value from a comma separated list                        *
***************************************************************************/
function randomListVal(list) {
	arrayVals = list.split(',');
	pos = Math.round(Math.random() * (arrayVals.length - 1));
	debug('Returning ' + arrayVals[pos] + ' as random image');
	return arrayVals[pos];
}

/***************************************************************************
* img = reference to image object in which to show image                   *
***************************************************************************/
function showHomeImage(img) {

	imageID = randomListVal('3753724,3600593,3600413,3587814,3587810,3587809,3584021,3584002,3583975,3583947,3491268,3285350,3285267,3285265,3285249,3285248,3233975,3233946,3233922,3233916,3083151,3083150,3079253,3076455,3076363,3076355,3076320,3076308,3076295,2943378,2943361,2943354,2612023,2596981,2588376,2584096,2583976,2583973,2583971,2578773');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			if (!basic) {
			img.src = photos[j].src;
			img.width = photos[j].width;
			img.height = photos[j].height;
			}
			else {
				newImage = new Image(photos[j].width,photos[j].height);
				newImage.src = photos[j].src;
				document.images[img.name] = newImage;
				debug(newImage.src);
			}
			break;
		}
	}
}

/***************************************************************************
* Show a random image on home page from featured images                    *
***************************************************************************/
function showHomeImageInline() {
	
	imageID = randomListVal('3753724,3600593,3600413,3587814,3587810,3587809,3584021,3584002,3583975,3583947,3491268,3285350,3285267,3285265,3285249,3285248,3233975,3233946,3233922,3233916,3083151,3083150,3079253,3076455,3076363,3076355,3076320,3076308,3076295,2943378,2943361,2943354,2612023,2596981,2588376,2584096,2583976,2583973,2583971,2578773');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			if ('gallery' != '') {
						if (photos[j].galleries_id != '') {
						document.write('<a href="' + photos[j].section_code + '_' + photos[j].galleries_id + '.html">');
						}
						else {
						document.write('<a href="gallery.html">');
						}
			}
			document.write('<img src="' + photos[j].src + '" width="' + photos[j].width + '" height="' + photos[j].height + '" class="mainhomepageimage" id="mainSample" name="mainSample" alt="' + photos[j].caption  + '" border="0">');
			if ('gallery' != '') {
				document.write('</a>');
			}
			break;
		}
	}
	
}

/***************************************************************************
* Show the next image in a gallery.  field = hidden field containing       *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function next(field,img) {

	debug('IN next');
	imageID = field.value;
	
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k= j + 1;
	while (nextImg < 0) {
		for (; k < photos.length; k++) {
			debug('testing image ' + k + ': gallery = ' + photos[k].galleries_id + '(existing: ' + photos[j].galleries_id + ')');
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				debug('setting  nextImg = ' + k);
				break;
			}
		}
		if (nextImg == -1) {
			k = 0;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);
	}


}


/***************************************************************************
* Set a new image on the gallery detail page given its array position      *
***************************************************************************/
function updateImage (nextImg, field,img) {
	debug('Updating image');
	if (!basic && !((0) || (0))) {
		debug('In updateImage');
		debug('setting  img src = ' + photos[nextImg].src);
		
					
			document.getElementById('imagePhoto').innerHTML = '<img class="mainphoto" src="' + photos[nextImg].src + ' " id="mainPic" name="mainPic" width="' + photos[nextImg].width + '" height="' + photos[nextImg].height + '" alt="' + photos[nextImg].caption + '">';
						field.value = photos[nextImg].id;
			document.getElementById('imageTitle').innerHTML = photos[nextImg].caption;
									document.title = 'Laos Photo Library: ' + photos[nextImg].caption;
										/* apply 'blank' classname to element where */			if ( photos[nextImg].caption == '') {
				document.getElementById('imageTitle').style.className = 'blank';
			}
			else {
				document.getElementById('imageTitle').style.className = 'normal';
			}
						temp = '';
			if (photos[nextImg].description != '') {
				temp = temp +  '<p id="imageDescription">' + photos[nextImg].description + '</p>';
			}
						if (photos[nextImg].photo_ref != '') {
				temp = temp + '<p class="imageinfo" id="imageRef"><strong>Ref: </strong>' + photos[nextImg].photo_ref + '</p>';
			}
						if (photos[nextImg].takendate != '') {
				debug('Resetting taken date');
				temp = temp + '<p class="imageinfo" id="imageDate"><strong>Date: </strong>' + photos[nextImg].takendate + '</p>';
			}
			
			if (photos[nextImg].location != '') {
				debug('Resetting location');
				temp = temp + '<p class="imageinfo" id="imageLocation"><strong>Location: </strong>' +  photos[nextImg].location + '</p>';
			}
			
			if (photos[nextImg].photographer != '') {
				debug('Resetting photographer');
				temp = temp + '<p class="imageinfo" id="imagePhotographer"><strong>Photographer: </strong>' + photos[nextImg].photographer + '</p>';
			}
			if (temp != '') {				temp = temp + '<div class="spacer"></div>';			}					if (temp == '') {
			document.getElementById('imageDetails').style.display = 'none';
		}
		else {
			document.getElementById('imageDetails').style.display = 'block';
		}
		document.getElementById('imageDetails').innerHTML =temp;	
		
	}
	else {
		debug('Redirecting to id ' + photos[nextImg].id);
		window.location = 'photo_' + photos[nextImg].id + '.html';
	}
}

/***************************************************************************
* Show the previous image for a gallery. field = hidden field containing   *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function previous(field,img) {


	imageID = field.value;
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k = j -1;
	while (nextImg < 0) {
		for (; k >= 0; k--) {
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				break;
			}
		}
		if (nextImg == -1) {
			k = photos.length -1;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);	
	}
}

/***************************************************************************
* Pick a photo at random from the featured images of a gallery.
        *
* Gallery_id = id of gallery to choose                                     *
* 
 img = reference to html image                                       *
* in which to show image                                                   *
***************************************************************************/
function showGalleryImage(gallery_id, img) {
	debug('Gallery = ' + gallery_id);
	for (i = 0; i < galleries.length; i++) {
		if (galleries[i].id == gallery_id) {
			imageID = randomListVal(galleries[i].featured_images);
				for (j = 0; j < photos.length; j++) {
					if (photos[j].id == imageID) {
						
						img.src = photos[j].thumbnail;
						img.width = photos[j].thumbnail_width;
						img.height = photos[j].thumbnail_height;
						
						break;
					}
				}
			break;
		}
	} 
	}

/***************************************************************************
* If we have dynamic HTML                                                  *
*  replace the galleries link with a list that                             *
* doesn't include the current gallery                                      *
***************************************************************************/
function showGalleries(gallery_id) {
	debug('Showing links for gallery ' + gallery_id);
	
	if (!basic) {
		temp = '';
		for (i = 0; i < galleries.length; i++) {
			debug('Testing gallery ' + galleries[i].id);
			
			if (galleries[i].id != gallery_id) {
				debug('Adding link');
				if (temp != '') {
					temp = temp + ' | ';
				}
				temp = temp + '<a href="gallery_' + galleries[i].id + '.html">' + galleries[i].title + '</a>';
			}
		}
		document.all.galleryLinks.innerHTML = 'Other galleries: ' + temp;
	}
}
/***************************************************************************
* Create the array of Photo objects                                        *
***************************************************************************/
photos = new Array();
photos[0] = new photo(3753724,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904140060-600.jpg',500,333,'Traffic Splash 01','http://admin2.clikpic.com/jakecatlett/images/200904140060-600_thumb.jpg',130, 87,1, 1,'Girls getting drenched with a bucket of water during New Year celebrations.  The water is often dyed different colors - in this case, yellow.','14/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[1] = new photo(3753729,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904140061-600.jpg',500,333,'Traffic Splash 02','http://admin2.clikpic.com/jakecatlett/images/200904140061-600_thumb.jpg',130, 87,0, 0,'A girl getting a bucket of water dumped in her lap during New Year celebrations. The water has been dyed yellow.','14/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[2] = new photo(3753733,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904140063-600.jpg',500,333,'Traffic Splash 03','http://admin2.clikpic.com/jakecatlett/images/200904140063-600_thumb.jpg',130, 87,0, 0,'A pair on a motorcycle that were stopped in the street by a water-throwing mob during New Year celebrations.','14/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[3] = new photo(3753740,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904140078-600.jpg',500,333,'Pick-Up Truck Party 01','http://admin2.clikpic.com/jakecatlett/images/200904140078-600_thumb.jpg',130, 87,0, 0,'New Year\'s revelers in a pick-up truck getting drenched by people on the street.','14/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[4] = new photo(3753745,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904160023-600.jpg',500,333,'Pick-Up Truck Party 02','http://admin2.clikpic.com/jakecatlett/images/200904160023-600_thumb.jpg',130, 87,0, 0,'New Year\'s revelers in a pick-up truck getting drenched by people on the street.','16/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[5] = new photo(3753749,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904160043-600.jpg',500,333,'Pick-Up Truck Party 03','http://admin2.clikpic.com/jakecatlett/images/200904160043-600_thumb.jpg',130, 87,0, 0,'New Year\'s revelers in a pick-up truck getting drenched by people on the street.','16/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[6] = new photo(3753753,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904160022-600.jpg',500,333,'Pick-Up Truck Party 04','http://admin2.clikpic.com/jakecatlett/images/200904160022-600_thumb.jpg',130, 87,0, 0,'New Year\'s revelers in a pick-up truck getting drenched by people on the street.','16/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[7] = new photo(3753760,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904160002-600.jpg',500,333,'New Year\'s Water Attack','http://admin2.clikpic.com/jakecatlett/images/200904160002-600_thumb.jpg',130, 87,0, 0,'A girl looking for victims to soak with her water gun during New Year celebrations in Luang Prabang.','16/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[8] = new photo(3753774,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904160006-600.jpg',500,333,'New Year Party On Patrol','http://admin2.clikpic.com/jakecatlett/images/200904160006-600_thumb.jpg',130, 87,0, 0,'A car crammed full of New Year partiers in Luang Prabang.','16/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[9] = new photo(3753777,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904160009-600.jpg',500,333,'New Year Ride','http://admin2.clikpic.com/jakecatlett/images/200904160009-600_thumb.jpg',130, 87,0, 0,'This old car was barely running.','16/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[10] = new photo(3761129,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904140064-600.jpg',500,333,'Water Attack Patrol','http://admin2.clikpic.com/jakecatlett/images/200904140064-600_thumb.jpg',130, 87,0, 0,'Guys driving around on a motorbike gunning people down with their water gun.','14/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[11] = new photo(3761134,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904140075-600.jpg',500,333,'Talcum Powder Party 01','http://admin2.clikpic.com/jakecatlett/images/200904140075-600_thumb.jpg',130, 87,0, 0,'During the New Year celebrations young people like to cover each other with handfuls of talcum powder.','14/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[12] = new photo(3761140,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904140072-600.jpg',500,333,'Talcum Powder Party 02','http://admin2.clikpic.com/jakecatlett/images/200904140072-600_thumb.jpg',130, 87,0, 0,'During the New Year celebrations young people like to cover each other with handfuls of talcum powder.','14/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[13] = new photo(3761158,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904150073-600.jpg',500,333,'Parade Girls 01','http://admin2.clikpic.com/jakecatlett/images/200904150073-600_thumb.jpg',130, 87,0, 0,'Girls in traditional costumes for the New Year parade in Luang Prabang.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[14] = new photo(3761165,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904150107-600.jpg',500,333,'Parade Girls 02','http://admin2.clikpic.com/jakecatlett/images/200904150107-600_thumb.jpg',130, 87,0, 0,'Girls in traditional costumes for the New Year parade in Luang Prabang.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[15] = new photo(3761171,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904150094-600.jpg',399,600,'Parade Girls 03','http://admin2.clikpic.com/jakecatlett/images/200904150094-600_thumb.jpg',130, 195,0, 0,'Girls in traditional costumes for the New Year parade in Luang Prabang.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[16] = new photo(3761175,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904150097-600.jpg',399,600,'Parade Girls 04','http://admin2.clikpic.com/jakecatlett/images/200904150097-600_thumb.jpg',130, 195,0, 0,'Girls in traditional costumes for the New Year parade in Luang Prabang.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[17] = new photo(3761183,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904130106-600.jpg',399,600,'Beauty Shop 01','http://admin2.clikpic.com/jakecatlett/images/200904130106-600_thumb.jpg',130, 195,0, 0,'Lao girls waiting in a beauty salon after they\'ve had their hair and make-up done.','13/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[18] = new photo(3761213,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904150046-600.jpg',500,333,'Parade Girls 05','http://admin2.clikpic.com/jakecatlett/images/200904150046-600_thumb.jpg',130, 87,0, 0,'Girls in traditional costumes for the New Year parade in Luang Prabang.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[19] = new photo(3761220,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904150096-600.jpg',500,333,'Parade Girls 06','http://admin2.clikpic.com/jakecatlett/images/200904150096-600_thumb.jpg',130, 87,0, 0,'Girls in traditional costumes for the New Year parade in Luang Prabang.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[20] = new photo(3761247,'229065','','gallery','http://admin2.clikpic.com/jakecatlett/images/200904130104-600.jpg',500,333,'Beauty Shop 02','http://admin2.clikpic.com/jakecatlett/images/200904130104-600_thumb.jpg',130, 87,0, 0,'Girls waiting in a beauty salon after getting their hair and make-up done.','13/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[21] = new photo(3786994,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904150052-600.jpg',500,333,'Monkey Boys 01','http://admin.clikpic.com/jakecatlett/images/200904150052-600_thumb.jpg',130, 87,0, 0,'Boys dressed as monkeys for the Lao New Year parade.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[22] = new photo(3786995,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904150053-600.jpg',500,333,'Monkey Boys 02','http://admin.clikpic.com/jakecatlett/images/200904150053-600_thumb.jpg',130, 87,0, 0,'Boys dressed as monkeys for the Lao New Year parade.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[23] = new photo(3786997,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904150054-600.jpg',500,333,'Monkey Boys 03','http://admin.clikpic.com/jakecatlett/images/200904150054-600_thumb.jpg',130, 87,0, 0,'Boys dressed as monkeys for the Lao New Year parade.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[24] = new photo(3787004,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904150015-600.jpg',500,333,'Parade Boys 01','http://admin.clikpic.com/jakecatlett/images/200904150015-600_thumb.jpg',130, 87,0, 0,'Drummer boys in the New Year parade.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[25] = new photo(3787008,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904150119-600.jpg',500,333,'Young Monks','http://admin.clikpic.com/jakecatlett/images/200904150119-600_thumb.jpg',130, 87,0, 0,'Young monks waiting for the New Year parade to begin.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[26] = new photo(3787013,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904150071-600.jpg',500,333,'Parade Boys 01','http://admin.clikpic.com/jakecatlett/images/200904150071-600_thumb.jpg',130, 87,0, 0,'Boys in the Lao New Year parade.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[27] = new photo(3787027,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904150088-600.jpg',500,333,'Parade Drummers','http://admin.clikpic.com/jakecatlett/images/200904150088-600_thumb.jpg',130, 87,0, 0,'Ethnic minority drummers in the Lao New Year parade.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[28] = new photo(3787037,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904160013-600.jpg',500,333,'Black Faces 01','http://admin.clikpic.com/jakecatlett/images/200904160013-600_thumb.jpg',130, 87,0, 0,'Some people on the streets celebrate by rubbing grease and ash from the bottom of old pots and pans on each other.','16/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[29] = new photo(3787040,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904160017-600.jpg',500,333,'Black Faces 02','http://admin.clikpic.com/jakecatlett/images/200904160017-600_thumb.jpg',130, 87,0, 0,'Some people on the streets celebrate by rubbing grease and ash from the bottom of old pots and pans on each other.','16/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[30] = new photo(3787050,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904140050-600.jpg',500,333,'Buddhist Banners','http://admin.clikpic.com/jakecatlett/images/200904140050-600_thumb.jpg',130, 87,0, 0,'Banners of mythological characters from Theravada Buddhism, painted by children.  Many people sell and carry these banners during the parade.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[31] = new photo(3787092,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904150010-600.jpg',500,333,'Kids on Parade','http://admin.clikpic.com/jakecatlett/images/200904150010-600_thumb.jpg',130, 87,0, 0,'Kids waiting for the parade to begin.  The vast majority of people in the parade are children in traditional outfits.  They all had to stand waiting in the midday sun for an hour for the parade to begin.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[32] = new photo(3787168,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904150007-600.jpg',500,333,'New Year Parade','http://admin.clikpic.com/jakecatlett/images/200904150007-600_thumb.jpg',130, 87,0, 0,'View of the parade from the bottom of Phousi Hill in Luang Prabang.','15/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[33] = new photo(3787102,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904140086-600.jpg',500,333,'Protective Spirits 01','http://admin.clikpic.com/jakecatlett/images/200904140086-600_thumb.jpg',130, 87,0, 0,'Men in masks which are supposed to represent two of Luang Prabang\'s protective spirits.','14/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[34] = new photo(3787161,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904140099-600.jpg',500,333,'Protective Spirits','http://admin.clikpic.com/jakecatlett/images/200904140099-600_thumb.jpg',130, 87,0, 0,'Men in masks which are supposed to represent two of Luang Prabang\'s protective spirits.','14/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[35] = new photo(3787164,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904140105-600.jpg',500,333,'Protective Spirits 03','http://admin.clikpic.com/jakecatlett/images/200904140105-600_thumb.jpg',130, 87,0, 0,'Men in masks which are supposed to represent two of Luang Prabang\'s protective spirits.','14/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[36] = new photo(3787230,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904130043-600.jpg',500,333,'Cleaning Day 01','http://admin.clikpic.com/jakecatlett/images/200904130043-600_thumb.jpg',130, 87,0, 0,'During the New Year holiday, monks clean the temples and all the objects in them.','13/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[37] = new photo(3787232,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904130051-600.jpg',500,333,'Cleaning Day 02','http://admin.clikpic.com/jakecatlett/images/200904130051-600_thumb.jpg',130, 87,0, 0,'During the New Year holiday, monks clean the temples and all the objects in them.','13/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[38] = new photo(3787242,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904130058-600.jpg',500,333,'Cleaning Day 03','http://admin.clikpic.com/jakecatlett/images/200904130058-600_thumb.jpg',130, 87,0, 0,'During the New Year holiday, monks clean the temples and all the objects in them.','13/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[39] = new photo(3787247,'229065','','gallery','http://admin.clikpic.com/jakecatlett/images/200904140094-600.jpg',399,600,'Festival Kid','http://admin.clikpic.com/jakecatlett/images/200904140094-600_thumb.jpg',130, 195,0, 0,'A Lao boy in festive clothing during the Lao New Year holiday.','14/04/09','Jake Catlett','Luang Prabang, Laos','','');
photos[40] = new photo(3485681,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090205007-600.jpg',500,333,'Thaat Ing Hang 01','http://admin2.clikpic.com/jakecatlett/images/20090205007-600_thumb.jpg',130, 87,0, 0,'A line of Buddha statues in the hallway surrounding Thaat Ing Hang stupa in Savannakhet','05/02/09','Jake Catlett','Thaat Ing Hang, Ing Hang Village, Savannakhet Province','','');
photos[41] = new photo(3485684,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090205011-600.jpg',500,333,'Thaat Ing Hang 02','http://admin2.clikpic.com/jakecatlett/images/20090205011-600_thumb.jpg',130, 87,0, 0,'Buddha images in the hallway surrounding Thaat Ing Hang stupa in Savannakhet province','05/02/09','Jake Catlett','Thaat Ing Hang, Ing Hang Village, Savannakhet Province','','');
photos[42] = new photo(3485686,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090205013-600.jpg',500,333,'Thaat Ing Hang 03','http://admin2.clikpic.com/jakecatlett/images/20090205013-600_thumb.jpg',130, 87,0, 0,'The Buddhist flag with temple buildings in the background at Thaat Ing Hang stupa in Savannakhet province','05/02/09','Jake Catlett','Thaat Ing Hang, Ing Hang Village, Savannakhet Province','','');
photos[43] = new photo(2943352,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/_DSC2784.jpg',500,330,'Pha Thaat Luang','http://admin2.clikpic.com/jakecatlett/images/_DSC2784_thumb.jpg',130, 85,0, 0,'Pha Thaat Luang, the country\'s principal stupa and national symbol.','11/10/08','Jake Catlett','Vientiane, Laos','','');
photos[44] = new photo(2943354,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/_DSC2808.jpg',500,330,'Pha Thaat Luang','http://admin2.clikpic.com/jakecatlett/images/_DSC2808_thumb.jpg',130, 85,1, 0,'Pha Thaat Luang, the country\'s principal stupa and national symbol.','11/10/08','Jake Catlett','Vientiane, Laos','','');
photos[45] = new photo(2943356,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/_DSC2809.jpg',500,327,'Pha Thaat Luang','http://admin2.clikpic.com/jakecatlett/images/_DSC2809_thumb.jpg',130, 85,0, 0,'Pha Thaat Luang, the country\'s principal stupa and national symbol.','11/10/08','Jake Catlett','Vientiane, Laos','','');
photos[46] = new photo(2943358,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081009004.jpg',500,330,'Patuxai (Victory Gate) Monument','http://admin2.clikpic.com/jakecatlett/images/20081009004_thumb.jpg',130, 85,0, 0,'Patuxai, a monument in Vientiane commemorating Lao independence from France.','09/10/08','Jake Catlett','Vientiane, Laos','','');
photos[47] = new photo(2943361,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081010011.jpg',500,331,'Patuxai (Victory Gate) Monument','http://admin2.clikpic.com/jakecatlett/images/20081010011_thumb.jpg',130, 86,1, 0,'Patuxai, a monument in Vientiane commemorating Lao independence from France.','09/10/08','Jake Catlett','Vientiane, Laos','','');
photos[48] = new photo(2943363,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081010012.jpg',500,332,'Patuxai (Victory Gate) Monument','http://admin2.clikpic.com/jakecatlett/images/20081010012_thumb.jpg',130, 86,0, 0,'Patuxai, a monument in Vientiane commemorating Lao independence from France.','10/10/08','Jake Catlett','Vientiane, Laos','','');
photos[49] = new photo(2943365,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081010014.jpg',500,335,'Patuxai Monument','http://admin2.clikpic.com/jakecatlett/images/20081010014_thumb.jpg',130, 87,0, 0,'A detail shot of the top of Patuxai Monument','10/10/08','Jake Catlett','Vientiane, Laos','','');
photos[50] = new photo(3285233,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090107024-600.jpg',500,333,'View From Putuxai','http://admin2.clikpic.com/jakecatlett/images/20090107024-600_thumb.jpg',130, 87,0, 0,'Looking down Lane Xang Avenue from atop Patuxai Monument','07/01/09','Jake Catlett','Vientiane, Laos','','');
photos[51] = new photo(2943368,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081013057.jpg',500,330,'Haw Pa Gaew','http://admin2.clikpic.com/jakecatlett/images/20081013057_thumb.jpg',130, 85,0, 0,'Originally used as the main temple for the Lao Royal Family in Vientiane','13/10/08','Jake Catlett','Vientiane, Laos','','');
photos[52] = new photo(2943370,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081013059.jpg',500,332,'Quiet temple','http://admin2.clikpic.com/jakecatlett/images/20081013059_thumb.jpg',130, 86,0, 0,'Typical Lao temple, in one of the many quiet side lanes in Chantabuly District, Vientiane','13/10/08','Jake Catlett','Vientiane, Laos','','');
photos[53] = new photo(3285265,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090105012-600.jpg',500,333,'Wat Sisaket 01','http://admin2.clikpic.com/jakecatlett/images/20090105012-600_thumb.jpg',130, 87,1, 1,'Buddha images at Wat Sisaket in Vientiane','05/01/09','Jake Catlett','Wat Sisaket, Vientiane, Laos','','');
photos[54] = new photo(3285267,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090105013-600.jpg',500,333,'Wat Sisaket 02','http://admin2.clikpic.com/jakecatlett/images/20090105013-600_thumb.jpg',130, 87,1, 0,'Buddha images at Wat Sisaket in Vientiane','05/01/09','Jake Catlett','Wat Sisaket, Vientiane, Laos','','');
photos[55] = new photo(3285268,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090105016-600.jpg',500,333,'Wat Sisaket 03','http://admin2.clikpic.com/jakecatlett/images/20090105016-600_thumb.jpg',130, 87,0, 0,'Buddha images at Wat Sisaket in Vientiane','05/01/09','Jake Catlett','Wat Sisaket, Vientiane, Laos','','');
photos[56] = new photo(3485724,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090205089-600.jpg',500,333,'Sacred Bodhi Tree','http://admin2.clikpic.com/jakecatlett/images/20090205089-600_thumb.jpg',130, 87,0, 0,'A sacred bodhi tree with shrines and offerings near a large temple on the Mekhong River in Savannakhet City','05/02/09','Jake Catlett','Savannakhet City, Savannakhet Province','','');
photos[57] = new photo(2588376,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/0702170173.jpg',500,334,'Buddha in the Light','http://admin2.clikpic.com/jakecatlett/images/0702170173_thumb.jpg',130, 87,1, 1,'An old wooden Buddha statue at Wat Phou, an ancient Khmer temple in Champassak province, Southern Laos.','17/02/07','Jake Catlett','Wat Phou, Champassak Province, Laos','','');
photos[58] = new photo(2596981,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/0702160107.JPG',500,334,'Naga at Wat Phou','http://admin2.clikpic.com/jakecatlett/images/0702160107_thumb.JPG',130, 87,1, 0,'A beautifully preserved Naga statue in front of Wat Phou, an ancient Khmer temple located in Champassak town, Champassak province, Laos.','16/02/07','Jake Catlett','Wat Phou, Champassak Town, Champassak Provnice, Laos','','');
photos[59] = new photo(3285283,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028115-600.jpg',500,333,'Mulberry Star','http://admin2.clikpic.com/jakecatlett/images/20081028115-600_thumb.jpg',130, 87,0, 0,'A handmade mulberry paper star hanging from the monks quarters at Wat Xieng Thong in Luang Prabang','28/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[60] = new photo(3285322,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028133-600.jpg',500,333,'Temple Pillars','http://admin2.clikpic.com/jakecatlett/images/20081028133-600_thumb.jpg',130, 87,0, 0,'Detail of the front pillars of Wat Xieng Thong in Luang Prabang','28/10/08','Jake Catlett','Wat Xieng Thong, Luang Prabang, Laos','','');
photos[61] = new photo(3285338,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028149-600.jpg',500,333,'Golden Buddha','http://admin2.clikpic.com/jakecatlett/images/20081028149-600_thumb.jpg',130, 87,0, 0,'Small, golden Buddha image inside Wat Xieng Thong in Luang Prabang','28/10/08','Jake Catlett','Wat Xieng Thong, Luang Prabang, Laos','','');
photos[62] = new photo(3285343,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028165-BFN-600.jpg',500,333,'Buddhist Woodwork','http://admin2.clikpic.com/jakecatlett/images/20081028165-BFN-600_thumb.jpg',130, 87,0, 1,'Detail of woodcarvings at Wat Xieng Thong in Luang Prabang','28/10/08','Jake Catlett','Wat Xieng Thong, Luang Prabang, Laos','','');
photos[63] = new photo(3285350,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081029193-600.jpg',500,332,'Mulberry Star 02','http://admin2.clikpic.com/jakecatlett/images/20081029193-600_thumb.jpg',130, 86,1, 0,'Another example of a hand-made mulberry paper star hanging at a temple in Luang Prabang, Laos','29/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[64] = new photo(3285375,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081029188-600.jpg',399,600,'Temple Window','http://admin2.clikpic.com/jakecatlett/images/20081029188-600_thumb.jpg',130, 195,0, 0,'A beautiful example of traditional stencil work on a temple window in Luang Prabang, Laos','29/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[65] = new photo(3502613,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081013063-600.jpg',399,600,'Temple Shutter','http://admin2.clikpic.com/jakecatlett/images/20081013063-600_thumb.jpg',130, 195,0, 0,'A beautiful carved window shutter at Wat Si Muang in Vientiane','13/10/08','Jake Catlett','Wat Si Muang, Vientiane City, Laos','','');
photos[66] = new photo(3502630,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081011041-600.jpg',399,600,'Thaat Luang Dusk','http://admin2.clikpic.com/jakecatlett/images/20081011041-600_thumb.jpg',130, 195,0, 0,'The evening sets in on the grounds of Wat Thaat Luang in Vientiane','11/10/08','Jake Catlett','Wat Thaat Luang, Vientiane, Laos','','');
photos[67] = new photo(3566459,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028117-600.jpg',500,333,'Wat Xieng Thong 01','http://admin2.clikpic.com/jakecatlett/images/20081028117-600_thumb.jpg',130, 87,0, 0,'Rooftop decoration at Wat Xieng Khouang in Luang Prabang','28/10/08','Jake Catlett','Wat Xieng Thong, Luang Prabang, Laos','','');
photos[68] = new photo(3566464,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028128-600.jpg',500,333,'Wat Xieng Thong 02','http://admin2.clikpic.com/jakecatlett/images/20081028128-600_thumb.jpg',130, 87,0, 0,'Detail of a stencil on the wall at Wat Xieng Khouang in Luang Prabang','28/10/08','Jake Catlett','Wat Xieng Thong, Luang Prabang, Laos','','');
photos[69] = new photo(3566469,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028152-600.jpg',500,333,'Wat Xieng Thong 03','http://admin2.clikpic.com/jakecatlett/images/20081028152-600_thumb.jpg',130, 87,0, 0,'Carved wooden dragons at Wat Xieng Khouang in Luang Prabang','28/12/08','Jake Catlett','Wat Xieng Thong, Luang Prabang, Laos','','');
photos[70] = new photo(3566476,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028151-600.jpg',399,600,'Wat Xieng Thong 04','http://admin2.clikpic.com/jakecatlett/images/20081028151-600_thumb.jpg',130, 195,0, 0,'Wooden relief on a doorway at Wat Xieng Khouang<br>\r\nin Luang Prabang.','28/10/08','Jake Catlett','Wat Xieng Thong, Luang Prabang, Laos','','');
photos[71] = new photo(3583901,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028135-600.jpg',399,600,'Wat Xieng Thong 05','http://admin2.clikpic.com/jakecatlett/images/20081028135-600_thumb.jpg',130, 195,0, 0,'The main altar and buddha image at Wat Xieng Thong in Luang Prabang','28/10/08','Jake Catlett','Wat Xieng Thong, Luang Prabang, Laos','','');
photos[72] = new photo(3583929,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028143-600.jpg',399,600,'Wat Xieng Thong 06','http://admin2.clikpic.com/jakecatlett/images/20081028143-600_thumb.jpg',130, 195,0, 0,'Close-up shot of the main Buddha image at Wat Xieng Thong in Luang Prabang','28/10/08','Jake Catlett','Wat Xieng Thong, Luang Prabang, Laos','','');
photos[73] = new photo(3583947,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028127-600.jpg',500,333,'Wat Xieng Thong 07','http://admin2.clikpic.com/jakecatlett/images/20081028127-600_thumb.jpg',130, 87,1, 0,'A mulberry star hanging at Wat Xieng Thong in Luang Prabang','28/10/08','Jake Catlett','Wat Xieng Thong, Luang Prabang, Laos','','');
photos[74] = new photo(3583953,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028131-600.jpg',500,333,'Wat Xieng Thong 08','http://admin2.clikpic.com/jakecatlett/images/20081028131-600_thumb.jpg',130, 87,0, 0,'View of the western side of Wat Xieng Thong in Luang Prabang','28/10/08','Jake Catlett','Wat Xieng Thong, Luang Prabang, Laos','','');
photos[75] = new photo(3583959,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081026035-600.JPG',500,306,'Wat Sop Sickharam','http://admin2.clikpic.com/jakecatlett/images/20081026035-600_thumb.JPG',130, 80,0, 0,'One of the numerous temples in Luang Prabang','26/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[76] = new photo(3583960,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081027062-600.jpg',399,600,'Wooden Relief 01','http://admin2.clikpic.com/jakecatlett/images/20081027062-600_thumb.jpg',130, 195,0, 0,'Detail of a wooden relief at a temple in Luang Prabang','27/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[77] = new photo(3583962,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081027078-600.jpg',399,600,'Wooden relief 02','http://admin2.clikpic.com/jakecatlett/images/20081027078-600_thumb.jpg',130, 195,0, 0,'Wooden relief at a temple in Luang Prabang','27/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[78] = new photo(3583965,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081027076-600.jpg',399,600,'Buddhist Stencil 01','http://admin2.clikpic.com/jakecatlett/images/20081027076-600_thumb.jpg',130, 195,0, 0,'Buddhist stencil art on a temple wall in Luang Prabang','27/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[79] = new photo(3583968,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081030229-600.jpg',500,333,'Luang Prabang Temple 01','http://admin2.clikpic.com/jakecatlett/images/20081030229-600_thumb.jpg',130, 87,0, 0,'The temple on the grounds of the National Museum in Luang Prabang','30/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[80] = new photo(3583970,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081030237-600.jpg',500,333,'Luang Prabang Temple 02','http://admin2.clikpic.com/jakecatlett/images/20081030237-600_thumb.jpg',130, 87,0, 0,'Temple on the grounds of the National Museum in Luang Prabang','30/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[81] = new photo(3583975,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081112034b-600.jpg',500,369,'Thaat Luang Festival','http://admin2.clikpic.com/jakecatlett/images/20081112034b-600_thumb.jpg',130, 96,1, 0,'Thaat Luang chedi with worshippers circumnambulating the structure during the annual Thaat Luang Festival','12/11/08','Jake Catlett','Pha Thaat Luang, Vientiane, Laos','','');
photos[82] = new photo(3600574,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090105005-600.jpg',500,333,'Wat Sisaket 04','http://admin2.clikpic.com/jakecatlett/images/20090105005-600_thumb.jpg',130, 87,0, 0,'Wat Sisaket in Vientiane','05/01/09','Jake Catlett','Wat Sisaket, Vientiane, Laos','','');
photos[83] = new photo(3600578,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090105006-600.jpg',500,333,'Wat Sisaket 05','http://admin2.clikpic.com/jakecatlett/images/20090105006-600_thumb.jpg',130, 87,0, 0,'Wat Sisaket in Vientiane','05/01/09','Jake Catlett','Wat Sisaket, Vientiane, Laos','','');
photos[84] = new photo(3600583,'213157','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090105009-600.jpg',500,333,'Wat Sisaket 06','http://admin2.clikpic.com/jakecatlett/images/20090105009-600_thumb.jpg',130, 87,0, 0,'Wat Sisaket in Vientiane','05/01/09','Jake Catlett','Wat Sisaket, Vientiane, Laos','','');
photos[85] = new photo(3233946,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081117005-600.jpg',500,333,'View from Phou Khoun 01','http://admin2.clikpic.com/jakecatlett/images/20081117005-600_thumb.jpg',130, 87,1, 0,'Dawn in Phou Khoun village, Luang Prabang Province.','17/11/08','Jake Catlett','Phou Khoun, Luang Prabang Province, Laos','','');
photos[86] = new photo(3076248,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081024032-BFN-600.jpg',399,600,'Hmong kids in Kiewkacham Village','http://admin2.clikpic.com/jakecatlett/images/20081024032-BFN-600_thumb.jpg',130, 195,0, 0,'Hmong kids in Kiewkacham village','24/10/08','Jake Catlett','Kiewkacham Village, Luang Prabang Province, Laos','','');
photos[87] = new photo(3233975,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081117002-600.jpg',500,337,'View from Phou Khoun 02','http://admin2.clikpic.com/jakecatlett/images/20081117002-600_thumb.jpg',130, 88,1, 0,'The view at dawn from atop a hill in Phou Khoun village, Luang Prabang Province.','17/11/08','Jake Catlett','Phou Khoun, Luang Prabang Province, Laos','','');
photos[88] = new photo(3076255,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081026048-BFN-600.jpg',399,600,'Hmong woman selling textiles','http://admin2.clikpic.com/jakecatlett/images/20081026048-BFN-600_thumb.jpg',130, 195,0, 0,'A Hmong woman selling blankets, scarves and clothing near Tat Kuang Si waterfall in Luang Prabang Province','26/10/08','Jake Catlett','Kuang Si Waterfall, Luang Prabang Province, Laos','','');
photos[89] = new photo(3076285,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081112046-600.jpg',399,600,'Lao woman at That Luang Festival','http://admin2.clikpic.com/jakecatlett/images/20081112046-600_thumb.jpg',130, 195,0, 0,'A Lao woman carrying offerings at the That Luang Festival in Vientiane','12/11/08','Jake Catlett','Pha Thaat Luang, Vientiane, Laos','','');
photos[90] = new photo(3083151,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081024014-BFN-600.jpg',500,333,'View from Phoxai Village','http://admin2.clikpic.com/jakecatlett/images/20081024014-BFN-600_thumb.jpg',130, 87,1, 0,'The view from Phoxai village in Vang Vieng district, Vientiane Province.','24/10/08','Jake Catlett','Phoxai Village, Vang Vieng District, Laos','','');
photos[91] = new photo(3076295,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081112040-600.jpg',500,333,'Monks at That Luang Festival','http://admin2.clikpic.com/jakecatlett/images/20081112040-600_thumb.jpg',130, 87,1, 0,'A monk and a little novice lighting incense together at That Luang Festival in Vientiane','12/11/08','Jake Catlett','Pha Thaat Luang, Vientiane, Laos','','');
photos[92] = new photo(3083150,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081023009-BFN-600.jpg',500,333,'View from Vang Vieng','http://admin2.clikpic.com/jakecatlett/images/20081023009-BFN-600_thumb.jpg',130, 87,1, 1,'View of the Song River in Vang Vieng town.','23/10/08','Jake Catlett','Vang Vieng town, Vang Vieng District, Vientiane Province, Laos','','');
photos[93] = new photo(3076308,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081112013-600.jpg',500,333,'Lao monk at That Luang Festival','http://admin2.clikpic.com/jakecatlett/images/20081112013-600_thumb.jpg',130, 87,1, 0,'A monk at That Luang Festival in Vientiane','12/11/08','Jake Catlett','Pha Thaat Luang, Vientiane, Laos','','');
photos[94] = new photo(2578773,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/07022002341.jpg',500,334,'Across from Champassak','http://admin2.clikpic.com/jakecatlett/images/07022002341_thumb.jpg',130, 87,1, 0,'Sunset seen from Don Dan in Champassak Province.','22/02/07','Jake Catlett','Don Dan, Champassak Province, Laos','','');
photos[95] = new photo(3076320,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081112047-600.jpg',500,333,'Monk at That Luang Festival','http://admin2.clikpic.com/jakecatlett/images/20081112047-600_thumb.jpg',130, 87,1, 0,'A senior monk at That Luang Festival in Vientiane','12/11/08','Jake Catlett','Pha Thaat Luang, Vientiane, Laos','','');
photos[96] = new photo(2583976,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/0702130027.jpg',500,334,'Morning on the Mekhong','http://admin2.clikpic.com/jakecatlett/images/0702130027_thumb.jpg',130, 87,1, 0,'Taken from the shore of Don Daed on the Mekhong river early in the morning.','13/02/07','Jake Catlett','Don Daed, Si Phan Don, Laos','','');
photos[97] = new photo(3485677,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090119016-600.jpg',500,333,'Mekhong Island Sunset','http://admin2.clikpic.com/jakecatlett/images/20090119016-600_thumb.jpg',130, 87,0, 0,'Sunset view from the west side of Don Khong island.','19/01/09','Jake Catlett','Don Khong, Si Phan Don, Chapassak Province, Laos','','');
photos[98] = new photo(3076355,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081112003-600.jpg',500,333,'Hmong woman at That Luang Festival','http://admin2.clikpic.com/jakecatlett/images/20081112003-600_thumb.jpg',130, 87,1, 0,'A Hmong woman wearing traditional clothing in a procession at That Luang Festival in Vientiane','12/11/08','Jake Catlett','Pha Thaat Luang, Vientiane, Laos','','');
photos[99] = new photo(3076363,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081112010-600.jpg',500,333,'Lao man at That Luang Festival','http://admin2.clikpic.com/jakecatlett/images/20081112010-600_thumb.jpg',130, 87,1, 0,'A Lao man with a traditional sash at That Luang Festival in Vientiane','12/11/08','Jake Catlett','Pha Thaat Luang, Vientiane, Laos','','');
photos[100] = new photo(3285224,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081018032-600.jpg',500,279,'Vang Vieng fields','http://admin2.clikpic.com/jakecatlett/images/20081018032-600_thumb.jpg',130, 73,0, 0,'Vang Vieng scenery and rice fields.','18/10/08','Jake Catlett','Vang Vieng District, Laos','','');
photos[101] = new photo(3502546,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081023006-600.jpg',500,266,'Vang Vieng River','http://admin2.clikpic.com/jakecatlett/images/20081023006-600_thumb.jpg',130, 69,0, 0,'Karst scenery in Vang Vieng District, Vientiane province, with the Song River in the foreground','23/10/08','Jake Catlett','Vang Vieng town, Vang Vieng District, Vientiane Province, Laos','','');
photos[102] = new photo(3076370,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081112011-600.jpg',500,333,'Woman at That Luang Festival','http://admin2.clikpic.com/jakecatlett/images/20081112011-600_thumb.jpg',130, 87,0, 0,'A woman at That Luang Festival in Vientiane','12/11/08','Jake Catlett','Pha Thaat Luang, Vientiane, Laos','','');
photos[103] = new photo(2583973,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/0702140089.jpg',500,334,'Waterfall Fishing in Si Phan Don','http://admin2.clikpic.com/jakecatlett/images/0702140089_thumb.jpg',130, 87,1, 0,'A villager fishing with a net in a waterfall on the Mekhong river in Southern Laos.','14/02/07','Jake Catlett','Don Khong, Si Phan Don, Laos','','');
photos[104] = new photo(3076455,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028170-BFN-600.jpg',500,333,'Khmu girl','http://admin2.clikpic.com/jakecatlett/images/20081028170-BFN-600_thumb.jpg',130, 87,1, 0,'Khmu girl in Ban Saen Village, Luang Prabang Province.','28/10/08','Jake Catlett','Ban Saen, Luang Prabang Province, Laos','','');
photos[105] = new photo(3285220,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/2008102817-BFN-600.jpg',500,288,'Luang Prabang in the afternoon','http://admin2.clikpic.com/jakecatlett/images/2008102817-BFN-600_thumb.jpg',130, 75,0, 1,'Luang Prabang viewed from across the Mekhong River in the late afternoon','28/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[106] = new photo(3079253,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081031284-BFN-6001.jpg',500,333,'Hmong girl','http://admin2.clikpic.com/jakecatlett/images/20081031284-BFN-6001_thumb.jpg',130, 87,1, 1,'A little Hmong girl in a village in Kasi District, Vientiane Province','31/10/08','Jake Catlett','Kasi District, Vientiane Province, Laos','','');
photos[107] = new photo(2611986,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/0702130052.JPG',500,334,'Morning Mekhong River Traffic','http://admin2.clikpic.com/jakecatlett/images/0702130052_thumb.JPG',130, 87,0, 0,'Another shot from Don Khong in Si Phan Don.','13/02/07','Jake Catlett','Don Khong, Si Phan Don, Chapassak Province, Laos','','');
photos[108] = new photo(3285225,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081030243-600.jpg',500,298,'Luang Prabang view','http://admin2.clikpic.com/jakecatlett/images/20081030243-600_thumb.jpg',130, 77,0, 0,'Luang Prabang photographed from atop Phouxi hill in the afternoon','30/11/08','Jake Catlett','Luang Prabang, Laos','','');
photos[109] = new photo(3079254,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081031265-BFN-600.jpg',500,333,'Hmong girl 2','http://admin2.clikpic.com/jakecatlett/images/20081031265-BFN-600_thumb.jpg',130, 87,0, 0,'A Hmong girl in traditional clothing at Kilometer 5 \"Cultural Village\" in Luang Prabang Province','31/10/08','Jake Catlett','Kilometer 5 Village, Luang Prabang Province, Laos','','');
photos[110] = new photo(3502217,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081117016-600.jpg',500,296,'Kasi District 01','http://admin2.clikpic.com/jakecatlett/images/20081117016-600_thumb.jpg',130, 77,0, 0,'Morning view into Kasi District, Vientiane province, from near Phou Khoun town.','17/11/08','Jake Catlett','Kasi District, Vientiane Province, Laos','','');
photos[111] = new photo(3076504,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081112041-600.jpg',399,600,'Beautiful Lao Woman','http://admin2.clikpic.com/jakecatlett/images/20081112041-600_thumb.jpg',130, 195,0, 0,'A young Lao woman at That Luang Festival in Vientiane','12/11/08','Jake Catlett','Pha Thaat Luang, Vientiane, Laos','','');
photos[112] = new photo(3502543,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081126012-600.jpg',500,283,'Kasi District 02','http://admin2.clikpic.com/jakecatlett/images/20081126012-600_thumb.jpg',130, 74,0, 0,'Pha Phajao mountain in Kasi District, Vientiane province.','26/11/08','Jake Catlett','Kasi District, Vientiane Province, Laos','','');
photos[113] = new photo(3502218,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081026054-600.jpg',500,258,'Khouang Si Waterfall','http://admin2.clikpic.com/jakecatlett/images/20081026054-600_thumb.jpg',130, 67,0, 0,'Thaad Khouang Si waterfall in Luang Prabang province.','26/10/08','Jake Catlett','Khouang Si Waterfall, Luang Prabang Province, Laos','','');
photos[114] = new photo(3233918,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081130284-600.jpg',399,600,'Hmong New Year 02','http://admin2.clikpic.com/jakecatlett/images/20081130284-600_thumb.jpg',130, 195,0, 0,'A woman in traditional festive clothing at Bun Kin Kieng, the Hmong New Year celebration.','30/11/08','Jake Catlett','Phonsavan, Xieng Khouang Province, Laos','','');
photos[115] = new photo(3502544,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028176-600.jpg',500,333,'Luang Prabang Dusk','http://admin2.clikpic.com/jakecatlett/images/20081028176-600_thumb.jpg',130, 87,0, 0,'A view of Luang Prabang town at dusk, taken from across the Mekhong River','28/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[116] = new photo(3502558,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090201024-6003.jpg',500,291,'Samakhixai Sunset','http://admin2.clikpic.com/jakecatlett/images/20090201024-6003_thumb.jpg',130, 76,0, 0,'Riverside scenery in the town of Samakhixai, capitol of Attapeu Province','01/02/09','Jake Catlett','Samakhixai, Attapeu Province, Laos','','');
photos[117] = new photo(3233920,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081129128-600.jpg',399,600,'Hmong New Year 03','http://admin2.clikpic.com/jakecatlett/images/20081129128-600_thumb.jpg',130, 195,0, 0,'A girl in traditional festive clothing at Bun Kin Kieng, the Hmong New Year celebration.','29/11/08','Jake Catlett','Phonsavan, Xieng Khouang Province, Laos','','');
photos[118] = new photo(3587827,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090119013-600.jpg',500,333,'Si Phan Don 01','http://admin2.clikpic.com/jakecatlett/images/20090119013-600_thumb.jpg',130, 87,0, 0,'A river shrub in the Mekhong River in the Si Phan Don (4000 Islands) area of Southern Laos','19/01/09','Jake Catlett','Si Phan Don, Champassak Province, Laos','','');
photos[119] = new photo(3233921,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081129018-600.jpg',399,600,'Hmong New Year 04','http://admin2.clikpic.com/jakecatlett/images/20081129018-600_thumb.jpg',130, 195,0, 0,'A little girl in traditional festive clothing at Bun Kin Kieng, the Hmong New Year celebration.','29/11/08','Jake Catlett','Phonsavan, Xieng Khouang Province, Laos','','');
photos[120] = new photo(3587833,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090123258-600.jpg',500,296,'Si Phan Don 02','http://admin2.clikpic.com/jakecatlett/images/20090123258-600_thumb.jpg',130, 77,0, 0,'Sunset as seen from one of the islands in the Si Phan Don (4000 Islands) area of Southern Laos','23/01/09','Jake Catlett','Si Phan Don, Champassak Province, Laos','','');
photos[121] = new photo(3485647,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081116006-600.jpg',399,600,'Hmong Market Woman','http://admin2.clikpic.com/jakecatlett/images/20081116006-600_thumb.jpg',130, 195,0, 0,'A woman selling fresh greens at the vegetable market in Phou Khoun Village, Luang Prabang province.','16/11/08','Jake Catlett','Phou Khoun Village, Luang Prabang Province','','');
photos[122] = new photo(3600405,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090124062-6001.jpg',500,333,'Si Phan Don 03','http://admin2.clikpic.com/jakecatlett/images/20090124062-6001_thumb.jpg',130, 87,0, 0,'Sunrise from one of the many islands in the Si Phan Don (4000 Islands) area of Southern Laos','24/01/09','Jake Catlett','Si Phan Don, Champassak Province, Laos','','');
photos[123] = new photo(3485665,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081129008-600.jpg',399,600,'Hmong New Year 06','http://admin2.clikpic.com/jakecatlett/images/20081129008-600_thumb.jpg',130, 195,0, 0,'A young woman wearing an original Hmong outfit at Bun Gin Gieng, the Hmong New Year festival.','29/11/08','Jake Catlett','Phonsavan, Xieng Khouang, Laos','','');
photos[124] = new photo(3587837,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090121034-600.jpg',500,318,'Si Phan Don 04','http://admin2.clikpic.com/jakecatlett/images/20090121034-600_thumb.jpg',130, 83,0, 0,'Typical river scenery in the Si Phan Don (4000 Islands) area of Southern Laos','21/01/09','Jake Catlett','Si Phan Don, Champassak Province, Laos','','');
photos[125] = new photo(3233916,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081128027-600.jpg',500,333,'Hmong New Year 01','http://admin2.clikpic.com/jakecatlett/images/20081128027-600_thumb.jpg',130, 87,1, 0,'A woman in traditional festive clothing at Bun Kin Kieng, the Hmong New Year celebration.','28/11/08','Jake Catlett','Phonsavan, Xieng Khouang Province, Laos','','');
photos[126] = new photo(3587838,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090129062-600.jpg',500,333,'Si Phan Don 05','http://admin2.clikpic.com/jakecatlett/images/20090129062-600_thumb.jpg',130, 87,0, 0,'Typical river scenery in the Si Phan Don (4000 Islands) area of Southern Laos','29/01/09','Jake Catlett','Si Phan Don, Champassak Province, Laos','','');
photos[127] = new photo(3233922,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081130296-600.jpg',500,337,'Hmong New Year 05','http://admin2.clikpic.com/jakecatlett/images/20081130296-600_thumb.jpg',130, 88,1, 0,'Girls in traditional festive clothing at Bun Kin Kieng, the Hmong New Year celebration.','30/11/08','Jake Catlett','Phonsavan, Xieng Khouang Province, Laos','','');
photos[128] = new photo(3600413,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090126008-6001.jpg',500,333,'Tree Silhouette 01','http://admin2.clikpic.com/jakecatlett/images/20090126008-6001_thumb.jpg',130, 87,1, 0,'Sunset in a rice field in Nakasang Town, Champassak Province','26/01/09','Jake Catlett','Ban Nakasang, Chapassak Province, Laos','','');
photos[129] = new photo(3285248,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/01032009019-600.jpg',500,333,'Vientiane Monks','http://admin2.clikpic.com/jakecatlett/images/01032009019-600_thumb.jpg',130, 87,1, 0,'Monks watching the street from their quarters in Vientiane','03/01/09','Jake Catlett','Vientiane, Laos','','');
photos[130] = new photo(3587843,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090127161-600.jpg',500,333,'Tree Silhouette 02','http://admin2.clikpic.com/jakecatlett/images/20090127161-600_thumb.jpg',130, 87,0, 0,'Silhouette of a tree taken at sunset in the town of Nakasang, Champassak Province','27/01/09','Jake Catlett','Ban Nakasang, Chapassak Province, Laos','','');
photos[131] = new photo(3285249,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081228045-600.jpg',500,333,'Hua Phan Kid','http://admin2.clikpic.com/jakecatlett/images/20081228045-600_thumb.jpg',130, 87,1, 0,'People in Lon Ang village during Hmong New Year celebrations in Hua Phan province','28/12/08','Jake Catlett','Lon Ang village, Hua Phan, Laos','','');
photos[132] = new photo(3587848,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090130075-600.jpg',500,333,'Pakse Afternoon','http://admin2.clikpic.com/jakecatlett/images/20090130075-600_thumb.jpg',130, 87,0, 0,'A view across the Se river in the afternoon in the town of Pakse','30/01/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[133] = new photo(3285251,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081122012-600.jpg',500,333,'Market vendor','http://admin2.clikpic.com/jakecatlett/images/20081122012-600_thumb.jpg',130, 87,0, 0,'Fruit and vegetable vendor in a market in Phonsavan','22/11/08','Jake Catlett','Phonsavan, Xieng Khouang, Laos','','');
photos[134] = new photo(3485616,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081116008-600.jpg',500,333,'Market Girl','http://admin2.clikpic.com/jakecatlett/images/20081116008-600_thumb.jpg',130, 87,0, 0,'A Hmong girl selling vegetables in the village of Phou Khoun','16/11/08','Jake Catlett','Phou Khoun Village, Luang Prabang Province','','');
photos[135] = new photo(3600428,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090121039-600.jpg',500,333,'','http://admin2.clikpic.com/jakecatlett/images/20090121039-600_thumb.jpg',130, 87,0, 0,'Tourist boats in Nakasang Town, Chamapassak Province','21/01/09','Jake Catlett','Ban Nakasang, Chapassak Province, Laos','','');
photos[136] = new photo(3485615,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081116004-600.jpg',500,333,'Mountain Baby','http://admin2.clikpic.com/jakecatlett/images/20081116004-600_thumb.jpg',130, 87,0, 0,'A colorful Hmong baby in Luang Prabang province','16/11/08','Jake Catlett','Phou Khoun Village, Luang Prabang Province','','');
photos[137] = new photo(3600480,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090123242-600.jpg',500,333,'Si Phan Don 05','http://admin2.clikpic.com/jakecatlett/images/20090123242-600_thumb.jpg',130, 87,0, 0,'Sunrise on one of the many islands in the Si Phan Don (4000 Islands) area','23/01/09','Jake Catlett','Si Phan Don, Champassak Province, Laos','','');
photos[138] = new photo(3485617,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090120025-600.jpg',500,333,'Island Villager','http://admin2.clikpic.com/jakecatlett/images/20090120025-600_thumb.jpg',130, 87,0, 0,'An old Lao villager smoking a hand-rolled cigarette on Don Khamau island in the 4000 Islands area.','20/01/09','Jake Catlett','Don Khamau, Champassak Province','','');
photos[139] = new photo(3600555,'197357','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090120022-600.jpg',500,333,'Si Phan Don 06','http://admin2.clikpic.com/jakecatlett/images/20090120022-600_thumb.jpg',130, 87,0, 0,'Afternoon river scenery seen from Nakasang Town, Champassak Province','20/01/09','Jake Catlett','Ban Nakasang, Chapassak Province, Laos','','');
photos[140] = new photo(3485618,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090119004-600.jpg',500,333,'Curious Kid','http://admin2.clikpic.com/jakecatlett/images/20090119004-600_thumb.jpg',130, 87,0, 0,'A young girl at a farm on Don Khong island.','19/01/09','Jake Catlett','Don Khong, Si Phan Don, Chapassak Province, Laos','','');
photos[141] = new photo(3485620,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090119007-600.jpg',500,333,'Fisherman\'s Daughter','http://admin2.clikpic.com/jakecatlett/images/20090119007-600_thumb.jpg',130, 87,0, 0,'A young Lao girl hiding behind her father\'s fishing net on Don Khong island.','19/01/09','Jake Catlett','Don Khong, Si Phan Don, Chapassak Province, Laos','','');
photos[142] = new photo(3485621,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090119011-600.jpg',500,333,'Mekhong Fisherman 01','http://admin2.clikpic.com/jakecatlett/images/20090119011-600_thumb.jpg',130, 87,0, 0,'A traditional net fisherman near Don Khong island.','19/01/09','Jake Catlett','Don Khong, Si Phan Don, Chapassak Province, Laos','','');
photos[143] = new photo(3485632,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090119010-600.jpg',500,333,'Mekhong Fisherman 02','http://admin2.clikpic.com/jakecatlett/images/20090119010-600_thumb.jpg',130, 87,0, 0,'Simple portrait of a fisherman near Don Khong','19/01/09','Jake Catlett','Don Khong, Si Phan Don, Chapassak Province, Laos','','');
photos[144] = new photo(2943380,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081014088.jpg',500,332,'Wan Awk Phansaa Festival','http://admin2.clikpic.com/jakecatlett/images/20081014088_thumb.jpg',130, 86,0, 0,'Young friends at the Mekong River in Vientiane during Wan Awk Phansaa Festival.  They are holding a \"hua fai\", a small boat made from banana stump, banana leaves and flowers, which is put in the river to carry away the previous year\'s sins.','14/10/08','Jake Catlett','Vientiane, Laos','','');
photos[145] = new photo(2943378,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081014085.jpg',500,337,'Wan Awk Phansaa Festival','http://admin2.clikpic.com/jakecatlett/images/20081014085_thumb.jpg',130, 87,1, 0,'A young couple at the Mekong River in Vientiane during Wan Awk Phansaa Festival.  They are holding a \"hua fai\", a small boat made from banana stump, banana leaves and flowers, which is put in the river to carry away the previous year\'s sins.','14/10/08','Jake Catlett','Vientiane, Laos','','');
photos[146] = new photo(2943379,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081014086.jpg',500,311,'Wan Awk Phansaa Festival','http://admin2.clikpic.com/jakecatlett/images/20081014086_thumb.jpg',130, 80,0, 0,'A young lady at the Mekong River in Vientiane during Wan Awk Phansaa Festival.  They are holding a \"hua fai\", a small boat made from banana stump, banana leaves and flowers, which is put in the river to carry away the previous year\'s sins.','14/10/08','Jake Catlett','Vientiane, Laos','','');
photos[147] = new photo(3485635,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090205105-600.jpg',500,333,'Savannakhet Market 01','http://admin2.clikpic.com/jakecatlett/images/20090205105-600_thumb.jpg',130, 87,0, 0,'A woman selling vegetables and herbs in the main market in Savannakhet','05/02/09','Jake Catlett','Savannakhet City, Savannakhet Province','','');
photos[148] = new photo(2943377,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081013065.jpg',500,327,'Young Devotee','http://admin2.clikpic.com/jakecatlett/images/20081013065_thumb.jpg',130, 85,0, 0,'A young monk at Wat Mueang Sing in Vientiane','13/10/08','Jake Catlett','Vientiane, Laos','','');
photos[149] = new photo(2583971,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/0702130054.jpg',500,334,'Mekhong Fisherman 03','http://admin2.clikpic.com/jakecatlett/images/0702130054_thumb.jpg',130, 87,1, 0,'A local fisherman off of the island of Don Khong in the Si Phan Don area of the Mekhong River in Southern Laos.','13/02/07','Jake Catlett','Don Khong, Si Phan Don, Laos','','');
photos[150] = new photo(2590887,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/0702120016.JPG',402,600,'Cucumber Kid','http://admin2.clikpic.com/jakecatlett/images/0702120016_thumb.JPG',130, 194,0, 0,'A Lao boy, on a small island in the Si Phan Don region of Southern Laos','12/02/07','Jake Catlett','Si Phan Don, Champassak Province, Laos','','');
photos[151] = new photo(2590893,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/0702180198.JPG',401,600,'Mekhong Girl','http://admin2.clikpic.com/jakecatlett/images/0702180198_thumb.JPG',130, 195,0, 0,'A local girl in a boat taxi on the Mekhong River in Champassak Province.','18/02/07','Jake Catlett','Champassak Province, Laos','','');
photos[152] = new photo(2590914,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/0702190215.JPG',401,600,'Rural Transport','http://admin2.clikpic.com/jakecatlett/images/0702190215_thumb.JPG',130, 195,0, 0,'This photo was taken on Don Dan island on the Mekhong River in Champassak Province.','19/02/07','Jake Catlett','Don Dan, Champassak Province, Laos','','');
photos[153] = new photo(2584096,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/0702130036.jpg',500,333,'Farming Family','http://admin2.clikpic.com/jakecatlett/images/0702130036_thumb.jpg',130, 87,1, 0,'A mother and daughter in a rice field on Don Daed island in Southern Laos.','13/02/07','Jake Catlett','Don Daed, Si Phan Don, Laos','','');
photos[154] = new photo(2612023,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/0702110004.JPG',500,334,'Slow Transport','http://admin2.clikpic.com/jakecatlett/images/0702110004_thumb.JPG',130, 87,1, 0,'Typical river traffic near Don Daed, Si Phan Don, Laos.','11/02/07','Jake Catlett','Don Daed, Si Phan Don, Champassak Province, Laos','','');
photos[155] = new photo(3566483,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081024025-600.jpg',500,333,'Kids in Kiewkacham','http://admin2.clikpic.com/jakecatlett/images/20081024025-600_thumb.jpg',130, 87,0, 0,'Hmong kids in Kiewkacham village eating a melon together','24/10/08','Jake Catlett','Kiewkacham Village, Luang Prabang Province, Laos','','');
photos[156] = new photo(3566481,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081023010-600.jpg',500,333,'Vang Vieng Fisherman','http://admin2.clikpic.com/jakecatlett/images/20081023010-600_thumb.jpg',130, 87,0, 0,'A fisherman crossing the suspension bridge in Vang Vieng town. Note the bomb shell decorations.','23/10/08','Jake Catlett','Vang Vieng town, Vang Vieng District, Vientiane Province, Laos','','');
photos[157] = new photo(3566484,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081026046-600.jpg',500,333,'Grilled Meats','http://admin2.clikpic.com/jakecatlett/images/20081026046-600_thumb.jpg',130, 87,0, 0,'A woman grilling chicken and fish at the market near That Khouang Si waterfall in Luang Prabang province','26/10/08','Jake Catlett','Kuang Si Waterfall, Luang Prabang Province, Laos','','');
photos[158] = new photo(3584002,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081226017b-600.jpg',500,333,'Dancing Girls 01','http://admin2.clikpic.com/jakecatlett/images/20081226017b-600_thumb.jpg',130, 87,1, 0,'Lao girls doing a traditional \"fawn lam\" dance at a festival in Vieng Xai village','26/12/08','Jake Catlett','Vieng Xai, Hua Phan Province, Laos','','');
photos[159] = new photo(3584010,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081226011-600.jpg',500,333,'Dancing Girls 02','http://admin2.clikpic.com/jakecatlett/images/20081226011-600_thumb.jpg',130, 87,0, 0,'Girls doing a traditional \"fawn lam\" dance at a festival in Vieng Xai Village','26/12/08','Jake Catlett','Vieng Xai, Hua Phan Province, Laos','','');
photos[160] = new photo(3584021,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081122002-600.jpg',500,333,'Round n\' Round!','http://admin2.clikpic.com/jakecatlett/images/20081122002-600_thumb.jpg',130, 87,1, 0,'A girl on a hand-turned calliope at a festival in Muang Kham, Xieng Khouang Province','22/11/08','Jake Catlett','Muang Kham, Xieng Khouang Province, Laos','','');
photos[161] = new photo(3584029,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081031252-600.jpg',500,333,'Hmong Ladies','http://admin2.clikpic.com/jakecatlett/images/20081031252-600_thumb.jpg',130, 87,0, 0,'A mother and her daughters in Kiewkacham Village, Luang Prabang Province','31/10/08','Jake Catlett','Kiewkacham Village, Luang Prabang Province, Laos','','');
photos[162] = new photo(3587578,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081129022-600.jpg',500,333,'Hmong New Year 10','http://admin2.clikpic.com/jakecatlett/images/20081129022-600_thumb.jpg',130, 87,0, 0,'A woman in traditional clothing at the Hmong New Year celebration','29/11/08','Jake Catlett','Phonsavan, Xieng Khouang, Laos','','');
photos[163] = new photo(3587579,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081130286-600.jpg',500,333,'Hmong New Year 11','http://admin2.clikpic.com/jakecatlett/images/20081130286-600_thumb.jpg',130, 87,0, 0,'Women in traditional clothing at the Hmong New Year celebrations','30/11/08','Jake Catlett','Phonsavan, Xieng Khouang, Laos','','');
photos[164] = new photo(3587580,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081031273-600.jpg',500,333,'Hmong village woman','http://admin2.clikpic.com/jakecatlett/images/20081031273-600_thumb.jpg',130, 87,0, 0,'A young Hmong woman wearing traditional clothing at a small celebration in Ban Lak Ha village, Luang Prabang Province','31/10/08','Jake Catlett','Baan Lak Ha, Luang Prabang Province, Laos','','');
photos[165] = new photo(3587581,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081226009-600.jpg',500,333,'Firewood Delivery','http://admin2.clikpic.com/jakecatlett/images/20081226009-600_thumb.jpg',130, 87,0, 0,'Panning shot of a young boy riding a bicycle with firewood he\'s collected in Vieng Xai Village','26/12/08','Jake Catlett','Vieng Xai, Hua Phan Province, Laos','','');
photos[166] = new photo(3587809,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090124360-600.jpg',500,333,'Village Kids 01','http://admin2.clikpic.com/jakecatlett/images/20090124360-600_thumb.jpg',130, 87,1, 0,'Kids at a home in Nakasang Town, Champassak Province','24/01/09','Jake Catlett','Ban Nakasang, Chapassak Province, Laos','','');
photos[167] = new photo(3587810,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090124372-600.jpg',500,333,'Village Kids 02','http://admin2.clikpic.com/jakecatlett/images/20090124372-600_thumb.jpg',130, 87,1, 0,'Boys on a wooden bridge in Nakasang Town, Champassak Province','24/01/09','Jake Catlett','Ban Nakasang, Chapassak Province, Laos','','');
photos[168] = new photo(3587812,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090127156-600.jpg',500,337,'Toothy Smile','http://admin2.clikpic.com/jakecatlett/images/20090127156-600_thumb.jpg',130, 88,0, 0,'A man in Nakasang Town, carrying a freshly cut pole of bamboo','27/01/09','Jake Catlett','Ban Nakasang, Chapassak Province, Laos','','');
photos[169] = new photo(3587813,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090202034-600.jpg',500,333,'Market Girl 01','http://admin2.clikpic.com/jakecatlett/images/20090202034-600_thumb.jpg',130, 87,0, 0,'A young lady selling vegetables in the provincial capitol of Attapeu','02/02/09','Jake Catlett','Samakhixai, Attapeu Province, Laos','','');
photos[170] = new photo(3587814,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081110005-600.jpg',500,333,'Festival Goers 01','http://admin2.clikpic.com/jakecatlett/images/20081110005-600_thumb.jpg',130, 87,1, 0,'Young ladies carrying offerings at Wat Si Muang during the weeklong That Luang Festival','10/11/08','Jake Catlett','Vientiane, Laos','','');
photos[171] = new photo(3587815,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090125001-600.jpg',399,600,'Rice Farmer 01','http://admin2.clikpic.com/jakecatlett/images/20090125001-600_thumb.jpg',130, 195,0, 0,'A girl planting rice in Nakasang Town, Champassak Province','25/01/09','Jake Catlett','Ban Nakasang, Chapassak Province, Laos','','');
photos[172] = new photo(3587817,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090131125-600.jpg',399,600,'Fishmonger 01','http://admin2.clikpic.com/jakecatlett/images/20090131125-600_thumb.jpg',130, 195,0, 0,'A woman selling fresh fish on the street in Pakse','31/01/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[173] = new photo(3587819,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090102002-600.jpg',399,600,'Hmong New Year 12','http://admin2.clikpic.com/jakecatlett/images/20090102002-600_thumb.jpg',130, 195,0, 0,'A gorgeous young Hmong woman dressed in traditional clothing during the Hmong New Year festival in Kilometer 52 Village','02/01/09','Jake Catlett','Baan Lak Ha Sip, Vientiane Province, Laos','','');
photos[174] = new photo(3600590,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081228043-600.jpg',500,333,'Village Kids 05','http://admin2.clikpic.com/jakecatlett/images/20081228043-600_thumb.jpg',130, 87,0, 0,'Hmong kids in a Lon Ang village, Hua Phan Province','28/12/08','Jake Catlett','Lon Ang village, Hua Phan, Laos','','');
photos[175] = new photo(3600591,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090120028-600.jpg',500,333,'Fisherman 04','http://admin2.clikpic.com/jakecatlett/images/20090120028-600_thumb.jpg',130, 87,0, 0,'A man fishing with a basket trap in the Si Phan Don (4000 Islands) area of Southern Laos','20/01/09','Jake Catlett','Si Phan Don, Champassak Province, Laos','','');
photos[176] = new photo(3600593,'188951','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090123249-600.jpg',500,333,'Sunset Bridge','http://admin2.clikpic.com/jakecatlett/images/20090123249-600_thumb.jpg',130, 87,1, 0,'The old French railway bridge linking Don Khon and Don Daed in the Si Phan Don (4000 Islands) area of Southern Laos','23/01/09','Jake Catlett','Si Phan Don, Champassak Province, Laos','','');
photos[177] = new photo(3285278,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081027064-600.jpg',500,333,'Colorful Umbrellas','http://admin2.clikpic.com/jakecatlett/images/20081027064-600_thumb.jpg',130, 87,0, 0,'Handmade mulberry paper umbrellas for sale on the street in Luang Prabang','27/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[178] = new photo(3491257,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090202033-600.jpg',500,333,'Spicy Contrast','http://admin2.clikpic.com/jakecatlett/images/20090202033-600_thumb.jpg',130, 87,0, 0,'Red and yellow chili peppers on sale at a market in Attapeu','02/02/09','Jake Catlett','Samakhixai, Attapeu Province, Laos','','');
photos[179] = new photo(3491262,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090131093-600.jpg',500,333,'Sugar Cane Cart','http://admin2.clikpic.com/jakecatlett/images/20090131093-600_thumb.jpg',130, 87,0, 0,'Raw sugar cane for sale on a cart in a small street market in Paxse town.  In the background are different types of unripe fruit, preserved or pickled and sold as a snack.','31/01/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[180] = new photo(3491268,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090131006-600.jpg',500,333,'Colonial Window 01','http://admin2.clikpic.com/jakecatlett/images/20090131006-600_thumb.jpg',130, 87,1, 1,'A window on a French Colonial building in Pakse.','31/01/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[181] = new photo(3491273,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090204062-600.jpg',500,333,'Colonial Doorway 01','http://admin2.clikpic.com/jakecatlett/images/20090204062-600_thumb.jpg',130, 87,0, 0,'A side entrance doorway on an old French Colonial building in Savannakhet City','04/02/09','Jake Catlett','Savannakhet City, Savannakhet Province','','');
photos[182] = new photo(3491279,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090131084-600.jpg',500,333,'Old Shop Sign 01','http://admin2.clikpic.com/jakecatlett/images/20090131084-600_thumb.jpg',130, 87,0, 0,'An old hand-painted sign above a shop doorway in Pakse.','02/02/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[183] = new photo(3491281,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090131008-600.jpg',399,600,'Colonial Window 02','http://admin2.clikpic.com/jakecatlett/images/20090131008-600_thumb.jpg',130, 195,0, 0,'A window on an old French Colonial building in Pakse','02/02/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[184] = new photo(3491286,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090131083-600.jpg',399,600,'Pakse Doorway','http://admin2.clikpic.com/jakecatlett/images/20090131083-600_thumb.jpg',130, 195,0, 0,'The doorway to an old shop-front in Pakse town.','02/02/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[185] = new photo(3491298,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090204083-600.jpg',399,600,'Old Cafe 01','http://admin2.clikpic.com/jakecatlett/images/20090204083-600_thumb.jpg',130, 195,0, 0,'The front of an old cafe in a French Colonial building in Savannakhet City.','04/02/09','Jake Catlett','Savannakhet City, Savannakhet Province','','');
photos[186] = new photo(3491310,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090204065-600.jpg',500,333,'Old Cafe 02','http://admin2.clikpic.com/jakecatlett/images/20090204065-600_thumb.jpg',130, 87,0, 0,'The front of an old cafe in a French Colonial building in Savannakhet City.','04/02/09','Jake Catlett','Savannakhet City, Savannakhet Province','','');
photos[187] = new photo(3491315,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090204079-600.jpg',500,333,'Old Cafe 03','http://admin2.clikpic.com/jakecatlett/images/20090204079-600_thumb.jpg',130, 87,0, 0,'The front of an old cafe in a French Colonial building in Savannakhet City.','04/02/09','Jake Catlett','Savannakhet City, Savannakhet Province','','');
photos[188] = new photo(3495512,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090202039-600.jpg',500,333,'Dried Goods','http://admin2.clikpic.com/jakecatlett/images/20090202039-600_thumb.jpg',130, 87,0, 0,'Dried chili peppers and dried fish on sale in the market in Attapeu.','02/02/09','Jake Catlett','Samakhixai, Attapeu Province, Laos','','');
photos[189] = new photo(3495513,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090131128-600.jpg',500,333,'Rice Crackers 01','http://admin2.clikpic.com/jakecatlett/images/20090131128-600_thumb.jpg',130, 87,0, 0,'Rice crackers drying in the sun in an alley in Pakse','31/01/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[190] = new photo(3495517,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090131131-600.jpg',500,333,'Rice Crackers 02','http://admin2.clikpic.com/jakecatlett/images/20090131131-600_thumb.jpg',130, 87,0, 0,'Rice crackers drying in the sun in an alley in Pakse','31/01/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[191] = new photo(3495518,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090131133-600.jpg',500,333,'Rice Crackers 03','http://admin2.clikpic.com/jakecatlett/images/20090131133-600_thumb.jpg',130, 87,0, 0,'Rice crackers drying in the sun in an alley in Pakse','31/01/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[192] = new photo(3587582,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20081028101-600.jpg',500,333,'Street Art','http://admin2.clikpic.com/jakecatlett/images/20081028101-600_thumb.jpg',130, 87,0, 0,'Buddhist paintings for sale on a street in Luang Prabang Town','28/10/08','Jake Catlett','Luang Prabang, Laos','','');
photos[193] = new photo(3587856,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090127155-600.jpg',500,333,'Oranges for Sale','http://admin2.clikpic.com/jakecatlett/images/20090127155-600_thumb.jpg',130, 87,0, 0,'Fresh oranges for sale near the Mekhong river in Nakasang Town, Champassak Province','27/01/09','Jake Catlett','Ban Nakasang, Chapassak Province, Laos','','');
photos[194] = new photo(3587870,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090131087-600.jpg',500,333,'Pakse Shop 01','http://admin2.clikpic.com/jakecatlett/images/20090131087-600_thumb.jpg',130, 87,0, 0,'Typical Lao shop in Pakse town','31/01/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[195] = new photo(3587872,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090131089-600.jpg',500,333,'Pakse Shop 02','http://admin2.clikpic.com/jakecatlett/images/20090131089-600_thumb.jpg',130, 87,0, 0,'A typical Lao shopfront in Pakse','31/01/09','Jake Catlett','Pakse, Champassak Province, Laos','','');
photos[196] = new photo(3587877,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090205091-600.jpg',500,333,'Traditional Medicine 01','http://admin2.clikpic.com/jakecatlett/images/20090205091-600_thumb.jpg',130, 87,0, 0,'Lao women selling traditional medicine at the main market in Savannakhet.  These women also work as fortune tellers and palm readers.','05/02/09','Jake Catlett','Savannakhet City, Savannakhet Province','','');
photos[197] = new photo(3600379,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090107027-600.jpg',500,333,'Lane Xang Avenue 01','http://admin2.clikpic.com/jakecatlett/images/20090107027-600_thumb.jpg',130, 87,0, 0,'Aerial View of Lane Xang Ave in Vientiane, taken from inside Patuxai Monument','07/01/09','Jake Catlett','Vientiane, Laos','','');
photos[198] = new photo(3600387,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090107025-600.jpg',399,600,'Vientiane Street','http://admin2.clikpic.com/jakecatlett/images/20090107025-600_thumb.jpg',130, 195,0, 0,'A view down one of Vientiane\'s main thoroughfares, shot from inside Patuxai Monument','07/01/09','Jake Catlett','Vientiane, Laos','','');
photos[199] = new photo(3600565,'213185','','gallery','http://admin2.clikpic.com/jakecatlett/images/20090105001-6001.jpg',500,333,'Tuk Tuk 01','http://admin2.clikpic.com/jakecatlett/images/20090105001-6001_thumb.jpg',130, 87,0, 0,'Tuk-Tuk in Vientiane','05/01/09','Jake Catlett','Vientiane, Laos','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(229065,'3753724','Lao New Year','gallery');
galleries[1] = new gallery(213157,'3285343,3285265,2588376','Temples','gallery');
galleries[2] = new gallery(188951,'3079253','People','gallery');
galleries[3] = new gallery(197357,'3285220,3083150','Scenery','gallery');
galleries[4] = new gallery(213185,'3491268','In Town','gallery');

