/***************************************************************************
* 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('3514684,2309504,1278737,250413,250378,250354');
	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('3514684,2309504,1278737,250413,250378,250354');
	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 = 'Photos by Jane: ' + 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(3513612,'214903','7254','gallery','http://www1.clikpic.com/janenemery/images/IMG_7254-Edit.jpg',600,400,'Shoot The Crow','http://www1.clikpic.com/janenemery/images/IMG_7254-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','','','');
photos[1] = new photo(3513618,'214903','7260','gallery','http://www1.clikpic.com/janenemery/images/IMG_7260-Edit.jpg',600,800,'Shoot The Crow','http://www1.clikpic.com/janenemery/images/IMG_7260-Edit_thumb.jpg',130, 173,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[2] = new photo(3513626,'214903','7262','gallery','http://www1.clikpic.com/janenemery/images/IMG_7262-Edit.jpg',600,900,'Shoot The Crow','http://www1.clikpic.com/janenemery/images/IMG_7262-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[3] = new photo(3513630,'214903','7265','gallery','http://www1.clikpic.com/janenemery/images/IMG_7265-Edit.jpg',600,800,'Shoot The Crow','http://www1.clikpic.com/janenemery/images/IMG_7265-Edit_thumb.jpg',130, 173,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[4] = new photo(3513633,'214903','7275','gallery','http://www1.clikpic.com/janenemery/images/IMG_7275-Edit.jpg',600,900,'Shoot The Crow','http://www1.clikpic.com/janenemery/images/IMG_7275-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[5] = new photo(3513637,'214903','7283','gallery','http://www1.clikpic.com/janenemery/images/IMG_7283-Edit.jpg',600,450,'Support for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7283-Edit_thumb.jpg',130, 98,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[6] = new photo(3513641,'214903','7284','gallery','http://www1.clikpic.com/janenemery/images/IMG_7284-Edit.jpg',600,800,'Support act for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7284-Edit_thumb.jpg',130, 173,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[7] = new photo(3513646,'214903','7288','gallery','http://www1.clikpic.com/janenemery/images/IMG_7288-Edit.jpg',600,900,'Support act for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7288-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[8] = new photo(3513650,'214903','7294','gallery','http://www1.clikpic.com/janenemery/images/IMG_7294-Edit.jpg',600,400,'Support act for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7294-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[9] = new photo(3513655,'214903','7303','gallery','http://www1.clikpic.com/janenemery/images/IMG_7303-Edit.jpg',600,800,'Support act for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7303-Edit_thumb.jpg',130, 173,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[10] = new photo(3513663,'214903','7304','gallery','http://www1.clikpic.com/janenemery/images/IMG_7304-Edit.jpg',600,800,'Support act for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7304-Edit_thumb.jpg',130, 173,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[11] = new photo(3513666,'214903','7310','gallery','http://www1.clikpic.com/janenemery/images/IMG_7310-Edit.jpg',600,450,'Support act for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7310-Edit_thumb.jpg',130, 98,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[12] = new photo(3513669,'214903','7311','gallery','http://www1.clikpic.com/janenemery/images/IMG_7311-Edit.jpg',600,400,'Support act for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7311-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[13] = new photo(3513671,'214903','7312','gallery','http://www1.clikpic.com/janenemery/images/IMG_7312-Edit.jpg',600,400,'Support act for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7312-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[14] = new photo(3513682,'214903','7317','gallery','http://www1.clikpic.com/janenemery/images/IMG_7317-Edit.jpg',600,400,'Support act for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7317-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[15] = new photo(3513685,'214903','7319','gallery','http://www1.clikpic.com/janenemery/images/IMG_7319-Edit.jpg',600,450,'Support act for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7319-Edit_thumb.jpg',130, 98,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[16] = new photo(3513687,'214903','7319','gallery','http://www1.clikpic.com/janenemery/images/IMG_7321-Edit.jpg',600,900,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7321-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[17] = new photo(3513743,'214903','7321','gallery','http://www1.clikpic.com/janenemery/images/IMG_7327-Edit.jpg',600,800,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7327-Edit_thumb.jpg',130, 173,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[18] = new photo(3513746,'214903','7335','gallery','http://www1.clikpic.com/janenemery/images/IMG_7335-Edit.jpg',600,400,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7335-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[19] = new photo(3513751,'214903','7339','gallery','http://www1.clikpic.com/janenemery/images/IMG_7339-Edit.jpg',600,400,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7339-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[20] = new photo(3513753,'214903','7345','gallery','http://www1.clikpic.com/janenemery/images/IMG_7345-Edit.jpg',600,400,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7345-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[21] = new photo(3513755,'214903','7353','gallery','http://www1.clikpic.com/janenemery/images/IMG_7353-Edit.jpg',600,900,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7353-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[22] = new photo(3513756,'214903','7355','gallery','http://www1.clikpic.com/janenemery/images/IMG_7355-Edit.jpg',600,400,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7355-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[23] = new photo(3513758,'214903','7358','gallery','http://www1.clikpic.com/janenemery/images/IMG_7358-Edit.jpg',600,900,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7358-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[24] = new photo(3513772,'214903','7373','gallery','http://www1.clikpic.com/janenemery/images/IMG_7373-Edit.jpg',600,900,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7373-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[25] = new photo(3513775,'214903','7379','gallery','http://www1.clikpic.com/janenemery/images/IMG_7379-Edit.jpg',600,400,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7379-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[26] = new photo(3513778,'214903','7382','gallery','http://www1.clikpic.com/janenemery/images/IMG_7382-Edit.jpg',600,400,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7382-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[27] = new photo(3513792,'214903','7392','gallery','http://www1.clikpic.com/janenemery/images/IMG_7392-Edit.jpg',600,900,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7392-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[28] = new photo(3514626,'214903','7395','gallery','http://www1.clikpic.com/janenemery/images/IMG_7395-Edit.jpg',600,900,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7395-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[29] = new photo(3514665,'214903','7402','gallery','http://www1.clikpic.com/janenemery/images/IMG_7402-Edit.jpg',600,900,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7402-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[30] = new photo(3514679,'214903','7409','gallery','http://www1.clikpic.com/janenemery/images/IMG_7409-Edit.jpg',600,900,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7409-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[31] = new photo(3514684,'214903','7410','gallery','http://www1.clikpic.com/janenemery/images/IMG_7410-Edit.jpg',600,400,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7410-Edit_thumb.jpg',130, 87,1, 1,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[32] = new photo(3514687,'214903','7417','gallery','http://www1.clikpic.com/janenemery/images/IMG_7417-Edit.jpg',600,450,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7417-Edit_thumb.jpg',130, 98,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[33] = new photo(3514689,'214903','7428','gallery','http://www1.clikpic.com/janenemery/images/IMG_7428-Edit.jpg',600,800,'Shoot the Crow','http://www1.clikpic.com/janenemery/images/IMG_7428-Edit_thumb.jpg',130, 173,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[34] = new photo(3514748,'214903','7433','gallery','http://www1.clikpic.com/janenemery/images/IMG_7433-Edit.jpg',600,900,'Mike from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7433-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[35] = new photo(3514756,'214903','7435','gallery','http://www1.clikpic.com/janenemery/images/IMG_7435-Edit.jpg',600,900,'Dan from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7435-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[36] = new photo(3514759,'214903','7441','gallery','http://www1.clikpic.com/janenemery/images/IMG_7441-Edit.jpg',600,900,'Mike from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7441-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[37] = new photo(3514765,'214903','7445','gallery','http://www1.clikpic.com/janenemery/images/IMG_7445-Edit.jpg',600,400,'Dan from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7445-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[38] = new photo(3514768,'214903','7458','gallery','http://www1.clikpic.com/janenemery/images/IMG_7458-Edit.jpg',600,400,'Mike from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7458-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[39] = new photo(3514777,'214903','7465','gallery','http://www1.clikpic.com/janenemery/images/IMG_7465-Edit.jpg',600,800,'New girl Olivia Dunn from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7465-Edit_thumb.jpg',130, 173,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[40] = new photo(3514783,'214903','7473','gallery','http://www1.clikpic.com/janenemery/images/IMG_7473-Edit.jpg',600,800,'Olivia from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7473-Edit_thumb.jpg',130, 173,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[41] = new photo(3514787,'214903','7491','gallery','http://www1.clikpic.com/janenemery/images/IMG_7491-Edit.jpg',600,400,'Olivia from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7491-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[42] = new photo(3514794,'214903','7497','gallery','http://www1.clikpic.com/janenemery/images/IMG_7497-Edit.jpg',600,900,'Olivia from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7497-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[43] = new photo(3514797,'214903','7521','gallery','http://www1.clikpic.com/janenemery/images/IMG_7521-Edit.jpg',600,900,'Mike from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7521-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[44] = new photo(3514804,'214903','7526','gallery','http://www1.clikpic.com/janenemery/images/IMG_7526-Edit.jpg',600,800,'New guy Graham Anderson from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7526-Edit_thumb.jpg',130, 173,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[45] = new photo(3514811,'214903','7531','gallery','http://www1.clikpic.com/janenemery/images/IMG_7531-Edit.jpg',600,900,'Mike from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7531-Edit_thumb.jpg',130, 195,0, 0,'Taking a drop of the black stuff!','27/02/09','','Plymouth The Hippo nightclub','','');
photos[46] = new photo(3514814,'214903','7539','gallery','http://www1.clikpic.com/janenemery/images/IMG_7539-Edit.jpg',600,900,'Olivia from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7539-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[47] = new photo(3514821,'214903','7563','gallery','http://www1.clikpic.com/janenemery/images/IMG_7563-Edit.jpg',600,450,'Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7563-Edit_thumb.jpg',130, 98,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[48] = new photo(3514825,'214903','7564','gallery','http://www1.clikpic.com/janenemery/images/IMG_7564-Edit.jpg',600,450,'Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7564-Edit_thumb.jpg',130, 98,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[49] = new photo(3514836,'214903','7594','gallery','http://www1.clikpic.com/janenemery/images/IMG_7594-Edit.jpg',600,400,'Olivia from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7594-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[50] = new photo(3514840,'214903','7601','gallery','http://www1.clikpic.com/janenemery/images/IMG_7601-Edit.jpg',600,400,'Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7601-Edit_thumb.jpg',130, 87,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[51] = new photo(3514860,'214903','7636','gallery','http://www1.clikpic.com/janenemery/images/IMG_7636-Edit.jpg',600,800,'Mike from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7636-Edit_thumb.jpg',130, 173,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[52] = new photo(3514861,'214903','7645','gallery','http://www1.clikpic.com/janenemery/images/IMG_7645-Edit.jpg',600,900,'Olivia from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7645-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[53] = new photo(3514864,'214903','7693','gallery','http://www1.clikpic.com/janenemery/images/IMG_7693-Edit.jpg',600,900,'Mike from Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7693-Edit_thumb.jpg',130, 195,0, 0,'','27/02/09','','Plymouth The Hippo nightclub','','');
photos[54] = new photo(3178705,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Saltram-House-191108.jpg',400,600,'Saltram House','http://www1.clikpic.com/janenemery/images/Saltram-House-191108_thumb.jpg',130, 195,0, 0,'A beautiful day at Saltram House in Plympton, Devon','19/11/08','','Saltram House, Plymouth, Devon','','');
photos[55] = new photo(3178715,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Saltram-House-02-191108.jpg',600,400,'Saltram House','http://www1.clikpic.com/janenemery/images/Saltram-House-02-191108_thumb.jpg',130, 87,0, 0,'Another beautiful late afternoon at Saltram House, Plymouth','19/11/08','','Saltram House, Plymouth, Devon','','');
photos[56] = new photo(3178720,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Shaldon-091108.jpg',600,399,'Shaldon, Devon at dawn','http://www1.clikpic.com/janenemery/images/Shaldon-091108_thumb.jpg',130, 86,0, 0,'Shaldon and the mouth of the River Teign in Devon at dawn','09/11/08','','Shaldon, Devon','','');
photos[57] = new photo(3178723,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Shaldon_Teignmouth-091108.jpg',600,400,'Shaldon at dawn','http://www1.clikpic.com/janenemery/images/Shaldon_Teignmouth-091108_thumb.jpg',130, 87,0, 0,'Shaldon to the mouth of the River Teign at dawn','09/11/08','','Shaldon, Devon','','');
photos[58] = new photo(3178672,'22670','','gallery','http://www1.clikpic.com/janenemery/images/002-Becky-Falls-081108.jpg',600,400,'Becky Falls','http://www1.clikpic.com/janenemery/images/002-Becky-Falls-081108_thumb.jpg',130, 87,0, 0,'Autumn at Becky Falls','08/11/08','','Becky Falls, Devon','','');
photos[59] = new photo(3178674,'22670','','gallery','http://www1.clikpic.com/janenemery/images/004-Becky-Falls-081108.jpg',600,400,'Becky Falls','http://www1.clikpic.com/janenemery/images/004-Becky-Falls-081108_thumb.jpg',130, 87,0, 0,'Autumn colour at Becky Falls','08/11/08','','Becky Falls, Devon','','');
photos[60] = new photo(3178676,'22670','','gallery','http://www1.clikpic.com/janenemery/images/003-Becky-Falls-081108.jpg',600,400,'Becky Falls','http://www1.clikpic.com/janenemery/images/003-Becky-Falls-081108_thumb.jpg',130, 87,0, 0,'Becky Falls in the autumn','08/11/08','','Becky Falls, Devon','','');
photos[61] = new photo(3178681,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Ness-Cove-Beach-Shaldon-081108.jpg',600,400,'Ness Cove Beach, Shaldon','http://www1.clikpic.com/janenemery/images/Ness-Cove-Beach-Shaldon-081108_thumb.jpg',130, 87,0, 0,'Dawn at Ness Cove Beach','08/11/08','','Ness Cove Beach, Shaldon, Devon','','');
photos[62] = new photo(3178683,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Ness-Cove-Beach-Shaldon-091108.jpg',400,600,'Ness Cove Beach, Shaldon','http://www1.clikpic.com/janenemery/images/Ness-Cove-Beach-Shaldon-091108_thumb.jpg',130, 195,0, 0,'Dawn at Ness Cove Beach, Shaldon','08/11/08','','Ness Cove Beach, Shaldon, Devon','','');
photos[63] = new photo(3178698,'22670','','gallery','http://www1.clikpic.com/janenemery/images/001-Becky-Falls-081108.jpg',600,400,'Becky Falls','http://www1.clikpic.com/janenemery/images/001-Becky-Falls-081108_thumb.jpg',130, 87,0, 0,'Becky Falls in the Autumn','08/11/08','','Becky Falls, Devon','','');
photos[64] = new photo(3712682,'226815','IMG 6619','gallery','http://www1.clikpic.com/janenemery/images/IMG_6619-Edit-Edit.jpg',400,600,'Sedona','http://www1.clikpic.com/janenemery/images/IMG_6619-Edit-Edit_thumb.jpg',130, 195,0, 0,'A fleeting visit to Sedona, unfortunate because you could easily spend days there photographing the lovely area.  Maybe next time......','03/11/08','','Sedona Arizona','','');
photos[65] = new photo(3712622,'226815','IMG 6318','gallery','http://www1.clikpic.com/janenemery/images/IMG_6318_19_20_tonemapped.jpg',600,399,'View of ruins in Canyon De Chelly','http://www1.clikpic.com/janenemery/images/IMG_6318_19_20_tonemapped_thumb.jpg',130, 86,0, 0,'Taken at first light from the Junction Overlook towards the far canyon wall and First Ruin.  The Kayenta Anazazi indians constructed this on the long narrow ledge sometime between the 11th and 13th centuries.  It faces south to take advantage of the low winter sun.','01/11/08','','Canyon De Chelly Arizona ','','');
photos[66] = new photo(3712629,'226815','IMG 6347','gallery','http://www1.clikpic.com/janenemery/images/IMG_6347_8_9_tonemapped.jpg',600,400,'Into Canyon De Chelly','http://www1.clikpic.com/janenemery/images/IMG_6347_8_9_tonemapped_thumb.jpg',130, 87,0, 0,'This photograph, again taken from Junction Overlook, shows the junction of Canyon De Chelly and Canyon Del Muerto.','01/11/08','','Canyon De Chelly Arizona ','','');
photos[67] = new photo(3712631,'226815','IMG 6372','gallery','http://www1.clikpic.com/janenemery/images/IMG_6372-Edit.jpg',600,400,'Into Canyon De Chelly from Tsegi overlook.','http://www1.clikpic.com/janenemery/images/IMG_6372-Edit_thumb.jpg',130, 87,0, 0,'','01/11/08','','Canyon De Chelly Arizona ','','');
photos[68] = new photo(3712637,'226815','IMG 6399','gallery','http://www1.clikpic.com/janenemery/images/IMG_6399-Edit.jpg',600,400,'Our group at Tsegi overlook.','http://www1.clikpic.com/janenemery/images/IMG_6399-Edit_thumb.jpg',130, 87,0, 0,'Yes you have to look very closely to see some of our group at the top of the Canyon walls.  This photograph again shows the scale of the Canyon where the walls are sometimes over 1 km high.','01/11/08','','Canyon De Chelly Arizona ','','');
photos[69] = new photo(3712661,'226815','IMG 6418','gallery','http://www1.clikpic.com/janenemery/images/IMG_6418_19_20_tonemapped.jpg',600,399,'Coal Mine Canyon','http://www1.clikpic.com/janenemery/images/IMG_6418_19_20_tonemapped_thumb.jpg',130, 86,0, 0,'Coal Mine Canyon is very easy to miss - there are no signs pointing the way, no paved road to it, no visitor centre, no souvenir shop or hassling trinket sellers.  Just this breathtaking canyon in the middle of the flat surrounding land.','01/11/08','','Coal Mine Canyon Arizona','','');
photos[70] = new photo(3712666,'226815','IMG 6472','gallery','http://www1.clikpic.com/janenemery/images/IMG_6472-Edit.jpg',400,600,'Hoodoo rising up in Coal Mine Canyon.','http://www1.clikpic.com/janenemery/images/IMG_6472-Edit_thumb.jpg',130, 195,0, 0,'Hoodoos are the result of centuries of erosion and underground coal fires.','01/11/08','','Coal Mine Canyon Arizona','','');
photos[71] = new photo(3712672,'226815','IMG6493','gallery','http://www1.clikpic.com/janenemery/images/IMG_6493-Edit.jpg',600,400,'Coal Mine Canyon','http://www1.clikpic.com/janenemery/images/IMG_6493-Edit_thumb.jpg',130, 87,0, 0,'','01/11/08','','Coal Mine Canyon Arizona','','');
photos[72] = new photo(3712139,'226815','IMG 6119','gallery','http://www1.clikpic.com/janenemery/images/IMG_6119-Edit.jpg',600,400,'A Navajo musician, Travis Terry, in Canyon De Chelly','http://www1.clikpic.com/janenemery/images/IMG_6119-Edit_thumb.jpg',130, 87,0, 0,'','31/10/08','','Canyon De Chelly Arizona ','','');
photos[73] = new photo(3712191,'226815','IMG 6122','gallery','http://www1.clikpic.com/janenemery/images/IMG_6122-Edit.jpg',400,600,'Travis Terry','http://www1.clikpic.com/janenemery/images/IMG_6122-Edit_thumb.jpg',130, 195,0, 0,'Travis Terry is a native Flutist of the Pima Nation and he and his wife Cara were in Canyon De Chelly while we were there.  Seeing that we were a bunch of photographers (and knowing our leader, Jeff Kida, very well) he offered to play for us so that we could take this photo.  It was very evocative listening to him playing in such a breathtaking location.','31/10/08','','Canyon De Chelly Arizona ','','');
photos[74] = new photo(3712211,'226815','IMG 6133','gallery','http://www1.clikpic.com/janenemery/images/IMG_6133-Edit.jpg',400,600,'Travis Terry\'s flute','http://www1.clikpic.com/janenemery/images/IMG_6133-Edit_thumb.jpg',130, 195,0, 0,'','31/10/08','','Canyon De Chelly Arizona ','','');
photos[75] = new photo(3712246,'226815','IMG 6153','gallery','http://www1.clikpic.com/janenemery/images/IMG_6153-Edit-Edit-2_-Edit__tonemapped.jpg',600,400,'White House Ruins','http://www1.clikpic.com/janenemery/images/IMG_6153-Edit-Edit-2_-Edit__tonemapped_thumb.jpg',130, 87,0, 0,'These ruins in Canyon De Chelly were built by the Anasazi, a Navajo word meaning Ancient Ones.  Because of the spectacular vertical walls of the Canyon access to the canyon floor was difficult and provided ideal protection for both the ancient and modern Native Americans who have lived here for more than two centuries.','31/10/08','','Canyon De Chelly Arizona ','','');
photos[76] = new photo(3712594,'226815','IMG 6162','gallery','http://www1.clikpic.com/janenemery/images/IMG_6162_3_4_tonemapped.jpg',400,600,'Spider Rock','http://www1.clikpic.com/janenemery/images/IMG_6162_3_4_tonemapped_thumb.jpg',130, 195,0, 0,'Spider Rock is a sandstone spire that rises 800 feet from the floor of Canyon De Chelly.  According to legend Spider Woman lives on the taller of the two spires and keeps the bones of her victims there.','31/10/08','','Canyon De Chelly Arizona ','','');
photos[77] = new photo(3712602,'226815','IMG 6221','gallery','http://www1.clikpic.com/janenemery/images/IMG_6221-Edit.jpg',600,400,'Autumn colours in Canyon De Chelly','http://www1.clikpic.com/janenemery/images/IMG_6221-Edit_thumb.jpg',130, 87,0, 0,'The yellowing Cottonwood trees against the beautiful blue sky - perfect.','31/10/08','','Canyon De Chelly Arizona ','','');
photos[78] = new photo(3712604,'226815','IMG 6232','gallery','http://www1.clikpic.com/janenemery/images/IMG_6232-Edit.jpg',400,600,'Reflections Canyon De Chelly','http://www1.clikpic.com/janenemery/images/IMG_6232-Edit_thumb.jpg',130, 195,0, 0,'','31/10/08','','Canyon De Chelly Arizona ','','');
photos[79] = new photo(3712610,'226815','IMG 6248','gallery','http://www1.clikpic.com/janenemery/images/IMG_6248-Edit-2_-3__tonemapped.jpg',600,400,'Canyon De Chelly','http://www1.clikpic.com/janenemery/images/IMG_6248-Edit-2_-3__tonemapped_thumb.jpg',130, 87,0, 0,'Taken from the floor of Canyon De Chelly and showing the scale of the canyon walls.','31/10/08','','Canyon De Chelly Arizona ','','');
photos[80] = new photo(3712087,'226815','IMG 5692','gallery','http://www1.clikpic.com/janenemery/images/IMG_5692-Edit.jpg',600,400,'Mystery Valley','http://www1.clikpic.com/janenemery/images/IMG_5692-Edit_thumb.jpg',130, 87,0, 0,'Another early morning and sun rise at Mystery Valley in Monument Valley.  A very tranquil place with beautiful views towards the sandstone buttes in Monument Valley.','30/10/08','','Monument Mystery Valley Arizona/Utah','','');
photos[81] = new photo(3712089,'226815','IMG 5730','gallery','http://www1.clikpic.com/janenemery/images/IMG_5730-Edit.jpg',600,400,'Mystery Valley','http://www1.clikpic.com/janenemery/images/IMG_5730-Edit_thumb.jpg',130, 87,0, 0,'','30/10/08','','Monument Mystery Valley Arizona/Utah','','');
photos[82] = new photo(3712090,'226815','IMG 5735','gallery','http://www1.clikpic.com/janenemery/images/IMG_5735-Edit.jpg',600,400,'Mystery Valley','http://www1.clikpic.com/janenemery/images/IMG_5735-Edit_thumb.jpg',130, 87,0, 0,'','30/10/08','','Monument Mystery Valley Arizona/Utah','','');
photos[83] = new photo(3712132,'226815','IMG 5744','gallery','http://www1.clikpic.com/janenemery/images/IMG_5744-Edit.jpg',600,400,'Sandstone formations in Mystery Valley','http://www1.clikpic.com/janenemery/images/IMG_5744-Edit_thumb.jpg',130, 87,0, 0,'','30/10/08','','Monument Mystery Valley Arizona/Utah','','');
photos[84] = new photo(3712133,'226815','IMG 5780','gallery','http://www1.clikpic.com/janenemery/images/IMG_5780-Edit.jpg',400,600,'Another \'hole in the rocks\' in Mystery Valley','http://www1.clikpic.com/janenemery/images/IMG_5780-Edit_thumb.jpg',130, 195,0, 0,'','30/10/08','','Monument Mystery Valley Arizona/Utah','','');
photos[85] = new photo(3712136,'226815','IMG 5824','gallery','http://www1.clikpic.com/janenemery/images/IMG_5824-Edit.jpg',400,600,'Our Navajo guide, Wayne, again provides a perfect addition to my photograph of another hole in the rocks.','http://www1.clikpic.com/janenemery/images/IMG_5824-Edit_thumb.jpg',130, 195,0, 0,'','30/10/08','','Monument Mystery Valley Arizona/Utah','','');
photos[86] = new photo(3712065,'226815','img 5297','gallery','http://www1.clikpic.com/janenemery/images/IMG_5297-Edit-2_-3__tonemapped.jpg',600,400,'Ear of the Wind','http://www1.clikpic.com/janenemery/images/IMG_5297-Edit-2_-3__tonemapped_thumb.jpg',130, 87,0, 0,'Another of the \'hole in the rocks\' at Monument Valley.  The Ear of the Wind is in part of the National Park that is only accessible with a Navajo guide.  It was very quiet and peaceful and we were the only people there.','29/10/08','','Monument Valley Arizona/Utah','','');
photos[87] = new photo(3712068,'226815','img 5355','gallery','http://www1.clikpic.com/janenemery/images/IMG_5355-Edit.jpg',400,600,'Navajo weaver','http://www1.clikpic.com/janenemery/images/IMG_5355-Edit_thumb.jpg',130, 195,0, 0,'This is Susie, she is a Navajo weaver and is 91 years old and still lives in a Hogan in Monument Valley.','29/10/08','','Monument Valley Arizona/Utah','','');
photos[88] = new photo(3712073,'226815','img 5384','gallery','http://www1.clikpic.com/janenemery/images/IMG_5384-Edit.jpg',400,600,'Effie','http://www1.clikpic.com/janenemery/images/IMG_5384-Edit_thumb.jpg',130, 195,0, 0,'This is Effie, Susie\'s daughter, and also a Navajo.  However she no longer lives in a Hogan in Monument Valley and has embraced more comfortable accommodation at The Holiday Inn!','29/10/08','','Monument Valley Arizona/Utah','','');
photos[89] = new photo(3712076,'226815','img 5399','gallery','http://www1.clikpic.com/janenemery/images/IMG_5399-Edit.jpg',400,600,'Susie','http://www1.clikpic.com/janenemery/images/IMG_5399-Edit_thumb.jpg',130, 195,0, 0,'','29/10/08','','Monument Valley Arizona/Utah','','');
photos[90] = new photo(3712078,'226815','IMG 5459','gallery','http://www1.clikpic.com/janenemery/images/IMG_5459-Edit.jpg',400,600,'Navajo weavers in Monument Valley','http://www1.clikpic.com/janenemery/images/IMG_5459-Edit_thumb.jpg',130, 195,0, 0,'','29/10/08','','Monument Valley Arizona/Utah','','');
photos[91] = new photo(3712081,'226815','IMG 5535','gallery','http://www1.clikpic.com/janenemery/images/IMG_5535-Edit.jpg',600,400,'Susie weaving','http://www1.clikpic.com/janenemery/images/IMG_5535-Edit_thumb.jpg',130, 87,0, 0,'Despite earning rather a lot from photographers and tourists Susie still makes and sells beautiful rugs.','29/10/08','','Monument Valley Arizona/Utah','','');
photos[92] = new photo(3712082,'226815','IMG 5588','gallery','http://www1.clikpic.com/janenemery/images/IMG_5588-Edit.jpg',600,400,'A Navajo weaver\'s hands','http://www1.clikpic.com/janenemery/images/IMG_5588-Edit_thumb.jpg',130, 87,0, 0,'','29/10/08','','Monument Valley Arizona/Utah','','');
photos[93] = new photo(3712085,'226815','IMG 5622','gallery','http://www1.clikpic.com/janenemery/images/IMG_5622-Edit.jpg',400,600,'Effie and her jewellery','http://www1.clikpic.com/janenemery/images/IMG_5622-Edit_thumb.jpg',130, 195,0, 0,'Navajo jewellery made and sold by Effie.','29/10/08','','Monument Valley Arizona/Utah','','');
photos[94] = new photo(2314498,'151297','','gallery','http://www1.clikpic.com/janenemery/images/Tiger 001 120608.jpg',427,600,'Siberian Tiger','http://www1.clikpic.com/janenemery/images/Tiger 001 120608_thumb.jpg',130, 183,0, 0,'','12/06/08','','Dartmoor Zoological Park, Sparkwell, Devon','','');
photos[95] = new photo(2314504,'151297','','gallery','http://www1.clikpic.com/janenemery/images/Tiger 002 120608.jpg',427,600,'Siberian Tiger','http://www1.clikpic.com/janenemery/images/Tiger 002 120608_thumb.jpg',130, 183,0, 0,'','12/06/08','','Dartmoor Zoological Park, Sparkwell, Devon','','');
photos[96] = new photo(2314507,'151297','','gallery','http://www1.clikpic.com/janenemery/images/Tiger 007 120608.jpg',427,600,'Siberian Tiger','http://www1.clikpic.com/janenemery/images/Tiger 007 120608_thumb.jpg',130, 183,0, 0,'This tiger had just spotted his keeper arriving at the enclosure, hence his posture.','12/06/08','','Dartmoor Zoological Park, Sparkwell, Devon','','');
photos[97] = new photo(2314515,'151297','','gallery','http://www1.clikpic.com/janenemery/images/Tiger B 120608.jpg',600,427,'Siberian Tiger','http://www1.clikpic.com/janenemery/images/Tiger B 120608_thumb.jpg',130, 93,0, 0,'','12/06/08','','Dartmoor Zoological Park, Sparkwell, Devon','','');
photos[98] = new photo(2314524,'151297','','gallery','http://www1.clikpic.com/janenemery/images/IMG_4038-Edit A4.jpg',427,600,'Siberian Tiger','http://www1.clikpic.com/janenemery/images/IMG_4038-Edit A4_thumb.jpg',130, 183,0, 0,'Just about to go for a swim in the moat','12/06/08','','Dartmoor Zoological Park, Sparkwell, Devon','','');
photos[99] = new photo(2314528,'151297','','gallery','http://www1.clikpic.com/janenemery/images/IMG_4046-Edit A4.jpg',427,600,'Siberian Tiger','http://www1.clikpic.com/janenemery/images/IMG_4046-Edit A4_thumb.jpg',130, 183,0, 0,'Taking a cooling dip in the moat','12/06/08','','Dartmoor Zoological Park, Sparkwell, Devon','','');
photos[100] = new photo(2314529,'151297','','gallery','http://www1.clikpic.com/janenemery/images/IMG_4050-Edit A4.jpg',427,600,'Siberian Tiger','http://www1.clikpic.com/janenemery/images/IMG_4050-Edit A4_thumb.jpg',130, 183,0, 0,'Just about to come out after his swim this tiger looked directly at me.  Luckily I was able to shoot through the wire netting and he was in the moat below me.','12/06/08','','Dartmoor Zoological Park, Sparkwell, Devon','','');
photos[101] = new photo(2314532,'151297','','gallery','http://www1.clikpic.com/janenemery/images/IMG_4067-Edit A4.jpg',600,427,'Siberian Tiger','http://www1.clikpic.com/janenemery/images/IMG_4067-Edit A4_thumb.jpg',130, 93,0, 0,'Lazing in the afternoon sunshine.','12/06/08','','Dartmoor Zoological Park, Sparkwell, Devon','','');
photos[102] = new photo(1797904,'22672','190108_031','gallery','http://www1.clikpic.com/janenemery/images/190108_031.jpg',576,432,'Vs Milton Keynes Lions 19th January 2008','http://www1.clikpic.com/janenemery/images/190108_031_thumb.jpg',130, 98,0, 0,'Terrance Durham drives through','19/01/08','','','','');
photos[103] = new photo(1797914,'22672','190108_042','gallery','http://www1.clikpic.com/janenemery/images/190108_042.jpg',432,576,'Vs Milton Keynes Lions 19th January 2008','http://www1.clikpic.com/janenemery/images/190108_042_thumb.jpg',130, 173,0, 0,'Terrance Durham again, no basket from this as he was deamed to have committed a \'charging\' foul!','19/01/08','','','','');
photos[104] = new photo(1797879,'22671','img_0611','gallery','http://www1.clikpic.com/janenemery/images/011 frilled tulip colour.jpg',425,600,'Frilled tulip','http://www1.clikpic.com/janenemery/images/011 frilled tulip colour_thumb.jpg',130, 184,0, 0,'A study of a beautiful frilled tulip, part of a bunch bought for a flower arrangement but this one only made it as far as the front of my camera!','09/01/08','','','','');
photos[105] = new photo(1797796,'120824','img_0227','gallery','http://www1.clikpic.com/janenemery/images/002 Caitlin colour.jpg',425,600,'Caitlin','http://www1.clikpic.com/janenemery/images/002 Caitlin colour_thumb.jpg',130, 184,0, 0,'My daughter Caitlin.  I used window light and a black back drop to try and get a \'low key\' image.  I am not sure whether it has worked or not in this particular image.  Shot with a 100mm macro lens and a ring light.  Exif data - 1/15s at F/5.6, ISO 800, tripod and cable release.','04/01/08','','','','');
photos[106] = new photo(1797802,'120824','img_0284','gallery','http://www1.clikpic.com/janenemery/images/003 girls colour.jpg',600,425,'Daughters','http://www1.clikpic.com/janenemery/images/003 girls colour_thumb.jpg',130, 92,0, 0,'This was my first attempt at a \'high key\' image and I am not sure I have achieved that but I do love this photo of my daughters.  Shot on a 100mm macro lens with ring light attached.  Exif data - 1/60s at F/4, 400 ISO, tripod and cable release.','04/01/08','','','','');
photos[107] = new photo(1797821,'120824','img_0271','gallery','http://www1.clikpic.com/janenemery/images/005 Morgan b & w.jpg',425,600,'Morgan','http://www1.clikpic.com/janenemery/images/005 Morgan b & w_thumb.jpg',130, 184,0, 0,'My second attempt at a \'low key\' image and I actually like the result.  I used window light and a black back drop.  The lens was a 100mm macro with a macro ring light attached.  Exif data - 800 ISO, 1/20s at F/2.8, tripod and cable release.  I desaturated the image in Lightroom.','04/01/08','','','','');
photos[108] = new photo(1797860,'120824','img_0276','gallery','http://www1.clikpic.com/janenemery/images/006 Morgan colour.jpg',425,600,'Morgan','http://www1.clikpic.com/janenemery/images/006 Morgan colour_thumb.jpg',130, 184,0, 0,'An outdoor portrait of Morgan.  Again using a 100mm macro lens with a macro ring light attached. Hand held.  Exif data - 1/60s at F/5.6 ISO 400.','04/01/08','','','','');
photos[109] = new photo(1721228,'22672','291207_062','gallery','http://www1.clikpic.com/janenemery/images/291207_062.jpg',432,576,'Vs Cheshire Jets 29th December 2007','http://www1.clikpic.com/janenemery/images/291207_062_thumb.jpg',130, 173,0, 0,'Terrance Durham makes a basket','29/12/07','','','','');
photos[110] = new photo(1721234,'22672','291207_059','gallery','http://www1.clikpic.com/janenemery/images/291207_059.jpg',432,576,'Vs Cheshire Jets 29th December 2007','http://www1.clikpic.com/janenemery/images/291207_059_thumb.jpg',130, 173,0, 0,'DeAntoine (Cat) Beasley does it again!','29/12/07','','','','');
photos[111] = new photo(1721242,'22672','291207_043','gallery','http://www1.clikpic.com/janenemery/images/291207_043.jpg',432,576,'Vs Cheshire Jets 29th December 2007','http://www1.clikpic.com/janenemery/images/291207_043_thumb.jpg',130, 173,0, 0,'Anthony Martin, like lightning, lands another quick basket.','29/12/07','','','','');
photos[112] = new photo(1721247,'22672','291207_041','gallery','http://www1.clikpic.com/janenemery/images/291207_041.jpg',432,576,'Vs Cheshire Jets 29th December 2007','http://www1.clikpic.com/janenemery/images/291207_041_thumb.jpg',130, 173,0, 0,'DeAntoine (Cat) Beasley breaks away and gets another basket.','29/12/07','','','','');
photos[113] = new photo(1721255,'22672','091207_025','gallery','http://www1.clikpic.com/janenemery/images/091207_25.jpg',600,900,'Vs London Capital 9th December 2007','http://www1.clikpic.com/janenemery/images/091207_25_thumb.jpg',130, 195,0, 0,'Anthony Martin gets another two points for us.','09/12/07','','','','');
photos[114] = new photo(1721260,'22672','091207_035','gallery','http://www1.clikpic.com/janenemery/images/091207_35.jpg',432,576,'Vs London Capital 9th December 2007','http://www1.clikpic.com/janenemery/images/091207_35_thumb.jpg',130, 173,0, 0,'Gaylon Moore forces through to the basket','09/12/07','','','','');
photos[115] = new photo(1721266,'22672','091207_040','gallery','http://www1.clikpic.com/janenemery/images/091207_40.jpg',432,576,'Vs London Capital 9th December 2007','http://www1.clikpic.com/janenemery/images/091207_40_thumb.jpg',130, 173,0, 0,'Terrance Durham, is this really a non contact sport?!','09/12/07','','','','');
photos[116] = new photo(1721279,'22672','091207_048','gallery','http://www1.clikpic.com/janenemery/images/091207_48.jpg',432,576,'Vs London Capital 9th December 2007','http://www1.clikpic.com/janenemery/images/091207_48_thumb.jpg',130, 173,0, 0,'Drew Lasker did get this basket in.','09/12/07','','','','');
photos[117] = new photo(1721294,'22672','091207_054','gallery','http://www1.clikpic.com/janenemery/images/091207_54.jpg',432,576,'Vs London Capital 9th December 2007','http://www1.clikpic.com/janenemery/images/091207_54_thumb.jpg',130, 173,0, 0,'Drew Lasker does it again, as Anthony Martin celebrates below.','09/12/07','','','','');
photos[118] = new photo(1578064,'22672','071107_022','gallery','http://www1.clikpic.com/janenemery/images/071107_022.jpg',432,576,'Vs Leicester Riders 7th November 2007','http://www1.clikpic.com/janenemery/images/071107_022_thumb.jpg',130, 173,0, 0,'Anthony Martin on his way to the basket','07/11/07','','','','');
photos[119] = new photo(1578078,'22672','071107_008','gallery','http://www1.clikpic.com/janenemery/images/071107_0081.jpg',432,576,'Vs Leicester Riders 7th November 2007','http://www1.clikpic.com/janenemery/images/071107_0081_thumb.jpg',130, 173,0, 0,'Anthony Martin charges to the basket','07/11/07','','','','');
photos[120] = new photo(1578093,'22672','071107_035','gallery','http://www1.clikpic.com/janenemery/images/071107_035.jpg',432,576,'Vs Leicester Riders 7th November 2007','http://www1.clikpic.com/janenemery/images/071107_035_thumb.jpg',130, 173,0, 0,'James Noel on the defensive against Leicester Riders','07/11/07','','','','');
photos[121] = new photo(1578186,'22672','041107_009','gallery','http://www1.clikpic.com/janenemery/images/041107_009.jpg',432,576,'Vs London Capital 4th November 2007','http://www1.clikpic.com/janenemery/images/041107_009_thumb.jpg',130, 173,0, 0,'Gaylon Moore makes a basket','04/11/07','','','','');
photos[122] = new photo(1578282,'22672','041107_011','gallery','http://www1.clikpic.com/janenemery/images/041107_011.jpg',400,600,'Vs London Capital 4th November 2007','http://www1.clikpic.com/janenemery/images/041107_011_thumb.jpg',130, 195,0, 0,'Another successful basket by Gaylon Moore','04/11/07','','','','');
photos[123] = new photo(1578351,'22672','041107_019','gallery','http://www1.clikpic.com/janenemery/images/041107_019.jpg',432,576,'Vs London Capital 4th November 2007','http://www1.clikpic.com/janenemery/images/041107_019_thumb.jpg',130, 173,0, 0,'James Noel unsuccessful this time.','04/11/07','','','','');
photos[124] = new photo(1578371,'22672','041107_026','gallery','http://www1.clikpic.com/janenemery/images/041107_026.jpg',432,576,'Vs London Capital 4th November 2007','http://www1.clikpic.com/janenemery/images/041107_026_thumb.jpg',130, 173,0, 0,'Slam dunk!  Drew Lasker.','04/11/07','','','','');
photos[125] = new photo(1578381,'22672','041107_035','gallery','http://www1.clikpic.com/janenemery/images/041107_035.jpg',432,576,'Vs London Capital 4th November 2007','http://www1.clikpic.com/janenemery/images/041107_035_thumb.jpg',130, 173,0, 0,'Jamie Burchell on the defensive.','04/11/07','','','','');
photos[126] = new photo(1721428,'115645','IMG_6492','gallery','http://www1.clikpic.com/janenemery/images/IMG_6492-Edit.jpg',425,600,'Toronto skyline 15th September 2007','http://www1.clikpic.com/janenemery/images/IMG_6492-Edit_thumb.jpg',130, 184,0, 0,'The view from the boat taking us to the Toronto islands.','15/09/07','','','','');
photos[127] = new photo(1721432,'115645','IMG_6494','gallery','http://www1.clikpic.com/janenemery/images/IMG_6494-Edit.jpg',600,425,'Rogers Centre and Toronto skyline 15th September 2007','http://www1.clikpic.com/janenemery/images/IMG_6494-Edit_thumb.jpg',130, 92,0, 0,'Taken from the boat taking us to the Toronto Islands.','15/09/07','','','','');
photos[128] = new photo(1721465,'115645','IMG_6515','gallery','http://www1.clikpic.com/janenemery/images/IMG_6515-Edit B&W layers.jpg',600,425,'Toronto Island Park 15th September 2007','http://www1.clikpic.com/janenemery/images/IMG_6515-Edit B&W layers_thumb.jpg',130, 92,0, 0,'Because the sun was quite high and shadows were strong, I thought a black and white image would look better than the colour one.','15/09/07','','','','');
photos[129] = new photo(1721476,'115645','IMG_6547','gallery','http://www1.clikpic.com/janenemery/images/IMG_6547-Edit.jpg',425,600,'View of Toronto from Toronto Island Park 15th September 2007','http://www1.clikpic.com/janenemery/images/IMG_6547-Edit_thumb.jpg',130, 184,0, 0,'A pretty view of the skyline from Toronto Island Park.','15/09/07','','','','');
photos[130] = new photo(905085,'22672','','gallery','http://www1.clikpic.com/janenemery/images/0001-080407_007.jpg',450,600,'Gaylon Moore 8th April 2007','http://www1.clikpic.com/janenemery/images/0001-080407_007_thumb.jpg',130, 173,0, 0,'Gaylon Moore receiving the player of the year award.  Well deserved.','08/04/07','','','','');
photos[131] = new photo(905088,'22672','','gallery','http://www1.clikpic.com/janenemery/images/0001-080407_027-Newcastle.jpg',400,600,'Vs Newcastle Eagles 8th April 2007','http://www1.clikpic.com/janenemery/images/0001-080407_027-Newcastle_thumb.jpg',130, 195,0, 0,'','08/04/07','','','','');
photos[132] = new photo(905089,'22672','','gallery','http://www1.clikpic.com/janenemery/images/0001-080407_032-Newcastle.jpg',450,600,'Vs Newcastle Eagles 8th April 2007','http://www1.clikpic.com/janenemery/images/0001-080407_032-Newcastle_thumb.jpg',130, 173,0, 0,'','08/04/07','','','','');
photos[133] = new photo(905091,'22672','','gallery','http://www1.clikpic.com/janenemery/images/0001-080407_040-Newcastle.jpg',450,600,'Vs Newcastle Eagles 8th April 2007','http://www1.clikpic.com/janenemery/images/0001-080407_040-Newcastle_thumb.jpg',130, 173,0, 0,'','08/04/07','','','','');
photos[134] = new photo(905093,'22672','','gallery','http://www1.clikpic.com/janenemery/images/0001-140207_015-Sheffield.jpg',450,600,'Vs Sheffield Sharks 14th February 2007','http://www1.clikpic.com/janenemery/images/0001-140207_015-Sheffield_thumb.jpg',130, 173,0, 0,'','14/02/07','','','','');
photos[135] = new photo(905094,'22672','','gallery','http://www1.clikpic.com/janenemery/images/0001-140207_018-Sheffield.jpg',450,600,'Vs Sheffield Sharks 14th February 2007','http://www1.clikpic.com/janenemery/images/0001-140207_018-Sheffield_thumb.jpg',130, 173,0, 0,'','14/02/07','','','','');
photos[136] = new photo(905095,'22672','','gallery','http://www1.clikpic.com/janenemery/images/0001-140207_025-Sheffield.jpg',450,600,'Vs Sheffield Sharks 14th February 2007','http://www1.clikpic.com/janenemery/images/0001-140207_025-Sheffield_thumb.jpg',130, 173,0, 0,'','14/02/07','','','','');
photos[137] = new photo(905006,'22672','','gallery','http://www1.clikpic.com/janenemery/images/AA-090207_052.jpg',450,600,'Vs Leicester Riders 9th February 2007','http://www1.clikpic.com/janenemery/images/AA-090207_052_thumb.jpg',130, 173,0, 0,'','09/02/07','','','','');
photos[138] = new photo(905036,'22672','','gallery','http://www1.clikpic.com/janenemery/images/AA 090207_021.jpg',450,600,'Vs Leicester Riders 9th February 2007','http://www1.clikpic.com/janenemery/images/AA 090207_021_thumb.jpg',130, 173,0, 0,'','09/02/07','','','','');
photos[139] = new photo(905042,'22672','','gallery','http://www1.clikpic.com/janenemery/images/AA-090207_0561.jpg',400,600,'Vs Leicester Riders 9th February 2007','http://www1.clikpic.com/janenemery/images/AA-090207_0561_thumb.jpg',130, 195,0, 0,'','09/02/07','','','','');
photos[140] = new photo(749229,'22672','','gallery','http://www1.clikpic.com/janenemery/images/270107_038.jpg',450,600,'Vs Chester Jets 27th January 2007','http://www1.clikpic.com/janenemery/images/270107_038_thumb.jpg',130, 173,0, 0,'Cat Beasley forces his way through to the basket in a hard fought game against Chester Jets on 27th January 2007','27/01/07','','','','');
photos[141] = new photo(749221,'22670','','gallery','http://www1.clikpic.com/janenemery/images/015-Mewstone-sunset-250107.jpg',400,600,'The Mewstone from Wembury Beach','http://www1.clikpic.com/janenemery/images/015-Mewstone-sunset-250107_thumb.jpg',130, 195,0, 0,'The Mewstone viewed from Wembury Beach just as the sun went down on 25th January 2007','25/01/07','','Wembury Devon','','');
photos[142] = new photo(749226,'22670','','gallery','http://www1.clikpic.com/janenemery/images/004-Wembury-beach-2501071.jpg',600,400,'Wembury Beach','http://www1.clikpic.com/janenemery/images/004-Wembury-beach-2501071_thumb.jpg',130, 87,0, 0,'Wembury Beach on 25th January 2007 at approximately 4.30pm','25/01/07','','Wembury, Devon','','');
photos[143] = new photo(904992,'22670','','gallery','http://www1.clikpic.com/janenemery/images/AA-007-Mewstone-sunset-2501.jpg',600,400,'Mewstone at Wembury','http://www1.clikpic.com/janenemery/images/AA-007-Mewstone-sunset-2501_thumb.jpg',130, 87,0, 0,'Another picture taken on 25th January 2007 of the Mewstone.','25/01/07','','Wembury Devon','','');
photos[144] = new photo(905100,'22672','','gallery','http://www1.clikpic.com/janenemery/images/0001-210107_037-Worcester.jpg',400,600,'Vs Worcester Wolves 21st January 2007','http://www1.clikpic.com/janenemery/images/0001-210107_037-Worcester_thumb.jpg',130, 195,0, 0,'','21/01/07','','','','');
photos[145] = new photo(905101,'22672','','gallery','http://www1.clikpic.com/janenemery/images/0001-210107_046-Worcester.jpg',450,600,'Vs Worcester Wolves 21st January 2007','http://www1.clikpic.com/janenemery/images/0001-210107_046-Worcester_thumb.jpg',130, 173,0, 0,'','21/01/07','','','','');
photos[146] = new photo(701264,'22672','','gallery','http://www1.clikpic.com/janenemery/images/130107_011.jpg',432,576,'Vs Guildford Heat 13th January 2007','http://www1.clikpic.com/janenemery/images/130107_011_thumb.jpg',130, 173,0, 0,'Gavin Love fights through for the Raiders to help gain a well deserved win.','13/01/07','','','','');
photos[147] = new photo(904994,'22672','','gallery','http://www1.clikpic.com/janenemery/images/AA-041106_030.jpg',450,600,'Vs Guildford Heat 4th November 2006','http://www1.clikpic.com/janenemery/images/AA-041106_030_thumb.jpg',130, 173,0, 0,'','04/11/06','','','','');
photos[148] = new photo(904999,'22672','','gallery','http://www1.clikpic.com/janenemery/images/AA-041106_025.jpg',450,600,'Vs Guildford Heat <br>\r\n4th November 2006','http://www1.clikpic.com/janenemery/images/AA-041106_025_thumb.jpg',130, 173,0, 0,'Our big man Carlton Aaron gets yet another basket!','04/11/06','','','','');
photos[149] = new photo(905003,'22672','','gallery','http://www1.clikpic.com/janenemery/images/AA-041106_038.jpg',450,600,'Vs Guildford Heat 4th November 2006','http://www1.clikpic.com/janenemery/images/AA-041106_038_thumb.jpg',130, 173,0, 0,'','04/11/06','','','','');
photos[150] = new photo(2309498,'151064','','gallery','http://www1.clikpic.com/janenemery/images/La Rocco tower at St Ouen\'s Bay 002 211006.jpg',427,600,'La Rocco Tower at St Ouen\'s Bay','http://www1.clikpic.com/janenemery/images/La Rocco tower at St Ouen\'s Bay 002 211006_thumb.jpg',130, 183,0, 0,'The renovated La Rocco Tower at St Ouen\'s Bay in Jersey','21/10/06','','Jersey','','');
photos[151] = new photo(2309554,'151064','','gallery','http://www1.clikpic.com/janenemery/images/La Rocco tower at St Ouen\'s Bay 211006.jpg',600,427,'La Rocco Tower at St Ouen\'s Bay Jersey','http://www1.clikpic.com/janenemery/images/La Rocco tower at St Ouen\'s Bay 211006_thumb.jpg',130, 93,0, 0,'La Rocco Tower at St Ouen\'s Bay Jersey.  This photograph shows the expanse of beach that is St Ouen\'s Bay.','21/10/06','','Jersey','','');
photos[152] = new photo(2309560,'151064','','gallery','http://www1.clikpic.com/janenemery/images/Blo Karting at Le Braye St Ouen\'s Bay 003 211006.jpg',427,600,'Blo Karting at Le Braye on St Ouen\'s Beach.','http://www1.clikpic.com/janenemery/images/Blo Karting at Le Braye St Ouen\'s Bay 003 211006_thumb.jpg',130, 183,0, 0,'Blo Karting is an extremely popular activity at Le Braye.  Anybody can have a go at this but I would think you would have to have nerves of steel because they really do move........','21/10/06','','Jersey','','');
photos[153] = new photo(2309493,'151064','','gallery','http://www1.clikpic.com/janenemery/images/Corbiere Lighthouse 004 201006.jpg',427,600,'Corbiere Lighthouse','http://www1.clikpic.com/janenemery/images/Corbiere Lighthouse 004 201006_thumb.jpg',130, 183,0, 0,'A rough day at Corbiere - is there any other?','20/10/06','','Jersey','','');
photos[154] = new photo(2309504,'151064','','gallery','http://www1.clikpic.com/janenemery/images/Corbiere Lighthouse 201006.jpg',600,427,'Corbiere Lighthouse','http://www1.clikpic.com/janenemery/images/Corbiere Lighthouse 201006_thumb.jpg',130, 93,1, 1,'Just before sunset at Corbiere Lighthouse and suddenly the sun broke through the clouds.  I had spent every evening there on our week\'s holiday hoping for a nice sunset.  I didn\'t get that but this photo was one of a few that I managed to get which I really liked.','20/10/06','','Jersey','','');
photos[155] = new photo(2311880,'151064','','gallery','http://www1.clikpic.com/janenemery/images/IMG_0160 Corbiere 191006.jpg',600,400,'A day time photograph of Corbiere Lighthouse','http://www1.clikpic.com/janenemery/images/IMG_0160 Corbiere 191006_thumb.jpg',130, 87,0, 0,'Corbiere Lighthouse, Jersey.  Taken during the day when the tide was out and you had access to the causeway.','19/10/06','','Jersey','','');
photos[156] = new photo(459225,'22670','','gallery','http://www1.clikpic.com/janenemery/images/001-090906-Plymouth-Hoe-at-.jpg',600,317,'Sunset on Plymouth Hoe','http://www1.clikpic.com/janenemery/images/001-090906-Plymouth-Hoe-at-_thumb.jpg',130, 69,0, 0,'This photograph was taken at about 8.30pm on Plymouth Hoe on 9th September 2006.','09/09/06','Jane N Emery','Plymouth Hoe','','');
photos[157] = new photo(459254,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Hoe-sunset-with-border.jpg',600,424,'Across Plymouth Sound at sunset','http://www1.clikpic.com/janenemery/images/Hoe-sunset-with-border_thumb.jpg',130, 92,0, 0,'This photograph was taken at about 7.30pm on 9th September 2006 and was taken looking across to West Hoe from near the Citadel.','09/09/06','Jane N Emery','','','');
photos[158] = new photo(459303,'22672','','gallery','http://www1.clikpic.com/janenemery/images/090906_059.jpg',432,576,'Vs USA Select 9th September 2006','http://www1.clikpic.com/janenemery/images/090906_059_thumb.jpg',130, 173,0, 0,'Ali Gall makes a terrific block for the Raiders.','09/09/06','','','','');
photos[159] = new photo(459318,'22672','','gallery','http://www1.clikpic.com/janenemery/images/090906_031.jpg',432,576,'Vs USA Select 9th September 2006','http://www1.clikpic.com/janenemery/images/090906_031_thumb.jpg',130, 173,0, 0,'Ali Gall attempts the shot despite being outnumbered!','09/09/06','','','','');
photos[160] = new photo(459321,'22672','','gallery','http://www1.clikpic.com/janenemery/images/090906_023.jpg',432,576,'Vs USA Select 9th September 2006','http://www1.clikpic.com/janenemery/images/090906_023_thumb.jpg',130, 173,0, 0,'Andrew Lasker fights his way through to the basket.','09/09/06','','','','');
photos[161] = new photo(459281,'22670','','gallery','http://www1.clikpic.com/janenemery/images/023-260806-saltram.jpg',432,576,'Saltram House fireworks','http://www1.clikpic.com/janenemery/images/023-260806-saltram_thumb.jpg',130, 173,0, 0,'This is from a batch of photographs taken at the \'Spitfire Proms\' at Saltram House on 26th August 2006.  This was my first attempt at taking photos of firework displays and I was fairly pleased with this shot.  It was pretty much guesswork taking the photos because I could not see through the viewfinder as I took the shots.  I was almost directly in front of the display so the camera had the lens pointed skywards!  Once the camera settings were done I just had to hope that I was getting the exploding fireworks in the frame.  Focus was on infinity and exposure was approximately 8 seconds.','26/08/06','Jane N Emery','','','');
photos[162] = new photo(386392,'31341','','gallery','http://www1.clikpic.com/janenemery/images/AA230606-029-Hadrian\'s-Wall.jpg',600,450,'Hadrian\'s Wall','http://www1.clikpic.com/janenemery/images/AA230606-029-Hadrian\'s-Wall_thumb.jpg',130, 98,0, 0,'Hadrian\'s Wall between Housesteads Fort and Steel Rig','23/06/06','','','','');
photos[163] = new photo(386393,'31341','','gallery','http://www1.clikpic.com/janenemery/images/AA230606-031-Hadrian\'s-Wall.jpg',600,450,'Hadrian\'s Wall','http://www1.clikpic.com/janenemery/images/AA230606-031-Hadrian\'s-Wall_thumb.jpg',130, 98,0, 0,'Hadrian\'s Wall between Housesteads Fort and Steel Rig','23/06/06','','','','');
photos[164] = new photo(386395,'31341','','gallery','http://www1.clikpic.com/janenemery/images/AA230606-033-Hadrian\'s-Wall.jpg',600,450,'Hadrian\'s Wall','http://www1.clikpic.com/janenemery/images/AA230606-033-Hadrian\'s-Wall_thumb.jpg',130, 98,0, 0,'Hadrian\'s Wall between Housesteads Fort and Steel Rig.  More than the wall at this point, I loved the texture of the sky.','23/06/06','','','','');
photos[165] = new photo(386438,'31341','','gallery','http://www1.clikpic.com/janenemery/images/AA240606-Angel-of-the-North.jpg',450,600,'The Angel of the North on a very grey day!','http://www1.clikpic.com/janenemery/images/AA240606-Angel-of-the-North_thumb.jpg',130, 173,0, 0,'The Angel of the North is a modern sculpture created by Antony Gormley, which after several attempts to locate it elsewhere was erected in Gateshead, England.<br>\r\n<br>\r\nAs the name suggests, it is a steel sculpture of an angel, standing 20 metres tall, with wings 54 metres — making it wider than the Statue of Liberty is tall and bigger than a 747 jet. The wings themselves are not flat, but are angled 3.5 degrees forward, which Gormley has been quoted as saying was to create \"a sense of embrace\". It stands on a hill overlooking the A1 road into Tyneside and the East Coast Main Line rail route.','23/06/06','','','','');
photos[166] = new photo(386389,'31341','','gallery','http://www1.clikpic.com/janenemery/images/AA-005-Millennium-Bridge-Ne.jpg',450,600,'Gateshead Millennium Bridge, Newcastle/Gateshead','http://www1.clikpic.com/janenemery/images/AA-005-Millennium-Bridge-Ne_thumb.jpg',130, 173,0, 0,'','22/06/06','','','','');
photos[167] = new photo(386390,'31341','','gallery','http://www1.clikpic.com/janenemery/images/AA003-From-Millennium-Bridg.jpg',600,385,'Gateshead Millennium Bridge, Newcastle/Gateshead','http://www1.clikpic.com/janenemery/images/AA003-From-Millennium-Bridg_thumb.jpg',130, 83,0, 0,'','22/06/06','','','','');
photos[168] = new photo(386493,'31341','','gallery','http://www1.clikpic.com/janenemery/images/AAAlnwick-Castle-016-210606.jpg',429,600,'Alnwick Castle','http://www1.clikpic.com/janenemery/images/AAAlnwick-Castle-016-210606_thumb.jpg',130, 182,0, 0,'Alnwick Castle, a glorious medieval castle (with a fantastic library) which was used as a location for Harry Potter.','21/06/06','','','','');
photos[169] = new photo(386505,'31341','','gallery','http://www1.clikpic.com/janenemery/images/AAAlnwick-Castle-015-210606.jpg',429,600,'Alnwick Castle, Northumberland','http://www1.clikpic.com/janenemery/images/AAAlnwick-Castle-015-210606_thumb.jpg',130, 182,0, 0,'Alnwick Castle, the home of the Percy family, the Dukes of Northumberland, stands above the River Aln.','21/06/06','','','','');
photos[170] = new photo(285007,'22670','','gallery','http://www1.clikpic.com/janenemery/images/015-Brentor-Church-010606.jpg',600,373,'Brentor Church at sunset','http://www1.clikpic.com/janenemery/images/015-Brentor-Church-010606_thumb.jpg',130, 81,0, 0,'This shows several of the gravestones silhouetted at sunset.  There are not many graves on the Tor, given the difficulty of digging graves in granite!','01/06/06','','','','');
photos[171] = new photo(285009,'22670','','gallery','http://www1.clikpic.com/janenemery/images/002-Brentor-Church-010606.jpg',600,400,'Brentor Church on the edge of Dartmoor','http://www1.clikpic.com/janenemery/images/002-Brentor-Church-010606_thumb.jpg',130, 87,0, 0,'This is the tiny church of St. Michael de la Rupe (of the rock) which was built on the volcanic outcrop of Brentor.  It was built around 1130AD.  <br>\r\nMore details of this church can be found at http://www.legendarydartmoor.co.uk/brentor.htm','01/06/06','','','','');
photos[172] = new photo(273056,'22670','','gallery','http://www1.clikpic.com/janenemery/images/004-Wistman\'s-Wood-280506.jpg',548,480,'Wistman\'s Wood, Dartmoor','http://www1.clikpic.com/janenemery/images/004-Wistman\'s-Wood-280506_thumb.jpg',130, 114,0, 0,'','28/05/06','','','','');
photos[173] = new photo(273063,'22670','','gallery','http://www1.clikpic.com/janenemery/images/005-Wistman\'s-Wood-280506.jpg',447,662,'Wistman\'s Wood, Dartmoor','http://www1.clikpic.com/janenemery/images/005-Wistman\'s-Wood-280506_thumb.jpg',130, 193,0, 0,'','28/05/06','','','','');
photos[174] = new photo(273064,'22670','','gallery','http://www1.clikpic.com/janenemery/images/008-Wistman\'s-Wood-280506.jpg',563,845,'Wistman\'s Wood, Dartmoor','http://www1.clikpic.com/janenemery/images/008-Wistman\'s-Wood-280506_thumb.jpg',130, 195,0, 0,'','28/05/06','','','','');
photos[175] = new photo(250507,'22670','','gallery','http://www1.clikpic.com/janenemery/images/2_st_marys_080506.jpg',600,370,'St Mary\'s, Isles of Scilly','http://www1.clikpic.com/janenemery/images/2_st_marys_080506_thumb.jpg',130, 80,0, 0,'','08/05/06','','','','');
photos[176] = new photo(250400,'22670','','gallery','http://www1.clikpic.com/janenemery/images/New_grimsby070506.jpg',600,379,'New Grimsby on Tresco 7th May 2006','http://www1.clikpic.com/janenemery/images/New_grimsby070506_thumb.jpg',130, 82,0, 0,'','07/05/06','','','','');
photos[177] = new photo(250402,'22670','','gallery','http://www1.clikpic.com/janenemery/images/New-grimsby2070506.jpg',515,789,'Tresco, Isles of Scilly','http://www1.clikpic.com/janenemery/images/New-grimsby2070506_thumb.jpg',130, 199,0, 0,'','07/05/06','','','','');
photos[178] = new photo(250448,'22670','','gallery','http://www1.clikpic.com/janenemery/images/tresco_to_brhyer070506.jpg',600,398,'Tresco to Bryher, Isles of Scilly','http://www1.clikpic.com/janenemery/images/tresco_to_brhyer070506_thumb.jpg',130, 86,0, 0,'','07/05/06','','','','');
photos[179] = new photo(250431,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Porth_hellick060506.jpg',600,417,'Porth Hellick, St Mary\'s, Isles of Scilly','http://www1.clikpic.com/janenemery/images/Porth_hellick060506_thumb.jpg',130, 90,0, 0,'','06/05/06','','','','');
photos[180] = new photo(250502,'22670','','gallery','http://www1.clikpic.com/janenemery/images/2_porth_hellick060506.jpg',600,480,'Porth Hellick, Isles of Scilly','http://www1.clikpic.com/janenemery/images/2_porth_hellick060506_thumb.jpg',130, 104,0, 0,'','06/05/06','','','','');
photos[181] = new photo(250504,'22670','','gallery','http://www1.clikpic.com/janenemery/images/2_porth_hellick060506_2.jpg',600,413,'Porth Hellick, Isles of Scilly','http://www1.clikpic.com/janenemery/images/2_porth_hellick060506_2_thumb.jpg',130, 89,0, 0,'','06/05/06','','','','');
photos[182] = new photo(250432,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Porth_Loo050506.jpg',600,400,'Porth Loo, St Mary\'s, Isles of Scilly','http://www1.clikpic.com/janenemery/images/Porth_Loo050506_thumb.jpg',130, 87,0, 0,'','05/05/06','','','','');
photos[183] = new photo(250443,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Porthmellon_beach050506.jpg',600,395,'Porthmellon Beach, St Mary\'s, Isles of Scilly','http://www1.clikpic.com/janenemery/images/Porthmellon_beach050506_thumb.jpg',130, 86,0, 0,'','05/05/06','','','','');
photos[184] = new photo(250445,'22670','','gallery','http://www1.clikpic.com/janenemery/images/St_Marys050506.jpg',547,792,'St Mary\'s, Isles of Scilly','http://www1.clikpic.com/janenemery/images/St_Marys050506_thumb.jpg',130, 188,0, 0,'','05/05/06','','','','');
photos[185] = new photo(260821,'23376','','gallery','http://www1.clikpic.com/janenemery/images/Lough-Tay-190406.jpg',600,400,'Lough Tay, Wicklow Mountains','http://www1.clikpic.com/janenemery/images/Lough-Tay-190406_thumb.jpg',130, 87,0, 0,'Looking down on Lough Tay from Sally Gap.<p>The imported white sandy beach in front of the Guinness family mansion of Luggala Lodge (just out of shot) at the head of the black waters of the lough makes the comparison to a cream-headed pint of the famous family stout fairly obvious.</p>','19/04/06','','','','');
photos[186] = new photo(260828,'23376','','gallery','http://www1.clikpic.com/janenemery/images/Glendalough-3-190406.jpg',600,400,'Upper lake at Glendalough','http://www1.clikpic.com/janenemery/images/Glendalough-3-190406_thumb.jpg',130, 87,0, 0,'','19/04/06','','','','');
photos[187] = new photo(260838,'23376','','gallery','http://www1.clikpic.com/janenemery/images/Glendalough-B&W.jpg',600,400,'A black and white image of the upper lake at Glendalough','http://www1.clikpic.com/janenemery/images/Glendalough-B&W_thumb.jpg',130, 87,0, 0,'','19/04/06','','','','');
photos[188] = new photo(260841,'23376','','gallery','http://www1.clikpic.com/janenemery/images/River-Liffey-190406.jpg',600,400,'River Liffey, Dublin','http://www1.clikpic.com/janenemery/images/River-Liffey-190406_thumb.jpg',130, 87,0, 0,'','19/04/06','','','','');
photos[189] = new photo(250353,'22672','','gallery','http://www1.clikpic.com/janenemery/images/090406_011.jpg',576,432,'Vs Newcastle Eagles 9th April 2006','http://www1.clikpic.com/janenemery/images/090406_011_thumb.jpg',130, 98,0, 0,'','09/04/06','','','','');
photos[190] = new photo(250354,'22672','','gallery','http://www1.clikpic.com/janenemery/images/090406_025.jpg',432,576,'Vs Newcastle Eagles 9th April 2006','http://www1.clikpic.com/janenemery/images/090406_025_thumb.jpg',130, 173,1, 0,'','09/04/06','','','','');
photos[191] = new photo(250356,'22672','','gallery','http://www1.clikpic.com/janenemery/images/090406_030.jpg',432,576,'Vs Newcastle Eagles 9th April 2006','http://www1.clikpic.com/janenemery/images/090406_030_thumb.jpg',130, 173,0, 0,'','09/04/06','','','','');
photos[192] = new photo(250367,'22672','','gallery','http://www1.clikpic.com/janenemery/images/090406_032.jpg',432,576,'Vs Newcastle Eagles 9th April 2006','http://www1.clikpic.com/janenemery/images/090406_032_thumb.jpg',130, 173,0, 0,'','09/04/06','','','','');
photos[193] = new photo(250369,'22672','','gallery','http://www1.clikpic.com/janenemery/images/090406_035.jpg',432,576,'Vs Newcastle Eagles 9th April 2006','http://www1.clikpic.com/janenemery/images/090406_035_thumb.jpg',130, 173,0, 0,'','09/04/06','','','','');
photos[194] = new photo(250332,'22672','','gallery','http://www1.clikpic.com/janenemery/images/080406_014.jpg',432,576,'Vs Sheffield Sharks 8th April 2006','http://www1.clikpic.com/janenemery/images/080406_014_thumb.jpg',130, 173,0, 0,'','08/04/06','','','','');
photos[195] = new photo(250335,'22672','','gallery','http://www1.clikpic.com/janenemery/images/080406_023.jpg',432,576,'Vs Sheffield Sharks 8th April 2006','http://www1.clikpic.com/janenemery/images/080406_023_thumb.jpg',130, 173,0, 0,'','08/04/06','','','','');
photos[196] = new photo(250336,'22672','','gallery','http://www1.clikpic.com/janenemery/images/080406_028.jpg',432,576,'Vs Sheffield Sharks 8th April 2006','http://www1.clikpic.com/janenemery/images/080406_028_thumb.jpg',130, 173,0, 0,'','08/04/06','','','','');
photos[197] = new photo(250366,'22672','','gallery','http://www1.clikpic.com/janenemery/images/080406_019.jpg',432,576,'Vs Sheffield Sharks 8th April 2006','http://www1.clikpic.com/janenemery/images/080406_019_thumb.jpg',130, 173,0, 0,'','08/04/06','','','','');
photos[198] = new photo(250371,'22672','','gallery','http://www1.clikpic.com/janenemery/images/190306_015.jpg',432,576,'Vs Brighton Bears 19th March 2006','http://www1.clikpic.com/janenemery/images/190306_015_thumb.jpg',130, 173,0, 0,'','19/03/06','','','','');
photos[199] = new photo(250375,'22672','','gallery','http://www1.clikpic.com/janenemery/images/190306_019.jpg',432,576,'Vs Brighton Bears 19th March 2006','http://www1.clikpic.com/janenemery/images/190306_019_thumb.jpg',130, 173,0, 0,'','19/03/06','','','','');
photos[200] = new photo(250405,'22670','','gallery','http://www1.clikpic.com/janenemery/images/North_Bovey111205.jpg',360,504,'North Bovey, Devon','http://www1.clikpic.com/janenemery/images/North_Bovey111205_thumb.jpg',130, 182,0, 0,'','11/12/05','','','','');
photos[201] = new photo(250418,'22670','','gallery','http://www1.clikpic.com/janenemery/images/North_bovey2111205.jpg',504,360,'North Bovey, Devon','http://www1.clikpic.com/janenemery/images/North_bovey2111205_thumb.jpg',130, 93,0, 0,'','11/12/05','','','','');
photos[202] = new photo(250421,'22670','','gallery','http://www1.clikpic.com/janenemery/images/North_Bovey3111205.jpg',400,600,'North Bovey, Devon','http://www1.clikpic.com/janenemery/images/North_Bovey3111205_thumb.jpg',130, 195,0, 0,'','11/12/05','','','','');
photos[203] = new photo(250423,'22670','','gallery','http://www1.clikpic.com/janenemery/images/North_Bovey4111205.jpg',504,360,'North Bovey, Devon','http://www1.clikpic.com/janenemery/images/North_Bovey4111205_thumb.jpg',130, 93,0, 0,'','11/12/05','','','','');
photos[204] = new photo(250511,'22671','','gallery','http://www1.clikpic.com/janenemery/images/2_westonbirt_arboretum.jpg',600,400,'Westonbirt Arboretum','http://www1.clikpic.com/janenemery/images/2_westonbirt_arboretum_thumb.jpg',130, 87,0, 0,'','13/11/05','','','','');
photos[205] = new photo(250528,'22671','','gallery','http://www1.clikpic.com/janenemery/images/3-westonbirt131105.jpg',360,504,'Westonbirt Arboretum','http://www1.clikpic.com/janenemery/images/3-westonbirt131105_thumb.jpg',130, 182,0, 0,'','13/11/05','','','','');
photos[206] = new photo(250530,'22671','','gallery','http://www1.clikpic.com/janenemery/images/3-westonbirt131105_2.jpg',360,504,'Westonbirt Arboretum','http://www1.clikpic.com/janenemery/images/3-westonbirt131105_2_thumb.jpg',130, 182,0, 0,'','13/11/05','','','','');
photos[207] = new photo(252855,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_elephants261005.jpg',504,360,'Dust bath','http://www1.clikpic.com/janenemery/images/3_elephants261005_thumb.jpg',130, 93,0, 0,'','26/10/05','','','','');
photos[208] = new photo(252866,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_giraffe261005.jpg',504,360,'Female giraffe','http://www1.clikpic.com/janenemery/images/3_giraffe261005_thumb.jpg',130, 93,0, 0,'','26/10/05','','','','');
photos[209] = new photo(252872,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_impala261005.jpg',360,504,'Male impala','http://www1.clikpic.com/janenemery/images/3_impala261005_thumb.jpg',130, 182,0, 0,'','26/10/05','','','','');
photos[210] = new photo(252875,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_impala261005_2.jpg',504,360,'Impala taking advantage of the shade','http://www1.clikpic.com/janenemery/images/3_impala261005_2_thumb.jpg',130, 93,0, 0,'','26/10/05','','','','');
photos[211] = new photo(252890,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_martialeagle261005.jpg',504,360,'Martial Eagle','http://www1.clikpic.com/janenemery/images/3_martialeagle261005_thumb.jpg',130, 93,0, 0,'','26/10/05','','','','');
photos[212] = new photo(252808,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_africandancers251005.jpg',504,360,'African Dancers','http://www1.clikpic.com/janenemery/images/3_africandancers251005_thumb.jpg',130, 93,0, 0,'','25/10/05','','','','');
photos[213] = new photo(252811,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_africandarter251005.jpg',360,504,'African Darter','http://www1.clikpic.com/janenemery/images/3_africandarter251005_thumb.jpg',130, 182,0, 0,'','25/10/05','','','','');
photos[214] = new photo(252828,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_choberiver251005.jpg',504,360,'Chobe River','http://www1.clikpic.com/janenemery/images/3_choberiver251005_thumb.jpg',130, 93,0, 0,'','25/10/05','','','','');
photos[215] = new photo(252812,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_buffalo241005.jpg',504,360,'Buffalo','http://www1.clikpic.com/janenemery/images/3_buffalo241005_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[216] = new photo(252815,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_carminebeeeater241005.jpg',504,360,'Carmine Bee Eater','http://www1.clikpic.com/janenemery/images/3_carminebeeeater241005_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[217] = new photo(252824,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_choberiver241005.jpg',504,360,'View of Chobe River to Zambia','http://www1.clikpic.com/janenemery/images/3_choberiver241005_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[218] = new photo(252836,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_crocodile241005.jpg',504,360,'Nile Crocodile','http://www1.clikpic.com/janenemery/images/3_crocodile241005_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[219] = new photo(252840,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_elephant241005.jpg',504,360,'Bathing elephant','http://www1.clikpic.com/janenemery/images/3_elephant241005_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[220] = new photo(252845,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_elephants241005.jpg',504,360,'Elephants at Chobe River','http://www1.clikpic.com/janenemery/images/3_elephants241005_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[221] = new photo(252848,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_elephants241005_2.jpg',504,360,'Elephants at Chobe River','http://www1.clikpic.com/janenemery/images/3_elephants241005_2_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[222] = new photo(252850,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_elephants241005_3.jpg',504,360,'Cow and calf on the banks of the Chobe River','http://www1.clikpic.com/janenemery/images/3_elephants241005_3_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[223] = new photo(252852,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_elephants241005_4.jpg',504,360,'Playing elephants','http://www1.clikpic.com/janenemery/images/3_elephants241005_4_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[224] = new photo(252858,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_fisheagle241005.jpg',360,504,'Fish Eagle','http://www1.clikpic.com/janenemery/images/3_fisheagle241005_thumb.jpg',130, 182,0, 0,'','24/10/05','','','','');
photos[225] = new photo(252862,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_giraffe211005.jpg',360,504,'Trying to find water','http://www1.clikpic.com/janenemery/images/3_giraffe211005_thumb.jpg',130, 182,0, 0,'','24/10/05','','','','');
photos[226] = new photo(252870,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_hippo241005.jpg',504,360,'Chobe river hippos','http://www1.clikpic.com/janenemery/images/3_hippo241005_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[227] = new photo(252896,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_monkey241005.jpg',360,504,'Male Baboon','http://www1.clikpic.com/janenemery/images/3_monkey241005_thumb.jpg',130, 182,0, 0,'','24/10/05','','','','');
photos[228] = new photo(252899,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_monkey241005_2.jpg',504,360,'This day has been too long!','http://www1.clikpic.com/janenemery/images/3_monkey241005_2_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[229] = new photo(252903,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_monkey241005_3.jpg',360,504,'Can I get any further up this tree?','http://www1.clikpic.com/janenemery/images/3_monkey241005_3_thumb.jpg',130, 182,0, 0,'','24/10/05','','','','');
photos[230] = new photo(252911,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_monkeys241005.jpg',504,360,'Babies playing in the sand','http://www1.clikpic.com/janenemery/images/3_monkeys241005_thumb.jpg',130, 93,0, 0,'','24/10/05','','','','');
photos[231] = new photo(252843,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_elephants211005.jpg',504,360,'Elephants crossing Chobe River','http://www1.clikpic.com/janenemery/images/3_elephants211005_thumb.jpg',130, 93,0, 0,'','21/10/05','','','','');
photos[232] = new photo(252865,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_giraffe211005_2.jpg',360,504,'Giraffe at sunset','http://www1.clikpic.com/janenemery/images/3_giraffe211005_2_thumb.jpg',130, 182,0, 0,'','21/10/05','','','','');
photos[233] = new photo(252877,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_lions211005.jpg',504,360,'Resting lioness','http://www1.clikpic.com/janenemery/images/3_lions211005_thumb.jpg',130, 93,0, 0,'','21/10/05','','','','');
photos[234] = new photo(252881,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_lions211005_2.jpg',504,360,'Resting lioness','http://www1.clikpic.com/janenemery/images/3_lions211005_2_thumb.jpg',130, 93,0, 0,'','21/10/05','','','','');
photos[235] = new photo(252885,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_lions211005_3.jpg',504,360,'Just like a tabby!','http://www1.clikpic.com/janenemery/images/3_lions211005_3_thumb.jpg',130, 93,0, 0,'','21/10/05','','','','');
photos[236] = new photo(252888,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_lions211005_4.jpg',504,360,'On the look out for trouble','http://www1.clikpic.com/janenemery/images/3_lions211005_4_thumb.jpg',130, 93,0, 0,'','21/10/05','','','','');
photos[237] = new photo(252913,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_zebras211005.jpg',504,360,'Watching me watching them','http://www1.clikpic.com/janenemery/images/3_zebras211005_thumb.jpg',130, 93,0, 0,'','21/10/05','','','','');
photos[238] = new photo(252833,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_crocodile201005.jpg',504,360,'Nile Crocodile','http://www1.clikpic.com/janenemery/images/3_crocodile201005_thumb.jpg',130, 93,0, 0,'This female crocodile was guarding her nest of eggs on the banks of the Chobe River.','20/10/05','','','','');
photos[239] = new photo(252856,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_elephantssunset201005.jpg',504,360,'Sunset over Chobe River','http://www1.clikpic.com/janenemery/images/3_elephantssunset201005_thumb.jpg',130, 93,0, 0,'','20/10/05','','','','');
photos[240] = new photo(252869,'22668','','gallery','http://www1.clikpic.com/janenemery/images/3_hippo201005.jpg',504,360,'Hippo family','http://www1.clikpic.com/janenemery/images/3_hippo201005_thumb.jpg',130, 93,0, 0,'','20/10/05','','','','');
photos[241] = new photo(250380,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Buckfast_abbey.jpg',504,360,'Buckfast Abbey 3rd September 2005','http://www1.clikpic.com/janenemery/images/Buckfast_abbey_thumb.jpg',130, 93,0, 0,'','03/09/05','','','','');
photos[242] = new photo(250378,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Bigbury.jpg',360,504,'Bigbury from Burgh Island 30th July 2006','http://www1.clikpic.com/janenemery/images/Bigbury_thumb.jpg',130, 182,1, 0,'','30/07/05','','','','');
photos[243] = new photo(250430,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Pilchard_Inn.jpg',504,360,'Pilchard Inn, Burgh Island','http://www1.clikpic.com/janenemery/images/Pilchard_Inn_thumb.jpg',130, 93,0, 0,'','30/07/05','','','','');
photos[244] = new photo(250444,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Powderham_castle.jpg',360,504,'Powderham Castle, Devon','http://www1.clikpic.com/janenemery/images/Powderham_castle_thumb.jpg',130, 182,0, 0,'','03/07/05','','','','');
photos[245] = new photo(250232,'22669','','gallery','http://www1.clikpic.com/janenemery/images/Wistaya_canyon.jpg',360,504,'Mistaya Canyon, Banff National Park','http://www1.clikpic.com/janenemery/images/Wistaya_canyon_thumb.jpg',130, 182,0, 0,'','20/06/05','','','','');
photos[246] = new photo(250228,'22669','','gallery','http://www1.clikpic.com/janenemery/images/Lake_Moraine.jpg',360,504,'Lake Moraine, Alberta','http://www1.clikpic.com/janenemery/images/Lake_Moraine_thumb.jpg',130, 182,0, 0,'','19/06/05','','','','');
photos[247] = new photo(250230,'22669','','gallery','http://www1.clikpic.com/janenemery/images/Peyto_lake.jpg',504,360,'Peyto Lake, Alberta','http://www1.clikpic.com/janenemery/images/Peyto_lake_thumb.jpg',130, 93,0, 0,'','19/06/05','','','','');
photos[248] = new photo(250231,'22669','','gallery','http://www1.clikpic.com/janenemery/images/Sulphur_mountain.jpg',504,360,'View from Sulphur Mountain, Banff','http://www1.clikpic.com/janenemery/images/Sulphur_mountain_thumb.jpg',130, 93,0, 0,'','19/06/05','','','','');
photos[249] = new photo(250225,'22669','','gallery','http://www1.clikpic.com/janenemery/images/Canada_aged2.jpg',600,391,'Homeplace Ranch, Priddis, Alberta','http://www1.clikpic.com/janenemery/images/Canada_aged2_thumb.jpg',130, 85,0, 0,'','17/06/05','','','','');
photos[250] = new photo(250397,'22669','','gallery','http://www1.clikpic.com/janenemery/images/Horse_skull.jpg',360,504,'Homeplace Ranch, Priddis, Alberta','http://www1.clikpic.com/janenemery/images/Horse_skull_thumb.jpg',130, 182,0, 0,'Ranch horses that have died have their skulls nailed to trees on the ranch.  This is to honour their memory.','15/06/05','','','','');
photos[251] = new photo(250223,'22669','','gallery','http://www1.clikpic.com/janenemery/images/Canada_aged.jpg',600,596,'Homeplace Ranch, Priddis, Alberta','http://www1.clikpic.com/janenemery/images/Canada_aged_thumb.jpg',130, 129,0, 0,'','13/06/05','','','','');
photos[252] = new photo(250392,'22669','','gallery','http://www1.clikpic.com/janenemery/images/Homeplace_ranch.jpg',360,504,'Homeplace Ranch, Priddis, Alberta','http://www1.clikpic.com/janenemery/images/Homeplace_ranch_thumb.jpg',130, 182,0, 0,'','13/06/05','','','','');
photos[253] = new photo(250447,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Torquay_harbour.jpg',360,504,'Torquay Harbour, Devon','http://www1.clikpic.com/janenemery/images/Torquay_harbour_thumb.jpg',130, 182,0, 0,'','11/06/05','','','','');
photos[254] = new photo(250413,'22669','','gallery','http://www1.clikpic.com/janenemery/images/Calgary_tower_block.jpg',360,504,'Downtown Calgary','http://www1.clikpic.com/janenemery/images/Calgary_tower_block_thumb.jpg',130, 182,1, 0,'','10/06/05','','','','');
photos[255] = new photo(250415,'22669','','gallery','http://www1.clikpic.com/janenemery/images/Husky_oil_building.jpg',504,360,'Husky oil Building, Calgary','http://www1.clikpic.com/janenemery/images/Husky_oil_building_thumb.jpg',130, 93,0, 0,'','10/06/05','','','','');
photos[256] = new photo(250483,'22671','','gallery','http://www1.clikpic.com/janenemery/images/2_220505.jpg',360,504,'Taken at Buckfastleigh','http://www1.clikpic.com/janenemery/images/2_220505_thumb.jpg',130, 182,0, 0,'','22/05/05','','','','');
photos[257] = new photo(250485,'22671','','gallery','http://www1.clikpic.com/janenemery/images/2_asianshortclawedotter2205.jpg',504,360,'Asian short clawed otter','http://www1.clikpic.com/janenemery/images/2_asianshortclawedotter2205_thumb.jpg',130, 93,0, 0,'Asian short clawed otter taken at Buckfastleigh Butterflies and Otters, Devon','22/05/05','','','','');
photos[258] = new photo(250490,'22671','','gallery','http://www1.clikpic.com/janenemery/images/2_butterfly220505.jpg',504,360,'Taken at Buckfastleigh Butterflies and Otters','http://www1.clikpic.com/janenemery/images/2_butterfly220505_thumb.jpg',130, 93,0, 0,'','22/05/05','','','','');
photos[259] = new photo(250494,'22671','','gallery','http://www1.clikpic.com/janenemery/images/2_chrysalis220505.jpg',360,504,'Taken at Buckfastleigh Butterflies and Otters','http://www1.clikpic.com/janenemery/images/2_chrysalis220505_thumb.jpg',130, 182,0, 0,'','22/05/05','','','','');
photos[260] = new photo(250492,'22671','','gallery','http://www1.clikpic.com/janenemery/images/2_cheetah090505.jpg',504,360,'Cheetah at Paignton Zoo','http://www1.clikpic.com/janenemery/images/2_cheetah090505_thumb.jpg',130, 93,0, 0,'','09/05/05','','','','');
photos[261] = new photo(250498,'22671','','gallery','http://www1.clikpic.com/janenemery/images/2_meerkat090505.jpg',360,504,'Meerkat at Paignton Zoo','http://www1.clikpic.com/janenemery/images/2_meerkat090505_thumb.jpg',130, 182,0, 0,'','09/05/05','','','','');
photos[262] = new photo(250500,'22671','','gallery','http://www1.clikpic.com/janenemery/images/2_peacock090505.jpg',360,504,'Peacock at Paignton Zoo','http://www1.clikpic.com/janenemery/images/2_peacock090505_thumb.jpg',130, 182,0, 0,'','09/05/05','','','','');
photos[263] = new photo(250487,'22671','','gallery','http://www1.clikpic.com/janenemery/images/2_butterfly060505.jpg',504,360,'Taken at Buckfastleigh Butterflies and Otters','http://www1.clikpic.com/janenemery/images/2_butterfly060505_thumb.jpg',130, 93,0, 0,'','06/05/05','','','','');
photos[264] = new photo(250488,'22671','','gallery','http://www1.clikpic.com/janenemery/images/2_butterfly060505_2.jpg',504,360,'Taken at Buckfastleigh Butterflies and Otters','http://www1.clikpic.com/janenemery/images/2_butterfly060505_2_thumb.jpg',130, 93,0, 0,'','06/05/05','','','','');
photos[265] = new photo(250385,'22670','','gallery','http://www1.clikpic.com/janenemery/images/Canoeist_dartmoor.jpg',504,360,'Canoeist on the Dart 20th February 2005','http://www1.clikpic.com/janenemery/images/Canoeist_dartmoor_thumb.jpg',130, 93,0, 0,'','20/02/05','','','','');
photos[266] = new photo(250497,'22671','','gallery','http://www1.clikpic.com/janenemery/images/2_flowerateden120404.jpg',504,360,'Taken at the Eden Project','http://www1.clikpic.com/janenemery/images/2_flowerateden120404_thumb.jpg',130, 93,0, 0,'','12/04/04','','','','');
photos[267] = new photo(3513675,'214903','7316','gallery','http://www1.clikpic.com/janenemery/images/IMG_7316-Edit.jpg',600,400,'Support act for Mad Dog Mcrea','http://www1.clikpic.com/janenemery/images/IMG_7316-Edit_thumb.jpg',130, 87,0, 0,'','','','Plymouth The Hippo nightclub','','');
photos[268] = new photo(1282728,'87174','img.4301','gallery','http://www1.clikpic.com/janenemery/images/IMG_4301-Edit.jpg',600,409,'Johannesburg from the air','http://www1.clikpic.com/janenemery/images/IMG_4301-Edit_thumb.jpg',130, 89,0, 0,'I took this photograph while on the internal flight from Johannesburg to the Chitwa Chitwa airstrip.  12.19pm 16th June 2007.','16/06/07','','South Africa ','','');
photos[269] = new photo(1274667,'87174','','gallery','http://www1.clikpic.com/janenemery/images/IMG_4334.jpg',600,428,'Leopard at Simbambili','http://www1.clikpic.com/janenemery/images/IMG_4334_thumb.jpg',130, 93,0, 0,'Taken at around 4pm on 16th June 2007 at Sabi Sands Reserve','16/06/07','','Sabi Sands','','');
photos[270] = new photo(1274672,'87174','img.4337','gallery','http://www1.clikpic.com/janenemery/images/IMG_4337.jpg',592,561,'Leopard at Simbambili','http://www1.clikpic.com/janenemery/images/IMG_4337_thumb.jpg',130, 123,0, 0,'This leopard was one of two which we saw on our evening game drive on 16th June 2007.  This photo was taken at about 4pm.','16/06/07','','Sabi Sands','','');
photos[271] = new photo(1274675,'87174','img.4375','gallery','http://www1.clikpic.com/janenemery/images/IMG_4375.jpg',400,600,'Bathing elephant at sun set','http://www1.clikpic.com/janenemery/images/IMG_4375_thumb.jpg',130, 195,0, 0,'We saw this elephant on our evening game drive on 16th June 2007 (about 5pm).  He was attempting to get his whole body into a very small mud bath, without much success.  His reflection in the pool was lovely but I was unable to get all of this in the photo because we were just too close.','16/06/07','','Sabi Sands','','');
photos[272] = new photo(1274676,'87174','img.4391','gallery','http://www1.clikpic.com/janenemery/images/IMG_4391.jpg',433,600,'Leopard through the grass','http://www1.clikpic.com/janenemery/images/IMG_4391_thumb.jpg',130, 180,0, 0,'This photo was taken as the leopard was in undergrowth and starting to hunt.  It was about 6pm on 16th June 2007.  He was not at all bothered by the safari vehicle so close to him.','16/06/07','','Sabi Sands','','');
photos[273] = new photo(1274681,'87174','img-4410','gallery','http://www1.clikpic.com/janenemery/images/IMG_4410-Edit.jpg',600,441,'Zebra mare and foal','http://www1.clikpic.com/janenemery/images/IMG_4410-Edit_thumb.jpg',130, 96,0, 0,'This mare and foal were alone when we came across them.  The foal was very nervous and didn\'t stand still for very long before ducking into the bushes closely followed by his mother.  It was about 7am in the morning on 17th June 2007 and the sun had just come up.','17/06/07','','Sabi Sands','','');
photos[274] = new photo(1274711,'87174','img.4432','gallery','http://www1.clikpic.com/janenemery/images/IMG_4432.jpg',600,400,'Female leopard','http://www1.clikpic.com/janenemery/images/IMG_4432_thumb.jpg',130, 87,0, 0,'This female leopard was nuzzling a pile of buffalo dung to disguise her scent.  She was being pursued by a couple of male leopards at the time.  The photo was taken at approximately 8am on 17th June 2007 at Simbambili.','17/06/07','','Sabi Sands','','');
photos[275] = new photo(1274713,'87174','img.4435','gallery','http://www1.clikpic.com/janenemery/images/IMG_4435.jpg',600,450,'Female leopard','http://www1.clikpic.com/janenemery/images/IMG_4435_thumb.jpg',130, 98,0, 0,'Another photo of the same female leopard attempting to disguise her scent.','17/06/07','','Sabi Sands','','');
photos[276] = new photo(1274715,'87174','img.4439','gallery','http://www1.clikpic.com/janenemery/images/IMG_4439.jpg',600,450,'Leopard in the long grass.','http://www1.clikpic.com/janenemery/images/IMG_4439_thumb.jpg',130, 98,0, 0,'It was now nearly 8am on 17th June 2007 and this leopard was on the prowl.  He disappeared into longer undergrowth soon after this photo was taken and we never knew whether he got his meal or not.','17/06/07','','Sabi Sands','','');
photos[277] = new photo(3711932,'226815','IMG 4854','gallery','http://www1.clikpic.com/janenemery/images/IMG_4854-Edit.jpg',429,600,'The little church at Goldfield Ghost Town','http://www1.clikpic.com/janenemery/images/IMG_4854-Edit_thumb.jpg',130, 182,0, 0,'Goldfield Ghost Town is situated on the top of a small hill between the superstition Mountains and the Goldfield Mountains on the Apache Trail in Arizona.','25/10/08','','Arizona','','');
photos[278] = new photo(1282735,'87174','img.4446','gallery','http://www1.clikpic.com/janenemery/images/IMG_4446.jpg',600,400,'Resting Rhino','http://www1.clikpic.com/janenemery/images/IMG_4446_thumb.jpg',130, 87,0, 0,'We found this male rhino resting in the early morning sun under a tree.  He was not at all bothered by us being so close.  This photo was taken with my 17-40 wide angle lens because he was so close.  8.28am 17th June 2007.','17/06/07','','Sabi Sands','','');
photos[279] = new photo(1282737,'87174','img.4461','gallery','http://www1.clikpic.com/janenemery/images/IMG_4461.jpg',600,400,'Female Kudu','http://www1.clikpic.com/janenemery/images/IMG_4461_thumb.jpg',130, 87,0, 0,'This female kudu stepped out into the track ahead of us.  She ambled across the path and into the bushes on the far side.  8.38am 17th June 2007.','17/06/07','','Sabi Sands','','');
photos[280] = new photo(1274720,'87174','img.4512','gallery','http://www1.clikpic.com/janenemery/images/IMG_4512.jpg',400,600,'Drinking elephant','http://www1.clikpic.com/janenemery/images/IMG_4512_thumb.jpg',130, 195,0, 0,'From our lodge at Simbambili you could see a water hole.  This elephant came to drink while we waited to depart on our afternoon game drive.  The photo was taken at the full extent of my 75-300IS lens so is not the best quality.  The time was around 3.20pm on 17th June 2007.','17/06/07','','Simbambili Lodge Sabi Sands','','');
photos[281] = new photo(1274722,'87174','img.4513','gallery','http://www1.clikpic.com/janenemery/images/IMG_4513.jpg',400,600,'Drinking elephant','http://www1.clikpic.com/janenemery/images/IMG_4513_thumb.jpg',130, 195,0, 0,'Another photo of the elephant at the water hole.','17/06/07','','Simbambili Lodge Sabi Sands','','');
photos[282] = new photo(1282742,'87174','img.4538','gallery','http://www1.clikpic.com/janenemery/images/IMG_4538.jpg',600,400,'Impala herd','http://www1.clikpic.com/janenemery/images/IMG_4538_thumb.jpg',130, 87,0, 0,'There were so many impala around in Sabi Sands that I did not take photos of them very often.  However on this afternoon the sun was casting a lovely light on them and I couldn\'t resist.  4.47pm 17th June 2007.','17/06/07','','Sabi Sands','','');
photos[283] = new photo(1274726,'87174','img.4569','gallery','http://www1.clikpic.com/janenemery/images/IMG_4569-Edit.jpg',600,452,'Zebra watching us','http://www1.clikpic.com/janenemery/images/IMG_4569-Edit_thumb.jpg',130, 98,0, 0,'This zebra was with a couple of others and a herd of wildebeest on the plains at Djuma in Sabi Sands.  The photo was taken just as the sun rose at 7am on 18th June 2007.','18/06/07','','Sabi Sands','','');
photos[284] = new photo(1274840,'87174','img.4571','gallery','http://www1.clikpic.com/janenemery/images/IMG_4571-Edit.jpg',513,600,'Zebra at Djuma','http://www1.clikpic.com/janenemery/images/IMG_4571-Edit_thumb.jpg',130, 152,0, 0,'This was the same zebra and wildebeest as in the other photo from Djuma.  I decided to process it in black and white and I quite like the effect.','18/06/07','','Sabi Sands','','');
photos[285] = new photo(1216854,'87174','4580cheetahs180607','gallery','http://www1.clikpic.com/janenemery/images/4580cheetahs180607.jpg',450,600,'Male cheetah','http://www1.clikpic.com/janenemery/images/4580cheetahs180607_thumb.jpg',130, 173,0, 0,'Male cheetah around 7am 18th June 2007','18/06/07','','Sabi Sands Reserve South Africa','','');
photos[286] = new photo(1216855,'87174','4593cheetahs180607','gallery','http://www1.clikpic.com/janenemery/images/4593cheetahs180607.jpg',600,450,'Cheetahs','http://www1.clikpic.com/janenemery/images/4593cheetahs180607_thumb.jpg',130, 98,0, 0,'Cheetah brothers at sun rise on 18th June 2007 near Djuma in Sabi Sands reserve.','18/06/07','','Sabi Sands','','');
photos[287] = new photo(3711933,'226815','IMG 4856','gallery','http://www1.clikpic.com/janenemery/images/IMG_4856-Edit.jpg',600,429,'View from Goldfield Ghost Town','http://www1.clikpic.com/janenemery/images/IMG_4856-Edit_thumb.jpg',130, 93,0, 0,'The hitching rail at Goldfield Ghost Town on the Apache Trail in Arizona.  For a small sum Navajo guides will take you on horse back through the Superstition Mountains from here.','25/10/08','','Arizona','','');
photos[288] = new photo(1216857,'87174','4619cheetahs180607','gallery','http://www1.clikpic.com/janenemery/images/4619cheetahs180607.jpg',450,600,'Cheetahs','http://www1.clikpic.com/janenemery/images/4619cheetahs180607_thumb.jpg',130, 173,0, 0,'Cheetah brothers at sun rise near Djuma in Sabi Sands reserve South Africa.','18/06/07','','Sabi Sands','','');
photos[289] = new photo(1216891,'87174','','gallery','http://www1.clikpic.com/janenemery/images/4630cheetah180607.jpg',400,600,'Cheetah starting the hunt','http://www1.clikpic.com/janenemery/images/4630cheetah180607_thumb.jpg',130, 195,0, 0,'One of the male cheetahs at Djuma coming down from his termite mound to start hunting.','18/06/07','','Sabi Sands Game reserve','','');
photos[290] = new photo(1216892,'87174','','gallery','http://www1.clikpic.com/janenemery/images/4643cheetah180607.jpg',600,450,'Male cheetah watching zebra','http://www1.clikpic.com/janenemery/images/4643cheetah180607_thumb.jpg',130, 98,0, 0,'Male cheetah surveying his next kill.','18/06/07','','Sabi Sands reserve','','');
photos[291] = new photo(1216893,'87174','','gallery','http://www1.clikpic.com/janenemery/images/4666cheetah180607.jpg',600,450,'On the hunt','http://www1.clikpic.com/janenemery/images/4666cheetah180607_thumb.jpg',130, 98,0, 0,'Male cheetah advancing on a herd of wildebeest and zebra.','18/06/07','','Sabi Sands reserve','','');
photos[292] = new photo(1216894,'87174','','gallery','http://www1.clikpic.com/janenemery/images/4670cheetah180607.jpg',600,450,'Licking his lips in anticipation of his next meal.','http://www1.clikpic.com/janenemery/images/4670cheetah180607_thumb.jpg',130, 98,0, 0,'Although this looks promising the herd of wildebeest and zebra saw the cheetah brothers and their hunt was not successful this time.','18/06/07','','Sabi Sands reserve','','');
photos[293] = new photo(1278029,'87174','img.4698','gallery','http://www1.clikpic.com/janenemery/images/IMG_4698-Edit.jpg',600,486,'Young lion of the Tsalala pride.','http://www1.clikpic.com/janenemery/images/IMG_4698-Edit_thumb.jpg',130, 105,0, 0,'Taken at 8.38am on 18th June 2007.  This is a youngster from the Tsalala pride of nine (one young male, six other youngsters of varying ages and two lionesses).  The pride were on the Londolozi boundary in the Sabi Sands reserve.','18/06/07','','Sabi Sands','','');
photos[294] = new photo(1278030,'87174','img.4703','gallery','http://www1.clikpic.com/janenemery/images/IMG_4703-Edit.jpg',600,486,'Tsalala pride lions','http://www1.clikpic.com/janenemery/images/IMG_4703-Edit_thumb.jpg',130, 105,0, 0,'Another photo of the same young lion and an even younger sibling both from the Tsalala pride.  Taken on 18th June 2007 at 8.39am.','18/06/07','','Sabi Sands','','');
photos[295] = new photo(1278171,'87174','img.4705','gallery','http://www1.clikpic.com/janenemery/images/IMG_4705-Edit WORKED UP.jpg',600,400,'Another of the Tsalala pride','http://www1.clikpic.com/janenemery/images/IMG_4705-Edit WORKED UP_thumb.jpg',130, 87,0, 0,'Taken at 8.40am 18th June 2007 on Londolozi boundary, Sabi Sands, South Africa','18/06/07','','Sabi Sands','','');
photos[296] = new photo(1278176,'87174','img.4731','gallery','http://www1.clikpic.com/janenemery/images/IMG_4731-Edit WORKED UP.jpg',506,600,'A youngster from the Tsalala pride.','http://www1.clikpic.com/janenemery/images/IMG_4731-Edit WORKED UP_thumb.jpg',130, 154,0, 0,'Taken on Londolozi boundary at Sabi Sands reserve in South Africa.  8.40am 18th June 2007.','18/06/07','','Sabi Sands','','');
photos[297] = new photo(1278185,'87174','img.4732','gallery','http://www1.clikpic.com/janenemery/images/IMG_4732-Edit WORKED UP.jpg',400,600,'Young male member of Tsalala pride.','http://www1.clikpic.com/janenemery/images/IMG_4732-Edit WORKED UP_thumb.jpg',130, 195,0, 0,'The young male lion, senior youngster of the Tsalala pride.  This photo taken at around 8.50am on 18th June 2007.  The pride were on the  Londolozi boundary.','18/06/07','','Sabi Sands','','');
photos[298] = new photo(1278200,'87174','img.4754','gallery','http://www1.clikpic.com/janenemery/images/IMG_4754-Edit.jpg',600,415,'A hard day ahead!','http://www1.clikpic.com/janenemery/images/IMG_4754-Edit_thumb.jpg',130, 90,0, 0,'One of the lionesses of the Tsalala pride thinking about the day ahead.  This photo was taken at around 9am on 18th June 2007 and the pride were on the Londolozi boundary in Sabi Sands.','18/06/07','','Sabi Sands','','');
photos[299] = new photo(3711934,'226815','IMG 4863','gallery','http://www1.clikpic.com/janenemery/images/IMG_4863-Edit.jpg',600,429,'Superstition Mountains over Goldfield Ghost Town','http://www1.clikpic.com/janenemery/images/IMG_4863-Edit_thumb.jpg',130, 93,0, 0,'Goldfield Ghost Town, Arizona','25/10/08','','Arizona ','','');
photos[300] = new photo(1282750,'87174','img.4761','gallery','http://www1.clikpic.com/janenemery/images/IMG_4761-Edit.jpg',600,400,'Female Kudu watching us','http://www1.clikpic.com/janenemery/images/IMG_4761-Edit_thumb.jpg',130, 87,0, 0,'Taken at 9.22am on 18th June 2007 this photo shows a female kudu intently watching us.','18/06/07','','Sabi Sands','','');
photos[301] = new photo(1278226,'87174','img.4795','gallery','http://www1.clikpic.com/janenemery/images/IMG_4795-EditWORKED UP.jpg',600,449,'Lion cub Tsalala pride.','http://www1.clikpic.com/janenemery/images/IMG_4795-EditWORKED UP_thumb.jpg',130, 97,0, 0,'One of the smallest members of the Tsalala pride.  The pride were just about to move after an afternoon of doing what they do best, sleeping.  This photo was taken at about 4.40pm on 18th June 2007.','18/06/07','','Sabi Sands','','');
photos[302] = new photo(1278230,'87174','img.4803','gallery','http://www1.clikpic.com/janenemery/images/IMG_4803-EditWORKED UP.jpg',600,436,'Lion cub, Tsalala pride.','http://www1.clikpic.com/janenemery/images/IMG_4803-EditWORKED UP_thumb.jpg',130, 94,0, 0,'Cleaning up ready for the hunt ahead, one of the youngsters from the Tsalala pride at Sabi Sands.  Taken at around 4.40pm on 18th June 2007.','18/06/07','','Sabi Sands','','');
photos[303] = new photo(1278237,'87174','img.4823','gallery','http://www1.clikpic.com/janenemery/images/IMG_4823-Edit.jpg',600,400,'Two lionesses of the Tsalala pride.','http://www1.clikpic.com/janenemery/images/IMG_4823-Edit_thumb.jpg',130, 87,0, 0,'The two senior members of the Tsalala pride, unbeknown to us they were getting ready to take the rest of the pride on a hunt.  Taken at about 5pm on 18th June 2007.','18/06/07','','Sabi Sands','','');
photos[304] = new photo(1278251,'87174','img.4895','gallery','http://www1.clikpic.com/janenemery/images/IMG_4895-Edit-2.jpg',600,374,'At the kill','http://www1.clikpic.com/janenemery/images/IMG_4895-Edit-2_thumb.jpg',130, 81,0, 0,'Even though we had watched the Tsalala pride get ready to hunt we actually missed the kill.  We were told later that the young male lion and one of the lionesses made the kill.  It was a buffalo cow and calf.  This shot shows one of the lionesses watching over two young cubs feeding.  This shot was taken at around 5.45pm on 18th June 2007.  The sun had set very quickly so I had to take this photo with the aid of the tracker\'s spotlight and a very high ISO on the camera, no flash was used.','18/06/07','','Sabi Sands','','');
photos[305] = new photo(1278258,'87174','img.4920','gallery','http://www1.clikpic.com/janenemery/images/IMG_4920-Edit.jpg',505,600,'Lioness & cubs feeding.','http://www1.clikpic.com/janenemery/images/IMG_4920-Edit_thumb.jpg',130, 154,0, 0,'Another photo of the lioness and cubs at the buffalo kill.  As you can see the adults let the youngsters have their fill first.  Taken at about 5.50pm on 18th June 2007.','18/06/07','','Sabi Sands','','');
photos[306] = new photo(1278262,'87174','img.4952','gallery','http://www1.clikpic.com/janenemery/images/IMG_4952-Edit.jpg',600,375,'Lion cub enjoying a feast','http://www1.clikpic.com/janenemery/images/IMG_4952-Edit_thumb.jpg',130, 81,0, 0,'Tsalala pride lion cub making easy work of this buffalo cow.  Taken at around 6.15pm on 18th June 2007','18/06/07','','Sabi Sands','','');
photos[307] = new photo(1278267,'87174','img.4959','gallery','http://www1.clikpic.com/janenemery/images/IMG_4959-Edit.jpg',600,436,'He is really enjoying this meal!','http://www1.clikpic.com/janenemery/images/IMG_4959-Edit_thumb.jpg',130, 94,0, 0,'Not the prettiest of sights but the cub doesn\'t care much for that, he is enjoying his meal.','18/06/07','','Sabi Sands','','');
photos[308] = new photo(1282759,'87174','img.4969','gallery','http://www1.clikpic.com/janenemery/images/IMG_4969-Edit.jpg',600,483,'Hyena at the buffalo kill','http://www1.clikpic.com/janenemery/images/IMG_4969-Edit_thumb.jpg',130, 105,0, 0,'The morning after the lions had killed the buffalo and calf spotted hyena had found the site.  This was one of three hyena that were on the peripheral of the lion kill.  They would normally have moved in and driven the lions off but they were not aware of the fact that seven of the lions were youngsters and only two were fully grown.  6.55am on 19th June 2007.','19/06/07','','Sabi Sands','','');
photos[309] = new photo(1282765,'87174','img.4971','gallery','http://www1.clikpic.com/janenemery/images/IMG_4971-Edit.jpg',600,400,'Still tucking in','http://www1.clikpic.com/janenemery/images/IMG_4971-Edit_thumb.jpg',130, 87,0, 0,'The morning after the buffalo kill and the lions still held the site and some were still eating!  6.57am 19th June 2007.','19/06/07','','Sabi Sands','','');
photos[310] = new photo(3711935,'226815','IMG 4876','gallery','http://www1.clikpic.com/janenemery/images/IMG_4876-Edit.jpg',600,429,'The corral at Goldfield Ghost Town','http://www1.clikpic.com/janenemery/images/IMG_4876-Edit_thumb.jpg',130, 93,0, 0,'','25/10/08','','Arizona','','');
photos[311] = new photo(1278725,'87174','IMG 4995','gallery','http://www1.clikpic.com/janenemery/images/IMG_4995-Edit.jpg',447,600,'Lion cub Tsalala pride','http://www1.clikpic.com/janenemery/images/IMG_4995-Edit_thumb.jpg',130, 174,0, 0,'The morning after the buffalo kill and this young cub has the swollen belly of one who has eaten his fill.  Photo taken at 7.13am on 19th June 2007.','19/06/07','','Sabi Sands','','');
photos[312] = new photo(1278726,'87174','IMG 5013','gallery','http://www1.clikpic.com/janenemery/images/IMG_5013-Edit.jpg',400,600,'The young male looking very pensive','http://www1.clikpic.com/janenemery/images/IMG_5013-Edit_thumb.jpg',130, 195,0, 0,'The young male lion from the Tsalala pride.  Taken at 7.20am on 19th June 2007.','19/06/07','','Sabi Sands','','');
photos[313] = new photo(1282769,'87174','img.5017','gallery','http://www1.clikpic.com/janenemery/images/IMG_5017-Edit.jpg',400,600,'Young male of the Tsalala pride','http://www1.clikpic.com/janenemery/images/IMG_5017-Edit_thumb.jpg',130, 195,0, 0,'This young male lion had eaten his fill the night before and was not too bothered about getting back to the kill to \'top up\' just yet.  He looks really docile here but he was the one who brought down the buffalo.  19th June 2007 7.22am.','19/06/07','','Sabi Sands','','');
photos[314] = new photo(1278727,'87174','IMG 5019','gallery','http://www1.clikpic.com/janenemery/images/IMG_5019-Edit.jpg',400,600,'Young male of the Tsalala pride','http://www1.clikpic.com/janenemery/images/IMG_5019-Edit_thumb.jpg',130, 195,0, 0,'Another photo of the young male from the Tsalala pride.  Taken at 7.23am on 19th June 2007.','19/06/07','','Sabi Sands','','');
photos[315] = new photo(1282773,'87174','img.5030','gallery','http://www1.clikpic.com/janenemery/images/IMG_5030-Edit.jpg',600,505,'Spotted hyena','http://www1.clikpic.com/janenemery/images/IMG_5030-Edit_thumb.jpg',130, 109,0, 0,'Another of the spotted hyenas waiting for his chance to drive the lions from the kill.  19th June 2007 7.29am.','19/06/07','','Sabi Sands','','');
photos[316] = new photo(1282782,'87174','img.5137','gallery','http://www1.clikpic.com/janenemery/images/IMG_5137-Edit.jpg',400,600,'Sun rise Sabi Sands','http://www1.clikpic.com/janenemery/images/IMG_5137-Edit_thumb.jpg',130, 195,0, 0,'This image does not do the view justice.  There was a mist hanging over the water each morning we drove past this dam and usually the hippos were on the shore.  This time they were not in evidence but the tracker assured us they were around!  6.29am 20th June 2007.','20/06/07','','Sabi Sands','','');
photos[317] = new photo(1278728,'87174','IMG 5147','gallery','http://www1.clikpic.com/janenemery/images/IMG_5147-Edit.jpg',600,491,'Young cubs at the kill site','http://www1.clikpic.com/janenemery/images/IMG_5147-Edit_thumb.jpg',130, 106,0, 0,'Two days after the buffalo kill the Tsalala pride still held the kill site.  These two youngsters still have blood on their faces from regular return to the carcass.  Taken at 6.42am on 20th June 2007.','20/06/07','','Sabi Sands','','');
photos[318] = new photo(1278729,'87174','IMG 5184','gallery','http://www1.clikpic.com/janenemery/images/IMG_5184-Edit.jpg',449,600,'Lioness feeding','http://www1.clikpic.com/janenemery/images/IMG_5184-Edit_thumb.jpg',130, 174,0, 0,'One of the two lionesses of the Tsalala pride still eating from the buffalo carcass two days after it had been killed.  This photo taken at 6.42am on 20th June 2007.','20/06/07','','Sabi Sands ','','');
photos[319] = new photo(1282788,'87174','img.5212','gallery','http://www1.clikpic.com/janenemery/images/IMG_5212-Edit.jpg',600,400,'Lioness shows her teeth!','http://www1.clikpic.com/janenemery/images/IMG_5212-Edit_thumb.jpg',130, 87,0, 0,'Just after sun rise on 20th June 2007 (7.12am) this lioness if yawning, not roaring!  She is at the kill site and the others from the Tsalala pride are scattered around doing the same.','20/06/07','','Sabi Sands','','');
photos[320] = new photo(1274853,'87174','img.5221','gallery','http://www1.clikpic.com/janenemery/images/IMG_5221-Edit.jpg',400,600,'Elephant warning us.','http://www1.clikpic.com/janenemery/images/IMG_5221-Edit_thumb.jpg',130, 195,0, 0,'This elephant was on the side of the road just ahead of us as we turned a corner.  We stopped and assumed it would go into the bushes.  It didn\'t and kept coming straight at us.  As you can see in another photo he flapped his ears and was also shaking his head from side to side to warn us that he was not amused.  However he just walked straight past us, watching us all the time!  A nerve wracking experience.','20/06/07','','Sabi Sands','','');
photos[321] = new photo(3711936,'226815','IMG 5022','gallery','http://www1.clikpic.com/janenemery/images/IMG_5022-EditB--Wresized.jpg',600,300,'East and West Mittens and Merrick Butte','http://www1.clikpic.com/janenemery/images/IMG_5022-EditB--Wresized_thumb.jpg',130, 65,0, 0,'A classic shot of Monument Valley showing the most famous sandstone features - East and West Mittens and Merrick Butte.','28/10/08','','Monument Valley Arizona/Utah','','');
photos[322] = new photo(1274875,'87174','img.5223','gallery','http://www1.clikpic.com/janenemery/images/IMG_5223-Edit.jpg',600,400,'Elephant gets <em>really</em> close!','http://www1.clikpic.com/janenemery/images/IMG_5223-Edit_thumb.jpg',130, 87,0, 0,'As you can see this elephant got <em>really</em> close to us in the vehicle.  I was shooting with my long lens (75-300) and had to put it down when it got closer than this because I couldn\'t get any more of him in the shot but I was also <strong>rather nervous</strong> about him hearing the camera or seeing me move too much.  This was taken at about 7.40am on the morning of 20th June 2007.','20/06/07','','Sabi Sands','','');
photos[323] = new photo(1282799,'87174','img.5240','gallery','http://www1.clikpic.com/janenemery/images/IMG_5240-Edit.jpg',400,600,'Yellow billed hornbill','http://www1.clikpic.com/janenemery/images/IMG_5240-Edit_thumb.jpg',130, 195,0, 0,'There were quite a few of these hornbills around the lodge, Simbambili, where we were staying but usually they did not stay in one place long enough for me to get a decent shot.  This one was very obliging and even started preening while we sat and took photos.  8.43am 20th June 2007.','20/06/07','','Sabi Sands','','');
photos[324] = new photo(1274879,'87174','img.5293','gallery','http://www1.clikpic.com/janenemery/images/IMG_5293-Edit.jpg',600,400,'Leopard at Lion Sands','http://www1.clikpic.com/janenemery/images/IMG_5293-Edit_thumb.jpg',130, 87,0, 0,'Sadly this leopard had a problem with his right eye.  It would have made hunting rather difficult.  He was waking up here in a dry river bed where he had spent the day sheltering from the sun.  The photo was taken at about 5pm on 20th June 2007.','20/06/07','','Sabi Sands','','');
photos[325] = new photo(1282804,'87174','img.5315','gallery','http://www1.clikpic.com/janenemery/images/IMG_5315-Edit.jpg',600,400,'Female Kudu','http://www1.clikpic.com/janenemery/images/IMG_5315-Edit_thumb.jpg',130, 87,0, 0,'Another day and more kudu.  This one stayed in one place long enough for all of us to take some pictures.  7.18am 21st June 2007.','21/06/07','','Sabi Sands','','');
photos[326] = new photo(1282816,'87174','img.5327','gallery','http://www1.clikpic.com/janenemery/images/IMG_5327-Edit.jpg',600,400,'Impala lily','http://www1.clikpic.com/janenemery/images/IMG_5327-Edit_thumb.jpg',130, 87,0, 0,'We stopped for our morning coffee on 21st June and surrounding our site were bushes of these lovely impala lillies.','21/06/07','','Sabi Sands','','');
photos[327] = new photo(1274883,'87174','img.5378','gallery','http://www1.clikpic.com/janenemery/images/IMG_5378-Edit.jpg',400,600,'An adult female giraffe','http://www1.clikpic.com/janenemery/images/IMG_5378-Edit_thumb.jpg',130, 195,0, 0,'This photo shows just how tall an adult giraffe is.  This is a female as can be seen by the tufts on her horns.  This photo was taken at Lion Sands at 4.30pm on 21st June 2007.','21/06/07','','Sabi Sands','','');
photos[328] = new photo(1282824,'87174','img.5404','gallery','http://www1.clikpic.com/janenemery/images/IMG_5404-Edit.jpg',600,400,'Road block Rhino','http://www1.clikpic.com/janenemery/images/IMG_5404-Edit_thumb.jpg',130, 87,0, 0,'On our way out of Lion Sands on the morning of 22nd June we came across three rhinos in the road.  We had to wait for them to move away, we were not going to hurry them!','22/06/07','','Lion Sands','','');
photos[329] = new photo(1282832,'87174','img.5414','gallery','http://www1.clikpic.com/janenemery/images/IMG_5414-Edit.jpg',600,400,'Road block rhino 2','http://www1.clikpic.com/janenemery/images/IMG_5414-Edit_thumb.jpg',130, 87,0, 0,'A close up of our road block rhino.  His horn is made of compacted hair but even this close it is very difficult to see that.  22nd June 2007 6.49am.','22/06/07','','Lion Sands','','');
photos[330] = new photo(1282840,'87174','img.5427','gallery','http://www1.clikpic.com/janenemery/images/IMG_5427-Edit.jpg',600,400,'Early morning Lion Sands','http://www1.clikpic.com/janenemery/images/IMG_5427-Edit_thumb.jpg',130, 87,0, 0,'Another early morning photo from Lion Sands lodge at Sabi Sands.  This water had resident hippos but you can\'t see them in this photo, they were out on the bank.  7.26am 22nd June 2007.','22/06/07','','Lion Sands','','');
photos[331] = new photo(1278730,'87174','IMG 5432','gallery','http://www1.clikpic.com/janenemery/images/IMG_5432-Edit.jpg',600,400,'Adult male lion','http://www1.clikpic.com/janenemery/images/IMG_5432-Edit_thumb.jpg',130, 87,0, 0,'This was the first adult male lion that we saw on this trip.  He was in a group called the Southern Pride and this photo was taken near Lion Sands on 22nd June 2007 at 7.36am.','22/06/07','','Lion Sands','','');
photos[332] = new photo(3711937,'226815','IMG 5060','gallery','http://www1.clikpic.com/janenemery/images/IMG_5060-Edit.jpg',600,400,'East and West Mittens bathed in the final light of the day','http://www1.clikpic.com/janenemery/images/IMG_5060-Edit_thumb.jpg',130, 87,0, 0,'','28/10/08','','Monument Valley Arizona/Utah','','');
photos[333] = new photo(1278731,'87174','IMG 5455','gallery','http://www1.clikpic.com/janenemery/images/IMG_5455-Edit.jpg',600,402,'Adult male lion at sunrise','http://www1.clikpic.com/janenemery/images/IMG_5455-Edit_thumb.jpg',130, 87,0, 0,'Another photo of one of the adult male lions we saw on 22nd June 2007 at Lion Sands.  He was a member of the Southern Pride.  This photo was taken just as the sun rose at about 7.40am.','22/06/07','','Lion Sands','','');
photos[334] = new photo(1274889,'87174','img.5490','gallery','http://www1.clikpic.com/janenemery/images/IMG_5490-Edit.jpg',600,467,'Leopard at Lion Sands.','http://www1.clikpic.com/janenemery/images/IMG_5490-Edit_thumb.jpg',130, 101,0, 0,'We found this leopard in the long grass after nearly running into him because he was lying down.  It was just after 9am on 22nd June 2007 and the sun was just coming through to cast a lovely light.','22/06/07','','Sabi Sands','','');
photos[335] = new photo(1274893,'87174','img.5512','gallery','http://www1.clikpic.com/janenemery/images/IMG_5512-Edit.jpg',600,463,'Playful leopard','http://www1.clikpic.com/janenemery/images/IMG_5512-Edit_thumb.jpg',130, 100,0, 0,'This is the same leopard we saw earlier in the long grass.  He was now enjoying himself rolling around in some dung!  Taken at around 9.15am on 22nd June 2007 at Lion Sands.','22/06/07','','Sabi Sands','','');
photos[336] = new photo(1274902,'87174','img.5515','gallery','http://www1.clikpic.com/janenemery/images/IMG_5515-Edit.jpg',600,400,'Leopard in the long grass at Lion Sands.','http://www1.clikpic.com/janenemery/images/IMG_5515-Edit_thumb.jpg',130, 87,0, 0,'After rolling around in dung he was now ready to go off and hunt.  They certainly blend well into the long grass.','22/06/07','','Sabi Sands','','');
photos[337] = new photo(1282847,'87174','img.5545','gallery','http://www1.clikpic.com/janenemery/images/IMG_5545-Edit.jpg',400,600,'Swimming pool at Lion Sands','http://www1.clikpic.com/janenemery/images/IMG_5545-Edit_thumb.jpg',130, 195,0, 0,'There were two infinity pools at Lion Sands, each with stunning views of the Sabie River and surrounding bush.  12.12pm 22nd June 2007.','22/06/07','','Lion Sands','','');
photos[338] = new photo(1282851,'87174','img.5551','gallery','http://www1.clikpic.com/janenemery/images/IMG_5551-Edit.jpg',400,600,'Looking out over Sabie River','http://www1.clikpic.com/janenemery/images/IMG_5551-Edit_thumb.jpg',130, 195,0, 0,'Another photo of one of the pools at Lion Sands.','22/06/07','','Lion Sands','','');
photos[339] = new photo(1282855,'87174','img.5584','gallery','http://www1.clikpic.com/janenemery/images/IMG_5584-Edit.jpg',600,467,'Young male impala','http://www1.clikpic.com/janenemery/images/IMG_5584-Edit_thumb.jpg',130, 101,0, 0,'','22/06/07','','Lion Sands','','');
photos[340] = new photo(1282860,'87174','img.5636','gallery','http://www1.clikpic.com/janenemery/images/IMG_5636-Edit-2.jpg',400,600,'Sunset over Sabie River','http://www1.clikpic.com/janenemery/images/IMG_5636-Edit-2_thumb.jpg',130, 195,0, 0,'On our last night in Africa we were treated to sundowners on a platform built over the Sabie River.  This photo shows the Drakensburg mountains in the back ground.  5.37pm  22nd June 2007.','22/06/07','','Lion Sands','','');
photos[341] = new photo(1278732,'87174','IMG 5659','gallery','http://www1.clikpic.com/janenemery/images/IMG_5659-Edit.jpg',600,400,'Adult male lion','http://www1.clikpic.com/janenemery/images/IMG_5659-Edit_thumb.jpg',130, 87,0, 0,'This male was just waking up from his night spent under a tree.  The rest of the Southern Pride were not far away.  He looks a little skinny, the wrinkles on his belly show that he has not eaten for a while.  This photo was taken on 23rd June 2007 at about 7am.','23/06/07','','Lion Sands','','');
photos[342] = new photo(1278733,'87174','IMG 5670','gallery','http://www1.clikpic.com/janenemery/images/IMG_5670-Edit.jpg',600,400,'Lion and Lioness of the Southern Pride','http://www1.clikpic.com/janenemery/images/IMG_5670-Edit_thumb.jpg',130, 87,0, 0,'This adult male and female member of the Southern Pride look lovely in the early rays of the sun.  It is one of my favourite photos and was taken at about 7.05am on 23rd June 2007.','23/06/07','','Lion Sands','','');
photos[343] = new photo(3711938,'226815','IMG 5072','gallery','http://www1.clikpic.com/janenemery/images/IMG_5072-Edit.jpg',600,400,'As the sun goes down all but the very tip of Merrick Butte is in deep shadow.','http://www1.clikpic.com/janenemery/images/IMG_5072-Edit_thumb.jpg',130, 87,0, 0,'','28/10/08','','Monument Valley Arizona/Utah','','');
photos[344] = new photo(1278735,'87174','IMG 5693','gallery','http://www1.clikpic.com/janenemery/images/IMG_5693-EditWORKED UP.jpg',400,600,'Adult male at sun rise Lion Sands','http://www1.clikpic.com/janenemery/images/IMG_5693-EditWORKED UP_thumb.jpg',130, 195,0, 0,'This is one of my favourite photos of our trip to Africa.  It is of one of the adult males of the Southern Pride and was taken just as the sun was rising on 23rd June 2007, about 7.10am.','23/06/07','','Lion Sands','','');
photos[345] = new photo(1278734,'87174','IMG 5685','gallery','http://www1.clikpic.com/janenemery/images/IMG_5685-Edit.jpg',600,438,'Lion at Lion Sands','http://www1.clikpic.com/janenemery/images/IMG_5685-Edit_thumb.jpg',130, 95,0, 0,'Male lion of the Southern Pride.  One of two seen the morning of 23rd June 2007.  This photo was taken at 7.10am.','23/06/07','','Lion Sands','','');
photos[346] = new photo(1278736,'87174','IMG 5703','gallery','http://www1.clikpic.com/janenemery/images/IMG_5703-EditWORKED UP.jpg',600,400,'Adult male Southern Pride','http://www1.clikpic.com/janenemery/images/IMG_5703-EditWORKED UP_thumb.jpg',130, 87,0, 0,'Another nice photo of one of the Southern Pride males.  Taken on 23rd June 2007 just after 7am.','23/06/07','','Lion Sands','','');
photos[347] = new photo(1278737,'87174','IMG 5712','gallery','http://www1.clikpic.com/janenemery/images/IMG_5712-EditWORKEDUP.jpg',600,400,'Looking at me looking at him.','http://www1.clikpic.com/janenemery/images/IMG_5712-EditWORKEDUP_thumb.jpg',130, 87,1, 1,'I loved this photo of one of the adult male members of the Southern Pride.  He looks a little hungry - wrinkles on his side - but what caught my attention was the thorn stuck up his nose!  It must be really uncomfortable.','23/06/07','','Lion Sands','','');
photos[348] = new photo(1274905,'87174','img.5739','gallery','http://www1.clikpic.com/janenemery/images/IMG_5739-Edit.jpg',600,400,'Elephant\'s eye!','http://www1.clikpic.com/janenemery/images/IMG_5739-Edit_thumb.jpg',130, 87,0, 0,'When the corn is as high as an elephant\'s eye!!<br>\r\n<br>\r\nPhoto taken on 23rd June 2007 at 7.50am.','23/06/07','','Sabi Sands','','');
photos[349] = new photo(3711939,'226815','IMG 5074','gallery','http://www1.clikpic.com/janenemery/images/IMG_5074-Edit.jpg',600,400,'East Mitten Butte.','http://www1.clikpic.com/janenemery/images/IMG_5074-Edit_thumb.jpg',130, 87,0, 0,'As you can see in this photograph of one of the Mittens, the buttes are clearly stratified and have three principal layers.  Organ Rock shale, De Chelly sandstone and Moenkopi shale.','28/10/08','','Monument Valley Arizona/Utah','','');
photos[350] = new photo(3711940,'226815','IMG 5119','gallery','http://www1.clikpic.com/janenemery/images/IMG_5119-Edit.jpg',600,267,'The Mittens and Merrick Butte before dawn.','http://www1.clikpic.com/janenemery/images/IMG_5119-Edit_thumb.jpg',130, 58,0, 0,'','29/10/08','','Monument Valley Arizona/Utah','','');
photos[351] = new photo(3711941,'226815','IMG 5181','gallery','http://www1.clikpic.com/janenemery/images/IMG_5181-Edit.jpg',429,600,'The Totem Pole in Monument Valley at dawn','http://www1.clikpic.com/janenemery/images/IMG_5181-Edit_thumb.jpg',130, 182,0, 0,'','29/10/08','','Monument Valley Arizona/Utah','','');
photos[352] = new photo(3711942,'226815','IMG 5213','gallery','http://www1.clikpic.com/janenemery/images/IMG_5213-Edit.jpg',400,600,'First light on the dunes near the Totem Pole in Monument Valley','http://www1.clikpic.com/janenemery/images/IMG_5213-Edit_thumb.jpg',130, 195,0, 0,'','29/10/08','','Monument Valley Arizona/Utah','','');
photos[353] = new photo(3711943,'226815','IMG 5229','gallery','http://www1.clikpic.com/janenemery/images/IMG_5229-Edit-2_-3__tonemapped.jpg',399,599,'View through The Tear Drop at Monument Valley','http://www1.clikpic.com/janenemery/images/IMG_5229-Edit-2_-3__tonemapped_thumb.jpg',130, 195,0, 0,'','29/10/08','','Monument Valley Arizona/Utah','','');
photos[354] = new photo(3711944,'226815','IMG 5266','gallery','http://www1.clikpic.com/janenemery/images/IMG_5266-Edit.jpg',400,600,'View of Monument Valley through Tear Drop with Wayne, our Navajo Guide, providing a perfect silhouette','http://www1.clikpic.com/janenemery/images/IMG_5266-Edit_thumb.jpg',130, 195,0, 0,'','29/10/08','','Monument Valley Arizona/Utah','','');
photos[355] = new photo(3711945,'226815','','gallery','http://www1.clikpic.com/janenemery/images/IMG_5271-Edit-2-Edit_-2__tonemapped.jpg',600,400,'View from the Tear Drop at Monument Valley','http://www1.clikpic.com/janenemery/images/IMG_5271-Edit-2-Edit_-2__tonemapped_thumb.jpg',130, 87,0, 0,'After our pre dawn shoot at Monument Valley we spent an hour at the Tear Drop.  To get to this point involves a steep, long climb over rocks but it was worth it.  The Tear Drop itself can be seen on the far right of this photograph.  Some of our group are also in the photo on the right hand side.','29/10/08','','Monument Valley Arizona/Utah','','');
photos[356] = new photo(3711946,'226815','IMG 5273','gallery','http://www1.clikpic.com/janenemery/images/IMG_5273-Edit-2_-3__tonemapped.jpg',600,400,'View towards Monument Valley from near the Tear Drop.','http://www1.clikpic.com/janenemery/images/IMG_5273-Edit-2_-3__tonemapped_thumb.jpg',130, 87,0, 0,'','29/10/08','','Monument Valley Arizona/Utah','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(226815,'3712682,3712672,3712666,3712661,3712637,3712631,3712629,3712622,3712610,3712604','Arizona Autumn 2008','gallery');
galleries[1] = new gallery(22672,'1797914,1797904,1721294,1721279,1721266,1721260,1721255,1721247,1721242,1721234','Basketball','gallery');
galleries[2] = new gallery(22668,'252913,252911,252903,252899,252896,252890,252888,252885,252881,252877','Botswana','gallery');
galleries[3] = new gallery(22669,'250415,250413,250397,250392,250232,250231,250230,250228,250225,250223','Canada 2005','gallery');
galleries[4] = new gallery(115645,'1721476,1721465,1721432,1721428','Canada 2007','gallery');
galleries[5] = new gallery(151297,'2314532,2314529,2314528,2314524,2314515,2314507,2314504,2314498','Dartmoor Zoological Park','gallery');
galleries[6] = new gallery(23376,'260841,260838,260828,260821','Ireland','gallery');
galleries[7] = new gallery(151064,'2309504','Jersey','gallery');
galleries[8] = new gallery(22671,'1797879,250530,250528,250511,250500,250498,250497,250494,250492,250490','Miscellaneous','gallery');
galleries[9] = new gallery(120824,'1797860,1797821,1797802,1797796','Portraits','gallery');
galleries[10] = new gallery(87174,'1278737','South Africa','gallery');
galleries[11] = new gallery(214903,'3514684','The Hippo','gallery');
galleries[12] = new gallery(31341,'386505,386493,386438,386395,386393,386392,386390,386389','The North East ','gallery');
galleries[13] = new gallery(22670,'3178723,3178720,3178715,3178705,3178698,3178683,3178681,3178676,3178674,3178672','The South West','gallery');

