/***************************************************************************
* 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('2829419,2829398,1794860,1794852,1794841,1794840,1098686,1098675,1098674,1098666,1098663,828849,828836,828835,803082,795352,795350,795349,795343,795340,663876,662977,662968,662965,463859,463856,463850,343395,343384,343381,343360,343359,343358,343334,343225,343185,343183,343172,343170,95659,95613,95594,44652,36425,35801,35783,35778,35737,35729,35691,35682,35680,35544,35517,35516,35485');
	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('2829419,2829398,1794860,1794852,1794841,1794840,1098686,1098675,1098674,1098666,1098663,828849,828836,828835,803082,795352,795350,795349,795343,795340,663876,662977,662968,662965,463859,463856,463850,343395,343384,343381,343360,343359,343358,343334,343225,343185,343183,343172,343170,95659,95613,95594,44652,36425,35801,35783,35778,35737,35729,35691,35682,35680,35544,35517,35516,35485');
	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 && !((1) || (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 = 'Wild Light Photography: ' + 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(232009,'','','','http://www4.clikpic.com/planetbum/images/jk1.jpg',400,490,'Jason and Kate on Mulanje Massif','http://www4.clikpic.com/planetbum/images/jk1_thumb.jpg',130, 159,0, 0,'','','','','','');
photos[1] = new photo(1819367,'','','','http://www4.clikpic.com/planetbum/images/Alamy-1.jpg',30,30,'Alamy-1','http://www4.clikpic.com/planetbum/images/Alamy-1_thumb.jpg',130, 130,0, 0,'.','','','','','');
photos[2] = new photo(1826623,'','','','http://www4.clikpic.com/planetbum/images/Untitled-1.jpg',236,400,'Advert used for OS maps. Only the autumn/cyclist photograph is mine.','http://www4.clikpic.com/planetbum/images/Untitled-1_thumb.jpg',130, 220,0, 0,'','','','','','');
photos[3] = new photo(2593576,'','','','http://www4.clikpic.com/planetbum/images/image001.jpg',367,244,'image001','http://www4.clikpic.com/planetbum/images/image001_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[4] = new photo(2607428,'','','','http://www4.clikpic.com/planetbum/images/009 Elephant - 9720.jpg',400,237,'009 Elephant - 9720','http://www4.clikpic.com/planetbum/images/009 Elephant - 9720_thumb.jpg',130, 77,0, 0,'','','','','','');
photos[5] = new photo(2593577,'','','','http://www4.clikpic.com/planetbum/images/image002.jpg',328,217,'image002','http://www4.clikpic.com/planetbum/images/image002_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[6] = new photo(2607429,'','','','http://www4.clikpic.com/planetbum/images/013 Orb Spider.jpg',262,400,'013 Orb Spider','http://www4.clikpic.com/planetbum/images/013 Orb Spider_thumb.jpg',130, 198,0, 0,'','','','','','');
photos[7] = new photo(2593578,'','','','http://www4.clikpic.com/planetbum/images/image003.jpg',339,229,'image003','http://www4.clikpic.com/planetbum/images/image003_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[8] = new photo(2607430,'','','','http://www4.clikpic.com/planetbum/images/014 Hoopoe (Upupa epops) - 5887.jpg',400,270,'014 Hoopoe (Upupa epops) - 5887','http://www4.clikpic.com/planetbum/images/014 Hoopoe (Upupa epops) - 5887_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[9] = new photo(1818338,'','','','http://www4.clikpic.com/planetbum/images/elephantsdetail1.jpg',400,188,'Cropped to show detail.','http://www4.clikpic.com/planetbum/images/elephantsdetail1_thumb.jpg',130, 61,0, 0,'test text for photograph','','','','','');
photos[10] = new photo(2593579,'','','','http://www4.clikpic.com/planetbum/images/image004.jpg',319,211,'image004','http://www4.clikpic.com/planetbum/images/image004_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[11] = new photo(2607431,'','','','http://www4.clikpic.com/planetbum/images/021 Elephant - 1291.jpg',400,278,'021 Elephant - 1291','http://www4.clikpic.com/planetbum/images/021 Elephant - 1291_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[12] = new photo(1818339,'','','','http://www4.clikpic.com/planetbum/images/elephantssmall1.jpg',400,264,'elephantssmall','http://www4.clikpic.com/planetbum/images/elephantssmall1_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[13] = new photo(2607432,'','','','http://www4.clikpic.com/planetbum/images/024 Elephant - 9670.jpg',400,266,'024 Elephant - 9670','http://www4.clikpic.com/planetbum/images/024 Elephant - 9670_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[14] = new photo(1818340,'','','','http://www4.clikpic.com/planetbum/images/impala1216.jpg',308,400,'Impala Painting','http://www4.clikpic.com/planetbum/images/impala1216_thumb.jpg',130, 169,0, 0,'','','','','','');
photos[15] = new photo(2593581,'','','','http://www4.clikpic.com/planetbum/images/image006.jpg',400,266,'image006','http://www4.clikpic.com/planetbum/images/image006_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[16] = new photo(2607433,'','','','http://www4.clikpic.com/planetbum/images/033 Zebra -3306.jpg',266,400,'033 Zebra -3306','http://www4.clikpic.com/planetbum/images/033 Zebra -3306_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[17] = new photo(2593582,'','','','http://www4.clikpic.com/planetbum/images/image007.jpg',320,400,'image007','http://www4.clikpic.com/planetbum/images/image007_thumb.jpg',130, 163,0, 0,'','','','','','');
photos[18] = new photo(2607434,'','','','http://www4.clikpic.com/planetbum/images/038 African Elephant (Loxodonta africana) - 7683.jpg',283,400,'038 African Elephant (Loxodonta africana) - 7683','http://www4.clikpic.com/planetbum/images/038 African Elephant (Loxodonta africana) - 7683_thumb.jpg',130, 184,0, 0,'','','','','','');
photos[19] = new photo(2607435,'','','','http://www4.clikpic.com/planetbum/images/045 Deadvlei - 5839.jpg',400,266,'045 Deadvlei - 5839','http://www4.clikpic.com/planetbum/images/045 Deadvlei - 5839_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[20] = new photo(1818343,'','','','http://www4.clikpic.com/planetbum/images/zebra2024.jpg',400,332,'Zebra Painting','http://www4.clikpic.com/planetbum/images/zebra2024_thumb.jpg',130, 108,0, 0,'','','','','','');
photos[21] = new photo(2607436,'','','','http://www4.clikpic.com/planetbum/images/057 Landy - 8433.jpg',266,400,'057 Landy - 8433','http://www4.clikpic.com/planetbum/images/057 Landy - 8433_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[22] = new photo(1818344,'','','','http://www4.clikpic.com/planetbum/images/zebra20242.jpg',382,400,'Zebra Painting - close up','http://www4.clikpic.com/planetbum/images/zebra20242_thumb.jpg',130, 136,0, 0,'','','','','','');
photos[23] = new photo(2607437,'','','','http://www4.clikpic.com/planetbum/images/059 Landy - 8700.jpg',280,400,'059 Landy - 8700','http://www4.clikpic.com/planetbum/images/059 Landy - 8700_thumb.jpg',130, 186,0, 0,'','','','','','');
photos[24] = new photo(1818345,'','','','http://www4.clikpic.com/planetbum/images/zebra20243.jpg',400,337,'Zebra painting - Detail','http://www4.clikpic.com/planetbum/images/zebra20243_thumb.jpg',130, 110,0, 0,'','','','','','');
photos[25] = new photo(2607438,'','','','http://www4.clikpic.com/planetbum/images/059 PA016219.jpg',400,300,'059 PA016219','http://www4.clikpic.com/planetbum/images/059 PA016219_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[26] = new photo(2607439,'','','','http://www4.clikpic.com/planetbum/images/060 PA260766.jpg',400,300,'060 PA260766','http://www4.clikpic.com/planetbum/images/060 PA260766_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[27] = new photo(2607440,'','','','http://www4.clikpic.com/planetbum/images/064 camera - 5037.jpg',400,266,'064 camera - 5037','http://www4.clikpic.com/planetbum/images/064 camera - 5037_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[28] = new photo(2607441,'','','','http://www4.clikpic.com/planetbum/images/065 Camera - 5036.jpg',400,266,'065 Camera - 5036','http://www4.clikpic.com/planetbum/images/065 Camera - 5036_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[29] = new photo(2607442,'','','','http://www4.clikpic.com/planetbum/images/072 Leopard -5583.jpg',298,400,'072 Leopard -5583','http://www4.clikpic.com/planetbum/images/072 Leopard -5583_thumb.jpg',130, 174,0, 0,'','','','','','');
photos[30] = new photo(2607443,'','','','http://www4.clikpic.com/planetbum/images/080 Liwonde - Waterbuck - 1522.jpg',400,262,'080 Liwonde - Waterbuck - 1522','http://www4.clikpic.com/planetbum/images/080 Liwonde - Waterbuck - 1522_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[31] = new photo(2607444,'','','','http://www4.clikpic.com/planetbum/images/084 Kafue - Impala - 9839.jpg',266,400,'084 Kafue - Impala - 9839','http://www4.clikpic.com/planetbum/images/084 Kafue - Impala - 9839_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[32] = new photo(2607445,'','','','http://www4.clikpic.com/planetbum/images/090 White Rhino - 0834.jpg',302,400,'090 White Rhino - 0834','http://www4.clikpic.com/planetbum/images/090 White Rhino - 0834_thumb.jpg',130, 172,0, 0,'','','','','','');
photos[33] = new photo(2829414,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5411.jpg',400,249,'Welsh Farm on a Hill - 5411','http://www4.clikpic.com/planetbum/images/Wales - 5411_thumb.jpg',130, 81,0, 0,'A changeable day means changeable light and waiting until things come together can be a hit and miss affair.<br>\r\nHere I was lucky enough to rewarded within 15mins of parking up and just waited for a chink in the heavy clouds to light the farm on the hill and create a moody composition.','','','','','');
photos[34] = new photo(2829415,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5453.jpg',400,258,'Conway Castle  - 5453','http://www4.clikpic.com/planetbum/images/Wales - 5453_thumb.jpg',130, 84,0, 0,'A very early start to be at the estuary at dawn as the tide came in seemed like a good idea at the time but fog and a dull start wasn\'t what I was after.','','','','','');
photos[35] = new photo(2829416,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5456.jpg',400,266,'Dolbadarn Castle - 5456','http://www4.clikpic.com/planetbum/images/Wales - 5456_thumb.jpg',130, 86,0, 0,'I am as guilty as the next for not going out in the rain but bad weather can make for dramatic and moody photographs. I used a long lens (400mm) to get tight on the Castle and layer the swirling clouds and mountains behind on top of each other (aerial perspective).','','','','','');
photos[36] = new photo(2829417,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5552.jpg',400,247,'Caernarfon Castle at Sunset - 5552','http://www4.clikpic.com/planetbum/images/Wales - 5552_thumb.jpg',130, 80,0, 0,'After a gloomy day in Snowdonia I could see clear skies over the coast and made a hasty detour. Parking up and running to set up to catch the wonderful light on the castle. It was well worth the effort with a clear sky and calm water.','','','','','');
photos[37] = new photo(2829418,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5563.jpg',400,253,'Caernarfon Castle at Sunset - 5563','http://www4.clikpic.com/planetbum/images/Wales - 5563_thumb.jpg',130, 82,0, 0,'After getting a couple of standard photographs I wanted something a little extra and while walking away and glancing back I immediately saw that I could use the railings as a \"leading line\" to draw the viewers eye to the Castle.','','','','','');
photos[38] = new photo(2829419,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5568.jpg',400,266,'Caernarfon Castle at Sunset - 5568','http://www4.clikpic.com/planetbum/images/Wales - 5568_thumb.jpg',130, 86,1, 0,'After a gloomy day in Snowdonia I could see clear skies over the coast and made a hasty detour. Parking up and running to set up to catch the wonderful light on the castle. It was well worth the effort with a clear sky and calm water allowing for a wonderful reflection.','','','','','');
photos[39] = new photo(2829420,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5614.jpg',400,266,'Beaumaris Castle - 5614','http://www4.clikpic.com/planetbum/images/Wales - 5614_thumb.jpg',130, 86,0, 0,'On my last morning the weather was good again and so I couldn\'t miss an opportunity to pop over to Anglesey and visit Beaumaris Castle. The moats water was a bit murky but a low angle and a wide lens gave me the view and reflection I was looking for.','','','','','');
photos[40] = new photo(2829421,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5631.jpg',266,400,'Beaumaris Castle- 5631','http://www4.clikpic.com/planetbum/images/Wales - 5631_thumb.jpg',130, 195,0, 0,'Walking around Beaumeris I was trying out a few ideas and found a view of tower through an archers slit. It took a bit of experimenting with exposure and flash to balance the dark and bright areas but by using the previews I was able to get exactly what I wanted.','','','','','');
photos[41] = new photo(2829422,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5767.jpg',400,245,'Llandudno Promenade - 5767','http://www4.clikpic.com/planetbum/images/Wales - 5767_thumb.jpg',130, 80,0, 0,'A stroll down the promenade at Llandudno was on the cards especially as the sun had come out. These steps drew me as an obvious \"leading line\". A wide angle lens exaggerated the effect. The only problem with this technique on a 35mm camera is that the pier and hotels are thrown in to the distance. in a full size photograph it looks great but a small scale it doesn\'t do it justice.','','','','','');
photos[42] = new photo(2829423,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5772.jpg',400,265,'Llandudno Beach and Pier - 5772','http://www4.clikpic.com/planetbum/images/Wales - 5772_thumb.jpg',130, 86,0, 0,'Taken with the steps I had found I decided to use the natural curve of the beach and stones above the sand to create the lines I liked so much.<br>\r\nWith photographs like this stopping the lens down and using hyperfocal techniques is the only way to keep focus from front to back. Needless to say it requires a tripod as well.','','','','','');
photos[43] = new photo(2829424,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5864.jpg',400,281,'Llandudno Pier  - 5864','http://www4.clikpic.com/planetbum/images/Wales - 5864_thumb.jpg',130, 91,0, 0,'I am not usually one for piers and proms but the sun was out and the walk was nice. Various flags had been stuck to the railings by one of the traders and the wind was whipping them up. The Welsh flag was too good an opportunity to miss. The primary red, green and blue colours creates lots of impact.','','','','','');
photos[44] = new photo(2829425,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5907.jpg',349,400,'Llandudno Pier  - 5907','http://www4.clikpic.com/planetbum/images/Wales - 5907_thumb.jpg',130, 149,0, 0,'I am not usually one for piers and proms but the sun was out and the walk was nice. Various flags had been stuck to the railings by one of the traders and the wind was whipping them up. The Welsh flag was too good an opportunity to miss. The primary red, green and blue colours creates lots of impact.','','','','','');
photos[45] = new photo(2829426,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5972.jpg',400,257,'Dolbadarn Castle - 5972','http://www4.clikpic.com/planetbum/images/Wales - 5972_thumb.jpg',130, 84,0, 0,'What a difference a day can make! With good weather I made a return trip to Dolbadarn Castle.<br>\r\n After trying some long lens photographs I saw the ripples made by the ducks reflecting the blue sky and quickly changed to a shorter lens.','','','','','');
photos[46] = new photo(2829427,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5993.jpg',400,280,'Dolbadarn Castle - 5993','http://www4.clikpic.com/planetbum/images/Wales - 5993_thumb.jpg',130, 91,0, 0,'A couple seemingly walking on water added a human touch to the scene and it meant re-shooting all of the photographs I had just made - it was worth it though as the couple really help bring the photograph alive.','','','','','');
photos[47] = new photo(2829428,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 6065.jpg',266,400,'Walking in Snowdonia - 6065','http://www4.clikpic.com/planetbum/images/Wales - 6065_thumb.jpg',130, 195,0, 0,'I saw this stile at the head of a valley and thought just how nice it was but it really needed a person in it to make the photo work.<br>\r\nAt times like this yours truly has to put the timer on and run into place.<br>\r\nThe crazy things you do to get the picture - I think other people must have thought I was mad!!','','','','','');
photos[48] = new photo(2829429,'61796','','gallery','http://www4.clikpic.com/planetbum/images/Wales - 6076.jpg',400,256,'Rainbow over a Welsh farm - 6076','http://www4.clikpic.com/planetbum/images/Wales - 6076_thumb.jpg',130, 83,0, 0,'Driving back from a sunny day into thick cloud and a brilliant complete rainbow became apparent. I could have tried to capture the whole thing but that would have meant including an ugly (and busy) road in and so I used a Longer lens to Isolate part of it. Unfortunately conditions like this change rapidly and it was already late otherwise I would have liked to walk further and put the farm much closer to the rainbow and got much closer - always next time!','','','','','');
photos[49] = new photo(2829398,'61796','Wales','gallery','http://www4.clikpic.com/planetbum/images/Wales - 5346.jpg',400,260,'Caernarfon Castle - 5346','http://www4.clikpic.com/planetbum/images/Wales - 5346_thumb.jpg',130, 85,1, 1,'A trip to Caernarfon Castle was a must during a trip to North Wales. It was low tide and as I like boats I couldn\'t resist putting both into the frame. I went down on to the thick mud banks knowing that the red fishing boat would contrast with the blue sky but also a working boat has more interest than a pleasure boat or yacht.','','','','','');
photos[50] = new photo(1794840,'3802','','gallery','http://www4.clikpic.com/planetbum/images/4791.jpg',500,338,'Fallow Deer (Dama dama)','http://www4.clikpic.com/planetbum/images/4791_thumb.jpg',130, 88,1, 0,'A young male Fallow Deer walking in front of Silver Birch woodland as the mist lifts on a cold morning. The clear dawn provides the beautiful warm light to the scene.','','','','','');
photos[51] = new photo(1794842,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_5630.jpg',500,332,'Greylag Geese (Anser anser)','http://www4.clikpic.com/planetbum/images/_MG_5630_thumb.jpg',130, 86,0, 0,'This pair of Greylag Geese are always at Tring reservoir and are quite used to me photographing them from all angles.<br>\r\n<br>\r\nI like to include clues to an animals habitat and so including the canal was essential as was using a short telephoto leans and a close and low approach.','','','','','');
photos[52] = new photo(95594,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - fallow Deer - 85281.jpg',400,266,'Fallow Deer (Dama dama)','http://www4.clikpic.com/planetbum/images/Ashridge - fallow Deer - 85281_thumb.jpg',130, 86,1, 0,'My personal favourite from my autumn project at Ashridge<br>\r\nI saw this buck walking from a field and anticipated his crossing of a bridleway. The lifting fog sealed a fantastic back drop.<br>\r\n<br>\r\nThere is an in-depth write up in the \"article\" section.','','','','','');
photos[53] = new photo(1794850,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_7847.jpg',500,332,'Fallow Deer (Dama dama)','http://www4.clikpic.com/planetbum/images/_MG_7847_thumb.jpg',130, 86,0, 0,'During the rutting season I spent a number of mornings at Ashridge, hiding by a tree near where all of the action was taking place.<br>\r\nOn this wonderful morning the rising sun lit the fog that hung in the hollow a wonderful warm orange that belies the real temperature!<br>\r\nThe Fallow Deer\'s breath also catches the light as he bellows out his call.','','','','','');
photos[54] = new photo(95606,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Fallow Deer in Mist - 8518.jpg',400,283,'Ashridge - Fallow Bucks Rutting','http://www4.clikpic.com/planetbum/images/Ashridge - Fallow Deer in Mist - 8518_thumb.jpg',130, 92,0, 0,'I sat for 3 hours in cold foggy weather but was rewarded by 2 Bucks rutting before me. I didn\'t really expect the shots to work but was pleasantly suprised when I saw the results.','','','','','');
photos[55] = new photo(1794855,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_7922.jpg',500,331,'Fallow Deer defending his territory during the rutting season','http://www4.clikpic.com/planetbum/images/_MG_7922_thumb.jpg',130, 86,0, 0,'During the rutting season males attempt to hold on to as many females as possible in a harem. A male will defend his territory chasing other males away.','','','','','');
photos[56] = new photo(1794856,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_8794.jpg',500,338,'Fallow Deer (Dama dama)','http://www4.clikpic.com/planetbum/images/_MG_8794_thumb.jpg',130, 88,0, 0,'A classic silhouette with dawn colours flooding the photograph.<br>\r\nA strong optical illusion happens if you watch the silhouette. The deer changes the direction it is looking in. Sometime it looks straight ahead out of the left hand side of the picture, while at other times it is looking back, away from the camera.','','','','','');
photos[57] = new photo(1794852,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_7850.jpg',381,500,'Fallow Deer (Dama dama)','http://www4.clikpic.com/planetbum/images/_MG_7850_thumb.jpg',130, 171,1, 1,'During the rutting season I spent a number of mornings at Ashridge, hiding by a tree near where all of the action was taking place.<br>\r\nOn this wonderful morning the rising sun lit the fog that hung in the hollow a wonderful warm orange that belies the real temperature!<br>\r\nThe Fallow Deer\'s breath also catches the light as he bellows out his call.','','','','','');
photos[58] = new photo(1794847,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_7449.jpg',332,500,'Black squirrel','http://www4.clikpic.com/planetbum/images/_MG_7449_thumb.jpg',130, 196,0, 0,'The black squirrel is in fact a melanistic grey squirrel. The genetic mutation produces too much melanin which makes the coat turn much darker.','','','','','');
photos[59] = new photo(1840322,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_7521.jpg',400,263,'Black Squirrel','http://www4.clikpic.com/planetbum/images/_MG_7521_thumb.jpg',130, 85,0, 0,'The black squirrel is in fact a melanistic grey squirrel. The genetic mutation produces too much melanin which makes the coat turn much darker.','','','','','');
photos[60] = new photo(2597248,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Canada Geese - 3491.jpg',400,266,'Canada Geese Taking Off (Branta canadensis)','http://www4.clikpic.com/planetbum/images/Canada Geese - 3491_thumb.jpg',130, 86,0, 0,'Spending a couple of hours watching the Canada Geese swim to and fro waiting for the inevitable take off. Luckily it coincided with some wonderful warm light.<br>\r\n<br>\r\nGeese like to limber up their flight muscles by flapping their wings. Heading in to the wind helps get them airborne and they make a lot of noise just prior to their taking off.','','','','','');
photos[61] = new photo(1098672,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Fox - 0163.jpg',368,500,'Country Fox amongst bluebells (Vulpes vulpes)','http://www4.clikpic.com/planetbum/images/Fox - 0163_thumb.jpg',130, 177,0, 0,'After watching the foxes for a few weeks it was easy to see the vixen was using this run to and from her cubs at a nearby earth.<br>\r\n<br>\r\nA trail of food and a quiet 4hr wait in a bag hide saw her following the scent of food.','','','','','');
photos[62] = new photo(1098673,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Fox Cub - 0335.jpg',600,412,'Fox Cubs (Vulpes vulpes)','http://www4.clikpic.com/planetbum/images/Fox Cub - 0335_thumb.jpg',130, 89,0, 0,'These fox cubs were happily sniffing around when one found a tasty insect to chew on.','','','','','');
photos[63] = new photo(1098674,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Fox Cub - 0355.jpg',600,427,'Red Fox Cub  (Vulpes vulpes)','http://www4.clikpic.com/planetbum/images/Fox Cub - 0355_thumb.jpg',130, 93,1, 0,'I am not usually into <em> cute </em> but this fox cub was adorable. He had been playing in the undergrowth and although I could see him I couldn\'t get clear photographs.<br>\r\n<br>\r\nI waited a while and sure enough he jumped onto a tree stump. As he heard my shutter go he looked around.','','','','','');
photos[64] = new photo(35524,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Burton - Swan Head- 2730.jpg',400,267,'Mute Swan Portrait (Cygnus Olor)','http://www4.clikpic.com/planetbum/images/Burton - Swan Head- 2730_thumb.jpg',130, 87,0, 0,'Enticed by bread to get as close as required, this proud mute swan made the perfect portrait in the afternoon light.','','','','','');
photos[65] = new photo(1098675,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Fox Cub - 0458.jpg',600,393,'Red Fox Cub (Vulpes vulpes)','http://www4.clikpic.com/planetbum/images/Fox Cub - 0458_thumb.jpg',130, 85,1, 0,'It was always going to be frustrating trying to photographs through the bluebells and ferns from a low perspective but I persevered.<br>\r\n<br>\r\nAlthough the fox is partially obscured the eyes are clear and so I think it adds a feeling of secrecy for which the fox is infamous.','','','','','');
photos[66] = new photo(1098686,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Vixen - 0174.jpg',346,500,'Vixen - 0174','http://www4.clikpic.com/planetbum/images/Vixen - 0174_thumb.jpg',130, 188,1, 1,'A photograph such as this takes planning and thought. I had spent a number of weeeks with the cubs and watched which way the vixen went off to hunt.<br>\r\nOne morning I left a trail of food and a small pile at the place I wanted her stop at. I got my self into position and waited for about 4 hours.','','','','','');
photos[67] = new photo(1098676,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Fox Cub - 0729.jpg',600,434,'Curious Fox Cub','http://www4.clikpic.com/planetbum/images/Fox Cub - 0729_thumb.jpg',130, 94,0, 0,'During my weeks with the foxes they became confident of me in a camouflaged bag hide and the noise of the shutter of my camera. They became increasingly curious and would often approach quite close to have a look.','','','','','');
photos[68] = new photo(1098677,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Fox Cub - 0874.jpg',600,399,'Fox Cub emerging from her Earth','http://www4.clikpic.com/planetbum/images/Fox Cub - 0874_thumb.jpg',130, 86,0, 0,'I spent a number of weeks with this family of Foxes.   I was able to get closer each week without upsetting the Foxes.','','','','','');
photos[69] = new photo(1098681,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Rabbit - 8124.jpg',600,427,'Rabbit','http://www4.clikpic.com/planetbum/images/Rabbit - 8124_thumb.jpg',130, 93,0, 0,'Rabbits are relatively easy mammals to photograph. They make good practice in field craft before moving on to more difficult subjects.','','','','','');
photos[70] = new photo(1098682,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Rabbit - 8173.jpg',600,389,'Young Rabbit','http://www4.clikpic.com/planetbum/images/Rabbit - 8173_thumb.jpg',130, 84,0, 0,'Rabbits are fun to photograph. They approach fairly close if you are patient and although they mostly graze they do have their comical and cute moments.','','','','','');
photos[71] = new photo(35525,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Lake District - Robin - Tarn How - 3050.jpg',400,267,'Robin red breast (Erithacus rubecula)','http://www4.clikpic.com/planetbum/images/Lake District - Robin - Tarn How - 3050_thumb.jpg',130, 87,0, 0,'This Robin had delusions of becoming a model. It sat mere feet away happily doing it\'s catwalk thing for me.','','','','','');
photos[72] = new photo(2597249,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Canada Goose - 4042.jpg',266,400,'Canada Goose Portrait (Branta canadensis)','http://www4.clikpic.com/planetbum/images/Canada Goose - 4042_thumb.jpg',130, 195,0, 0,'Canada Geese allow for a close approach as long as you take your time. Keeping the background as simple and complementary is the key to making a portrait such as this work','','','','','');
photos[73] = new photo(1098683,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Rabbit - 8190.jpg',344,500,'Rabbit','http://www4.clikpic.com/planetbum/images/Rabbit - 8190_thumb.jpg',130, 189,0, 0,'Rabbits are ideal mammals to try your field craft skills with. By keeping low, quiet and still you will undoubtably get close enough to make frame filling photographs.','','','','','');
photos[74] = new photo(2597250,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Daffodil - 4855.jpg',400,276,'Daffodil','http://www4.clikpic.com/planetbum/images/Daffodil - 4855_thumb.jpg',130, 90,0, 0,'A wide angle lens and low angle (lying on the ground) and the Colour contrast of yellow flower and blue sky creates impact.<br>\r\nFill-in flash kept the Daffodil correctly exposed against the bright background','','','','','');
photos[75] = new photo(2597251,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Daffodil - 4909.jpg',266,400,'Daffodil','http://www4.clikpic.com/planetbum/images/Daffodil - 4909_thumb.jpg',130, 195,0, 0,'Light filtering through the bare branches of a tree meant that only selective flowers were lit adding drama and impact.','','','','','');
photos[76] = new photo(828836,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_easter_flower_Daffodil - 2427.jpg',399,600,'Daffodil','http://www4.clikpic.com/planetbum/images/uk_easter_flower_Daffodil - 2427_thumb.jpg',130, 195,1, 0,'Signs of spring. An extremely low angle keeps the background simple and allows the strong contrasting colours to create bags of impact','','','','','');
photos[77] = new photo(828841,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Greylag Geese - 1006.jpg',399,600,'Greylag Goose (Anser anser)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Greylag Geese - 1006_thumb.jpg',130, 195,0, 0,'The geese at Tring are very used to humans allowing me to get extremely close with a wide angle lens and a slow approach.','','','','','');
photos[78] = new photo(2597252,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Grebe - 6299.jpg',400,268,'Great Crested Grebe (Podiceps cristatus)','http://www4.clikpic.com/planetbum/images/Grebe - 6299_thumb.jpg',130, 87,0, 0,'An early start meant that the colours were great.<br>\r\nBy lying down on the banks of a lake gives a low angle and an intimate feel as well as helping to include the reeds in the background.','','','','','');
photos[79] = new photo(828847,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Mallard- 3531.jpg',380,600,'Mallard Duck (Anas platyrhynchos)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Mallard- 3531_thumb.jpg',130, 205,0, 0,'A drake mallard just about to shake himself. The glint in his eye and the spiked feathers behind his head give him a menacing look (if ducks can be menacing).','','','','','');
photos[80] = new photo(828846,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Mallard- 2761.jpg',399,600,'Mallard Duck (Anas platyrhynchos)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Mallard- 2761_thumb.jpg',130, 195,0, 0,'By watching and taking note it is quite easy to know when a duck will rise up and flap their wings.','','','','','');
photos[81] = new photo(828849,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Swans - 2538.jpg',600,399,'Swans on Canal (Cygnus olor)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Swans - 2538_thumb.jpg',130, 86,1, 0,'Just before dawn is a beautiful time but it can be difficult to make wildlife photographs due to low light levels.<br>\r\nThis photograph just works although there is some small motion blur on the swans.','','','','','');
photos[82] = new photo(2597253,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Greylag Geese - 5275.jpg',400,266,'Greylag Geese in Flight (Anser anser)','http://www4.clikpic.com/planetbum/images/Greylag Geese - 5275_thumb.jpg',130, 86,0, 0,'A pair of Greylag Geese flying over water. They fly slowly and so make for relatively easy subjects to photograph in flight.','','','','','');
photos[83] = new photo(828844,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Greylag Geese - 3449.jpg',600,407,'Greylag Geese Courtship Display (Anser anser)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Greylag Geese - 3449_thumb.jpg',130, 88,0, 0,'Greylag Gander performs his courtship display prior to mating.','','','','','');
photos[84] = new photo(828843,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Greylag Geese - 3448.jpg',600,399,'Greylag Geese Courtship Display (Anser anser)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Greylag Geese - 3448_thumb.jpg',130, 86,0, 0,'A courtship display prior to mating','','','','','');
photos[85] = new photo(828845,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Greylag Geese - 3450.jpg',600,388,'Greylag Geese Courtship Display (Anser anser)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Greylag Geese - 3450_thumb.jpg',130, 84,0, 0,'A courtship display prior to mating','','','','','');
photos[86] = new photo(828838,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Coot - 1592.jpg',600,399,'Coot (Fulica atra)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Coot - 1592_thumb.jpg',130, 86,0, 0,'A common water bird. Perhaps a bit too large in the frame really - too far, too close, too small, too big - wildlife photographers are never happy!!!','','','','','');
photos[87] = new photo(1098679,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Greylag Goose - 6500.jpg',600,413,'Canada Goose Preening feathers (Branta canadensis)','http://www4.clikpic.com/planetbum/images/Greylag Goose - 6500_thumb.jpg',130, 89,0, 0,'On the banks of a local reservoir birds sit and preen themselves. A short wait was all that was needed.<br>\r\nI wanted a tight crop and so I used a long lens.','','','','','');
photos[88] = new photo(828840,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Green Woodpecker - 0151.jpg',600,402,'Green Woodpecker (Picus viridis)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Green Woodpecker - 0151_thumb.jpg',130, 87,0, 0,'These Woodpeckers eat ants from the ground. Their tongues are as long as their body!!','','','','','');
photos[89] = new photo(828839,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Great Crested Grebe - 3332.jpg',600,398,'Great Crested Grebe (Podiceps cristatus)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Great Crested Grebe - 3332_thumb.jpg',130, 86,0, 0,'Another early start at dawn and the mist hung over the water and so I lay down on the bank and waited for birds to swim by.','','','','','');
photos[90] = new photo(95597,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - fallow Deer - 8824.jpg',400,266,'Ashridge - Fallow Deer (Dama dama)','http://www4.clikpic.com/planetbum/images/Ashridge - fallow Deer - 8824_thumb.jpg',130, 86,0, 0,'The bridleway running next to a field has plenty of activity. Planning and patience is often the best approach but it can be a frustrating waiting.','','','','','');
photos[91] = new photo(828842,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Greylag Geese - 1038.jpg',600,399,'Greylag Geese (Anser anser)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Greylag Geese - 1038_thumb.jpg',130, 86,0, 0,'By lying down and slowly edging toward these Geese I was able to get close and use a wide-angle lens to include their habitat.','','','','','');
photos[92] = new photo(828850,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Wren_singing - 2115.jpg',600,427,'Wren singing (Troglodytes troglodytes) - 2115','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Wren_singing - 2115_thumb.jpg',130, 93,0, 0,'A careful approach was needed to get close enough to this small bird while it sung. Even with long lenses it is necessary to get with 4m and not many birds allow such a close approach unless you do it slowly and carefully.','','','','','');
photos[93] = new photo(2597254,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Greylag Goose - 6552.jpg',400,266,'Mute Swan Chasing Greylag Goose','http://www4.clikpic.com/planetbum/images/Greylag Goose - 6552_thumb.jpg',130, 86,0, 0,'This large Cob (male) Mute Swan was very territorial and would aggressively chase other birds on the lake.','','','','','');
photos[94] = new photo(828848,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Robin - 1566.jpg',600,399,'Robin Red Breast Singing (Erithacus rubecula)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Robin - 1566_thumb.jpg',130, 86,0, 0,'A robin singing his heart out - or shouting a string of profanities if we could speak Robin!','','','','','');
photos[95] = new photo(2597255,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Greylag Goose - 6568.jpg',400,294,'Greylag Goose in Flight (Anser anser)','http://www4.clikpic.com/planetbum/images/Greylag Goose - 6568_thumb.jpg',130, 96,0, 0,'The relatively slow flight of Geese makes them good for practising panning techniques','','','','','');
photos[96] = new photo(828837,'3802','','gallery','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Blue Tit - 1704.jpg',600,452,'Blue Tit (Parus caeruleus)','http://www4.clikpic.com/planetbum/images/uk_wildlife_ bird_Blue Tit - 1704_thumb.jpg',130, 98,0, 0,'A blue Tit complemented by the reddy brown autumn colours.','','','','','');
photos[97] = new photo(118788,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Tring Reservoir - Greylag Gooses - 8352.jpg',400,266,'Greylag Goose (Anser anser)','http://www4.clikpic.com/planetbum/images/Tring Reservoir - Greylag Gooses - 8352_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[98] = new photo(1794848,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_7790.jpg',500,325,'Fallow deer rutting (Dama dama)','http://www4.clikpic.com/planetbum/images/_MG_7790_thumb.jpg',130, 85,0, 0,'The annual rut during autumn is a spectacle worth making the effort to see.<br>\r\n<br>\r\nThe males battle it out to hold a territory which they will entice as many females as possible to mate with.','','','','','');
photos[99] = new photo(2597256,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Lamb - 6160.jpg',293,400,'Spring Lamb','http://www4.clikpic.com/planetbum/images/Lamb - 6160_thumb.jpg',130, 177,0, 0,'By lying flat on the ground young animals become curious and easy to photograph.','','','','','');
photos[100] = new photo(95634,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Mushroom - 9036.jpg',400,266,'Ashridge - Honey Mushrooms','http://www4.clikpic.com/planetbum/images/Ashridge - Mushroom - 9036_thumb.jpg',130, 86,0, 0,'After a morning of photographing Fallow Deer heading into the woods I ventured into the field they congregate at over night. These mushrooms where in their prime with the late morning sun shining on them - perfect!','','','','','');
photos[101] = new photo(1098658,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Blackbird - 0394.jpg',600,395,'Blackbird (Turdus merula) - 0394','http://www4.clikpic.com/planetbum/images/Blackbird - 0394_thumb.jpg',130, 86,0, 0,'Lying down on the ground removes the upright stance that scares birds away.<br>\r\nThe low angle also helps create in intimate feel to the photograph.','','','','','');
photos[102] = new photo(1098671,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Dunnock - 0670.jpg',600,371,'Dunnock (Prunella modularis)','http://www4.clikpic.com/planetbum/images/Dunnock - 0670_thumb.jpg',130, 80,0, 0,'The most common bird that no one has ever heard of!<br>\r\n<br>\r\nThe clean simple background is what makes this photograph.','','','','','');
photos[103] = new photo(1794849,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_7824.jpg',500,335,'Fallow Deer (Dama dama)','http://www4.clikpic.com/planetbum/images/_MG_7824_thumb.jpg',130, 87,0, 0,'A cold and early start was rewarded with a frosty ground and the breath of the bellowing Fallow Deer clearly showing.','','','','','');
photos[104] = new photo(2597257,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Lambs - 6258.jpg',400,266,'Cute Spring Lambs','http://www4.clikpic.com/planetbum/images/Lambs - 6258_thumb.jpg',130, 86,0, 0,'The dark clouds passed over and the sun shone through a chink in the clouds creating moody conditions. It was wet and cold but the photograph made it worthwhile','','','','','');
photos[105] = new photo(2597258,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Mute Swan - 3418.jpg',400,248,'Mute Swan In Flight (Cygnus olor)','http://www4.clikpic.com/planetbum/images/Mute Swan - 3418_thumb.jpg',130, 81,0, 0,'It is often the sound of the wings that I first thing that makes me aware of a swan flying.<br>\r\n<br>\r\nThe slow speed and large size makes them relatively easy to photograph in flight.','','','','','');
photos[106] = new photo(36444,'3802','','gallery','http://www4.clikpic.com/planetbum/images/CRW_5610 in prog2.jpg',400,273,'Dog Rose (Rosa canina)','http://www4.clikpic.com/planetbum/images/CRW_5610 in prog2_thumb.jpg',130, 89,0, 0,'A common hedgerow flower. I wanted a close up of just one flower and so I used a macro lens to fill the frame.','','','','','');
photos[107] = new photo(1794851,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_7849.jpg',500,352,'Fallow Deer Buck','http://www4.clikpic.com/planetbum/images/_MG_7849_thumb.jpg',130, 92,0, 0,'Sunrise through the mist creates a wash of warm colour. The low temperature ensures the breath is visible as the Fallow deer calls out.','','','','','');
photos[108] = new photo(2597259,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Ox-eye Daisy - 6918.jpg',266,400,'Ox-eye Daisy','http://www4.clikpic.com/planetbum/images/Ox-eye Daisy - 6918_thumb.jpg',130, 195,0, 0,'A common plant often overlooked','','','','','');
photos[109] = new photo(193385,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Swans - 0112.jpg',400,266,'Swans on Take Off (Cygnus olor)','http://www4.clikpic.com/planetbum/images/Swans - 0112_thumb.jpg',130, 86,0, 0,'Photographs like this are fairly easy to make. The main ingredients are a little patience but to remain alert so that when things happen you are ready for them.<br>\r\n<br>\r\nIt was a pretty dull day hence the lack of colour in the water but that helped prevent the white swans from \"burning out\"','','','','','');
photos[110] = new photo(2597260,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Pochard - 8286.jpg',400,266,'Pochard (Aythya ferina)','http://www4.clikpic.com/planetbum/images/Pochard - 8286_thumb.jpg',130, 86,0, 0,'Pochards are handsome birds. The early morning light really shows off the red/brown head feathers','','','','','');
photos[111] = new photo(44660,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Cygnets - 59282.jpg',400,247,'Synchronised Cygnets (Cygnus olor)','http://www4.clikpic.com/planetbum/images/Cygnets - 59282_thumb.jpg',130, 80,0, 0,'This trio were swimming on a sheltered part of a boating lake.  The spacing grabbed me and hence the title.','','','','','');
photos[112] = new photo(1794853,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_7873.jpg',500,320,'Fallow Deer Rutting (Dama dama)','http://www4.clikpic.com/planetbum/images/_MG_7873_thumb.jpg',130, 83,0, 0,'Two Bucks battle it out, competeing for territory and the right to mate with as big a harem of hinds as possible.','','','','','');
photos[113] = new photo(2597261,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Puffin - 2254.jpg',400,275,'Puffin (Fratercula arctica) - 2254','http://www4.clikpic.com/planetbum/images/Puffin - 2254_thumb.jpg',130, 89,0, 0,'My first visit to the Farne Isles was a real eye opener and I\'ll be returning next year for a longer stay.<br>\r\n<br>\r\nThe puffins are almost constantly flying off and returning to feed their chicks.','','','','','');
photos[114] = new photo(44652,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Downs - Burnet Moth - 6286.jpg',400,570,'Six Spotted Burnet Moth (Zygaena filipendulae)','http://www4.clikpic.com/planetbum/images/Downs - Burnet Moth - 6286_thumb.jpg',130, 185,1, 1,'Burnet Moths are common on the downs, attracted by the wildflowers and grasses.','','','','','');
photos[115] = new photo(44655,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Downs - Grasshopper - 6382.jpg',400,602,'Common Green Grasshopper (Omocestus viridulus)','http://www4.clikpic.com/planetbum/images/Downs - Grasshopper - 6382_thumb.jpg',130, 196,0, 0,'Grasshoppers may not be the stars of the animal kingdom but they are an important part of it - usually as food.','','','','','');
photos[116] = new photo(1794854,'3802','','gallery','http://www4.clikpic.com/planetbum/images/_MG_7909.jpg',500,335,'Fallow Deer Buck (Dama dama)','http://www4.clikpic.com/planetbum/images/_MG_7909_thumb.jpg',130, 87,0, 0,'A wonderful sunrise gives a warm monochrome photograph. The Buck is silhouetted but the clear outline gives a clear and instantly recognisable shape.','','','','','');
photos[117] = new photo(2597262,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Puffins - 3597.jpg',400,266,'Puffins (Fratercula arctica)','http://www4.clikpic.com/planetbum/images/Puffins - 3597_thumb.jpg',130, 86,0, 0,'I wanted to create a sense of habitat with the waves in the background.<br>\r\nI made many exposures looking for breaking waves and trying to include at least one flying puffin.','','','','','');
photos[118] = new photo(2597263,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Puffins - 4157.jpg',400,280,'Puffins (Fratercula arctica)','http://www4.clikpic.com/planetbum/images/Puffins - 4157_thumb.jpg',130, 91,0, 0,'Puffins fly quite quickly but then there are many around and so it was a matter of perseverance and dogged determination to get a sharp shot. Unfortunately no sand eels on the beak though.<br>\r\nThere\'s always next time.','','','','','');
photos[119] = new photo(2597264,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Robin - 4121.jpg',274,400,'Robin Red Breast (Erithacus rubecula) - 4121','http://www4.clikpic.com/planetbum/images/Robin - 4121_thumb.jpg',130, 190,0, 0,'Just to prove that a common bird can make a great photograph when the light is perfect.','','','','','');
photos[120] = new photo(69348,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Heron Silhouettte - 7911.jpg',400,592,'Tring Reservoirs - Heron Silhouettte','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Heron Silhouettte - 7911_thumb.jpg',130, 192,0, 0,'The water was still allowing a great reflection and the setting sun provided the rich colour.','','','','','');
photos[121] = new photo(69349,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Swan at Sunset - 7999.jpg',400,565,'Tring Reservoirs - Swan at Sunset','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Swan at Sunset - 7999_thumb.jpg',130, 184,0, 0,'','','','','','');
photos[122] = new photo(69351,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade Downs - Cinnabar Caterpillar -6537.jpg',400,602,'Cinnabar Caterpillar','http://www4.clikpic.com/planetbum/images/Whipsnade Downs - Cinnabar Caterpillar -6537_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[123] = new photo(95613,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Mushroom - 8601.jpg',400,602,'Ashridge - Mushroom','http://www4.clikpic.com/planetbum/images/Ashridge - Mushroom - 8601_thumb.jpg',130, 196,1, 0,'','','','','','');
photos[124] = new photo(95615,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Mushroom - 8675.jpg',400,602,'Ashridge - Mushroom','http://www4.clikpic.com/planetbum/images/Ashridge - Mushroom - 8675_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[125] = new photo(95610,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Fly Agaric - 9052.jpg',400,602,'Ashridge - Fly Agaric','http://www4.clikpic.com/planetbum/images/Ashridge - Fly Agaric - 9052_thumb.jpg',130, 196,0, 0,'An odd take on a classic mushroom.','','','','','');
photos[126] = new photo(1098678,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Great Tit - 0811.jpg',600,380,'Great Tit','http://www4.clikpic.com/planetbum/images/Great Tit - 0811_thumb.jpg',130, 82,0, 0,'Great tit collects caterpillars to feed it\'s chicks.','','','','','');
photos[127] = new photo(1098685,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Swan at Dawn - 0881.jpg',333,500,'Swan at Dawn - 0881','http://www4.clikpic.com/planetbum/images/Swan at Dawn - 0881_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[128] = new photo(200135,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Greater Crested Grebe - 1922.jpg',400,262,'Greater Crested Grebe','http://www4.clikpic.com/planetbum/images/Greater Crested Grebe - 1922_thumb.jpg',130, 85,0, 0,'This Grebe had just surfaced and shook the water of his feathers. It took me a number of attempts to get the shot as they stay under the water for a reasonable length of time and may travel several meters from where they dived.<br>\r\n<br>\r\n(I hope the water droplets are visable on this small version!)','','','','','');
photos[129] = new photo(44872,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Chilterns  Red Kite - 4295.jpg',400,498,'Red Kite','http://www4.clikpic.com/planetbum/images/Chilterns  Red Kite - 4295_thumb.jpg',130, 162,0, 0,'Red Kites are doing very well in the Chilterns. At prime spots there can over 10 Kites circling over-head.','','','','','');
photos[130] = new photo(200140,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Robin - 1862.jpg',400,584,'Robin','http://www4.clikpic.com/planetbum/images/Robin - 1862_thumb.jpg',130, 190,0, 0,'Singing his little heart out! I never tire of photographing the humble robin they have a huge character that no other small bird has.','','','','','');
photos[131] = new photo(200132,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Greater Crested Grebe - 1989.jpg',400,558,'Greater Crested Grebe','http://www4.clikpic.com/planetbum/images/Greater Crested Grebe - 1989_thumb.jpg',130, 181,0, 0,'Courtship dance - Both grebes dive down and find weeds which they present to each other in a facinating dance.','','','','','');
photos[132] = new photo(95609,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Robin - 8608.jpg',400,266,'Ashridge - Robin','http://www4.clikpic.com/planetbum/images/Ashridge - Robin - 8608_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[133] = new photo(193384,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Swans - 0065.jpg',400,279,'Swans','http://www4.clikpic.com/planetbum/images/Swans - 0065_thumb.jpg',130, 91,0, 0,'A tender moment, their bowed necks make a classic heart shape.','','','','','');
photos[134] = new photo(35523,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Burton - Gulls Fying - 2847.jpg',400,234,'Gulls in Flight','http://www4.clikpic.com/planetbum/images/Burton - Gulls Fying - 2847_thumb.jpg',130, 76,0, 0,'The gulls on the river Trent muscle in on the bread that people are throwing to the ducks and swans.<br>\r\n<br>\r\nI waited with a long lens for the melee to ensue.','','','','','');
photos[135] = new photo(44658,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Grey Squirrel - 6121.jpg',400,324,'Grey Squirrel','http://www4.clikpic.com/planetbum/images/Ashridge - Grey Squirrel - 6121_thumb.jpg',130, 105,0, 0,'The grey squirrel. An introduced species that is doing a little too well, usurping the resident red squirrel.','','','','','');
photos[136] = new photo(35528,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Sandy - Squirrel - 3943.jpg',400,274,'Grey Squirrel Drinking from Pond','http://www4.clikpic.com/planetbum/images/Sandy - Squirrel - 3943_thumb.jpg',130, 89,0, 0,'I went to Sandy where the RSPB has it\'s head quarters to take some shots of birds. As often happens my favourite from the day was of something different, this grey squirrel.','','','','','');
photos[137] = new photo(69338,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Swan at Sunset - 8036.jpg',400,270,'Swan','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Swan at Sunset - 8036_thumb.jpg',130, 88,0, 0,'Getting close to wild life is something that takes practice and patience as well as perserverance. So when this young swan and parent (not seen) swam over and proceeded to wander over to me I took the oportunity to use a wide angle lens for the photographs.<br>\r\n<br>\r\nThey were not impressed at my lack of bread and start to peck at my tripod and so I made a swift exit!','','','','','');
photos[138] = new photo(69339,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Swan at Sunset - 8032.jpg',400,266,'Swan at Tring Reservoirs','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Swan at Sunset - 8032_thumb.jpg',130, 86,0, 0,'Getting close to wild life is something that takes practice and patience as well as perserverance. So when this young swan and parent (not seen) swam over and proceeded to wander over to me I took the oportunity to use a wide angle lens for the photographs.<br>\r\n<br>\r\nThey were not impressed at my lack of bread and start to peck at my tripod and so I made a swift exit!','','','','','');
photos[139] = new photo(69341,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade Zoo- Duckling - 4516.jpg',400,267,'Duckling - peek-a-boo!','http://www4.clikpic.com/planetbum/images/Whipsnade Zoo- Duckling - 4516_thumb.jpg',130, 87,0, 0,'Eye to eye with spring - a duckingly makes sense of its new world - including strange wildlife photographers!','','','','','');
photos[140] = new photo(69336,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Grey Squirrel - 5071.jpg',400,266,'Grey Squirrel','http://www4.clikpic.com/planetbum/images/Ashridge - Grey Squirrel - 5071_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[141] = new photo(193404,'3802','','gallery','http://www4.clikpic.com/planetbum/images/Pembrokeshire Coast - Shell - 0501.jpg',400,602,'Shell','http://www4.clikpic.com/planetbum/images/Pembrokeshire Coast - Shell - 0501_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[142] = new photo(36445,'3802','','gallery','http://www4.clikpic.com/planetbum/images/CRW_5651 in prog2.jpg',400,600,'Rose Petals','http://www4.clikpic.com/planetbum/images/CRW_5651 in prog2_thumb.jpg',130, 195,0, 0,'I kept the depth of focus very narrow to soften the edges of the delicate petals.','','','','','');
photos[143] = new photo(35500,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Tree Shadow- 4820.jpg',400,256,'Ashridge Woods - Trees and shadows','http://www4.clikpic.com/planetbum/images/Ashridge - Tree Shadow- 4820_thumb.jpg',130, 83,0, 0,'The low angle of the sun streaks through the woods casting long shadows.','','','','','');
photos[144] = new photo(35522,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Peak District - Tissington Trail - 2942.jpg',400,265,'Peak District - Tissington Trail','http://www4.clikpic.com/planetbum/images/Peak District - Tissington Trail - 2942_thumb.jpg',130, 86,0, 0,'I particually like the Peak District as I used to live quite close and have spent many days walking in the peaks. This shot was taken during a late winter walk.<br>\r\n<br>\r\nThe dramatic clouds and wind swept field puncuated by the stone walls sums up this part of the peak district in late winter.','','','','','');
photos[145] = new photo(36418,'3800','','gallery','http://www4.clikpic.com/planetbum/images/CRW_5530-in prog sat lift.jpg',400,267,'Pitstone Windmill','http://www4.clikpic.com/planetbum/images/CRW_5530-in prog sat lift_thumb.jpg',130, 87,0, 0,'The setting sun turned this photogenic scene into something special. It took several visits late in the evening to finally get this particular shot.','','','','','');
photos[146] = new photo(36419,'3800','','gallery','http://www4.clikpic.com/planetbum/images/CRW_5545-in prog.jpg',400,267,'Pitstone Windmill','http://www4.clikpic.com/planetbum/images/CRW_5545-in prog_thumb.jpg',130, 87,0, 0,'Here, I tried a closer approach to the windmill with the dramatic sky providing the backdrop.','','','','','');
photos[147] = new photo(36425,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Pitstone Windmill - 5800.jpg',400,266,'Pitstone windmill','http://www4.clikpic.com/planetbum/images/Pitstone Windmill - 5800_thumb.jpg',130, 86,1, 0,'This another planned shot. On a clear evening with no hills to the west the sun gets very low before disappearing below the horizon. It was a totally clear evening and as I set up the Camera the low setting sun turned the wheat a fiery red.<br>\r\n<br>\r\nThe result is better than I had hoped for!','','','','','');
photos[148] = new photo(36427,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Pitstone Windmill - 1.jpg',400,267,'Pitstone Windmill','http://www4.clikpic.com/planetbum/images/Pitstone Windmill - 1_thumb.jpg',130, 87,0, 0,'Taken fom near the entrance gates to show the field of wheat that would have been milled at the windmill.','','','','','');
photos[149] = new photo(36441,'3800','','gallery','http://www4.clikpic.com/planetbum/images/CRW_5741 inprog.jpg',400,267,'Woodland Foxgloves','http://www4.clikpic.com/planetbum/images/CRW_5741 inprog_thumb.jpg',130, 87,0, 0,'The foxgloves in Ashridge woods. Shafts of light from the late evening sun lit these flowers leaving the tress behind in shadow.<br>\r\n<br>\r\nThe rays of the setting sun found a break in the leaves and lit up the foxgloves.','','','','','');
photos[150] = new photo(119267,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - fallow Deer - 9224.jpg',400,242,'Ashridge in Autumn - Fallow Deer','http://www4.clikpic.com/planetbum/images/Ashridge - fallow Deer - 9224_thumb.jpg',130, 79,0, 0,'I was patiently waiting for deer to cross this thoroughfare. I was hoping for something closer but in actual fact I thought the distant deer added to the overall photograph rather than dominate it.','','','','','');
photos[151] = new photo(35516,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Bristol (CF) - 2979.jpg',400,600,'Bristol - Sunset Over Flood Water','http://www4.clikpic.com/planetbum/images/Bristol (CF) - 2979_thumb.jpg',130, 195,1, 1,'The reflections that make this sunset spectacular were from flood water a few inches thick but the low angle helps to make it appear like a lake.','','','','','');
photos[152] = new photo(193395,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Pembrokeshire Coast - 0528.jpg',400,602,'Pembrokeshire Coast','http://www4.clikpic.com/planetbum/images/Pembrokeshire Coast - 0528_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[153] = new photo(35461,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - BB - 4973.jpg',400,600,'Ashridge - Carpet of Blue Bells','http://www4.clikpic.com/planetbum/images/Ashridge - BB - 4973_thumb.jpg',130, 195,0, 0,'The blue bells in Ashridge Woods were very impressive and i wanted to show the carpet effect while also showcasing a single blue bell.<br>\r\n<br>\r\nThe sky was quite overcast and the trees cut out even more light. As the exposures were quite long (around 2 seconds) I took quite a few exposures to ensure that the wind did not ruin the dominant blue bells in the foreground.','','','','','');
photos[154] = new photo(193397,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Pembrokeshire Coast - 0405.jpg',400,602,'Pembrokeshire Coast','http://www4.clikpic.com/planetbum/images/Pembrokeshire Coast - 0405_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[155] = new photo(1794841,'3800','','gallery','http://www4.clikpic.com/planetbum/images/_MG_4769.jpg',332,500,'Harvest Hay Bales','http://www4.clikpic.com/planetbum/images/_MG_4769_thumb.jpg',130, 196,1, 0,'Many subjects have been done to death - including Hay Bales. But you can\'t let that stop you it just means looking for something a little different.<br>\r\n<br>\r\nThe strong parallel lines of the stubble grabbed my attention and a wide angle lens accentuated it.','','','','','');
photos[156] = new photo(193398,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Pembrokeshire Coast - Blue Lagoon - 0566.jpg',400,602,'Pembrokeshire Coast','http://www4.clikpic.com/planetbum/images/Pembrokeshire Coast - Blue Lagoon - 0566_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[157] = new photo(1794860,'3800','','gallery','http://www4.clikpic.com/planetbum/images/9494.jpg',500,332,'Ashridge woods in Autumn','http://www4.clikpic.com/planetbum/images/9494_thumb.jpg',130, 86,1, 0,'As you have probably noticed, Ashridge is one of my favourite locations. During Autumn I try and get out in the woodlands as much as possible.<br>\r\n<br>\r\nI usually wait for people to move out of shot but here the man adds a focus to the photograph.','','','','','');
photos[158] = new photo(35479,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - BB Meadow - 4936.jpg',400,570,'Ashridge Woods - Blue Bell and Buttercup Meadow','http://www4.clikpic.com/planetbum/images/Ashridge - BB Meadow - 4936_thumb.jpg',130, 185,0, 0,'Ashridge is dotted with meadows. This meadow was filled with blue bells and buttercups.','','','','','');
photos[159] = new photo(193400,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Pembrokeshire Coast - Little Haven - 0451.jpg',400,266,'Pembrokeshire Coast','http://www4.clikpic.com/planetbum/images/Pembrokeshire Coast - Little Haven - 0451_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[160] = new photo(1794857,'3800','','gallery','http://www4.clikpic.com/planetbum/images/_MG_9054.jpg',500,332,'Ashridge woods in Autumn','http://www4.clikpic.com/planetbum/images/_MG_9054_thumb.jpg',130, 86,0, 0,'The arch boughs of these Beech trees make \'Ladies Walk\' in Ashridge a favourite location of mine.','','','','','');
photos[161] = new photo(36424,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Foxglove - 5755.jpg',400,602,'Foxgloves, Ahridge Woods','http://www4.clikpic.com/planetbum/images/Ashridge - Foxglove - 5755_thumb.jpg',130, 196,0, 0,'A shaft of light illuminated these foxgloves in Ashridge woods. <br>\r\n<br>\r\nI often walk out in the woods at Ashridge. I keep an eye out for anything interesting. The woods change with the seasons and so there is always something new to see.','','','','','');
photos[162] = new photo(35457,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - BB - 4838.jpg',400,267,'Ashridge Woods - Blue Bell.','http://www4.clikpic.com/planetbum/images/Ashridge - BB - 4838_thumb.jpg',130, 87,0, 0,'I wanted a dominant blue bell picture with a blue back ground but I didn\'t want just a straight forward macro shot though.','','','Ashridge Woods','','');
photos[163] = new photo(35464,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - BB Arch - 4730.jpg',400,253,'Ashridge - Blue Bells Through Natural Arch','http://www4.clikpic.com/planetbum/images/Ashridge - BB Arch - 4730_thumb.jpg',130, 82,0, 0,'The arch that frames the picture was a fallen tree. It helps create the feeling of peering into the wood.','','','','','');
photos[164] = new photo(1098659,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Bluebells - 8957.jpg',348,500,'Bluebells - 8957','http://www4.clikpic.com/planetbum/images/Bluebells - 8957_thumb.jpg',130, 187,0, 0,'','','','','','');
photos[165] = new photo(1794858,'3800','','gallery','http://www4.clikpic.com/planetbum/images/_MG_9067.jpg',500,332,'Ashridge Woods In Autumn','http://www4.clikpic.com/planetbum/images/_MG_9067_thumb.jpg',130, 86,0, 0,'The arch boughs of these Beech trees make \'Ladies Walk\' in Ashridge a favourite location of mine.','','','','','');
photos[166] = new photo(35465,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - BB Arch - 4847.jpg',400,266,'Ashridge Woods - Blue Bells with Natural Frame','http://www4.clikpic.com/planetbum/images/Ashridge - BB Arch - 4847_thumb.jpg',130, 86,0, 0,'The many fallen trees give interesting features and perspectives. In this I\'ve let the branches become a natural picture frame, the picture presenting itself.','','','','','');
photos[167] = new photo(35467,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - BB Arch - 48562.jpg',400,266,'Ashridge Woods - Blue Bells with Natural Frame','http://www4.clikpic.com/planetbum/images/Ashridge - BB Arch - 48562_thumb.jpg',130, 86,0, 0,'The many fallen trees give interesting features and perspectives. In this I\'ve let the branches become a natural picture frame, the picture presenting itself.','','','','','');
photos[168] = new photo(35468,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - BB Fence Perspective - 4750.jpg',400,266,'Ashridge Woods - Edge of the Woods','http://www4.clikpic.com/planetbum/images/Ashridge - BB Fence Perspective - 4750_thumb.jpg',130, 86,0, 0,'The boundry between woodland and meadow. The fence dominates the composition leading the eye through the picture.','','','','','');
photos[169] = new photo(35485,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - BB Meadow - 5036.jpg',400,267,'Ashridge Woods - Blue Bell Meadow and rainbow','http://www4.clikpic.com/planetbum/images/Ashridge - BB Meadow - 5036_thumb.jpg',130, 87,1, 0,'After sheltering from a summer storm the evening sun was throwing long shadows over the meadow and the small but bright rainbow appeared just above the trees.','','','','','');
photos[170] = new photo(1098660,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Bluebells - 8964.jpg',355,500,'Bluebells - 8964','http://www4.clikpic.com/planetbum/images/Bluebells - 8964_thumb.jpg',130, 183,0, 0,'Complementary calm colours make blue bell woods attractive.<br>\r\n<br>\r\nAn overcast day helps reduce contrast and it is important to try and keep the compositon as simple as possible','','','','','');
photos[171] = new photo(35497,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - BB Meadow - 5053.jpg',400,267,'Ashridge Woods - Rainbow Over Meadow','http://www4.clikpic.com/planetbum/images/Ashridge - BB Meadow - 5053_thumb.jpg',130, 87,0, 0,'The showers behind the tree allowed the rainbow to reveal itsself creating a bridge of colour over the trees.','','','','','');
photos[172] = new photo(35518,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Lake District - Windermere - 3106.jpg',400,267,'Lake Disrict - Sunrise Over Windermere','http://www4.clikpic.com/planetbum/images/Lake District - Windermere - 3106_thumb.jpg',130, 87,0, 0,'Rising before dawn on your birthday is not everbody\'s idea of treating yourself but I was glad I did. The rich warm colours really were fabulous, belying the freezing january morning conditions.','','','','','');
photos[173] = new photo(35519,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Lake District - Windermere - 3123 (green levels).jpg',400,267,'Lake District - Sunrise Over Lake Windermere','http://www4.clikpic.com/planetbum/images/Lake District - Windermere - 3123 (green levels)_thumb.jpg',130, 87,0, 0,'The sun had only just started to come up as I took this photograph. It had been an early rise on my birthday but I was glad I put the effort in.','','','','','');
photos[174] = new photo(1794843,'3800','','gallery','http://www4.clikpic.com/planetbum/images/_MG_5686.jpg',500,332,'Ridgeway Sign post on Dustable Downs','http://www4.clikpic.com/planetbum/images/_MG_5686_thumb.jpg',130, 86,0, 0,'A strong use of perspective makes an eye-catching composition','','','','','');
photos[175] = new photo(35517,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Lake District - Helvellyn - 3006 .jpg',400,265,'Lake District - Helvellyn','http://www4.clikpic.com/planetbum/images/Lake District - Helvellyn - 3006 _thumb.jpg',130, 86,1, 0,'As a birthday treat my partner and I went for a walk up Helvellyn. The day was uninspiring but as we started our decent the clouds allowed the sun a very brief glimpse which lit this scene. Being in the right place at the right time keeps photography exciting and gives me an excuse for carrying all of my equipment up mountains.','','','','','');
photos[176] = new photo(35521,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Lake District - Windermere - 3172.jpg',400,232,'Lake District - Northern Tip of Lake Windermere','http://www4.clikpic.com/planetbum/images/Lake District - Windermere - 3172_thumb.jpg',130, 75,0, 0,'Walking around lake Windermere in the early morning with nobody else about I came across these reeds with the warm colour excentuated by the early sun. The contrast that made with the blue sky had me setting up my camera before the light was lost.<br>\r\n<br>\r\nThe colours maybe warm but the actual temperature wasn\'t!','','','','','');
photos[177] = new photo(35520,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Lake District - Windermere - 3142.jpg',400,600,'Lake District - Yacht on Lake Windermere','http://www4.clikpic.com/planetbum/images/Lake District - Windermere - 3142_thumb.jpg',130, 195,0, 0,'Taken on a cold january morning. The still water gave wonderful reflections.','','','','','');
photos[178] = new photo(1794859,'3800','','gallery','http://www4.clikpic.com/planetbum/images/_MG_9467.jpg',500,332,'Ashridge woodland in Autumn','http://www4.clikpic.com/planetbum/images/_MG_9467_thumb.jpg',130, 86,0, 0,'The beech trees in Ashridge turn golden and copper colours in the autumn. It is a magical time to be out in the woods which is not to be missed.','','','','','');
photos[179] = new photo(69345,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Sunset - 7945.jpg',400,266,'Tring Reservoirs - Sunset','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Sunset - 7945_thumb.jpg',130, 86,0, 0,'This fantastic sunset was reflected in the still waters of Startops resevoir at Tring.<br>\r\n<br>\r\nThe rock was positioned to give some forground interest \'anchor\' the photograph.','','','','','');
photos[180] = new photo(1098662,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Bluebells - 9099.jpg',388,500,'Bluebells - 9099','http://www4.clikpic.com/planetbum/images/Bluebells - 9099_thumb.jpg',130, 168,0, 0,'','','','','','');
photos[181] = new photo(69343,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Sunset - 8205.jpg',400,581,'Tring Reservoir - Golden Sunset','http://www4.clikpic.com/planetbum/images/Tring Reservoirs - Sunset - 8205_thumb.jpg',130, 189,0, 0,'','','','','','');
photos[182] = new photo(69347,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade Downs - Path through the Grass -6657.jpg',400,266,'Path Through Bison Hill','http://www4.clikpic.com/planetbum/images/Whipsnade Downs - Path through the Grass -6657_thumb.jpg',130, 86,0, 0,'A footpath snakes through the tall grass on part of the Dunstable downs.','','','','','');
photos[183] = new photo(1098663,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Bluebells - 9192.jpg',349,500,'Bluebells','http://www4.clikpic.com/planetbum/images/Bluebells - 9192_thumb.jpg',130, 186,1, 0,'Striving for something new is something that I enjoy. The composition is challenging and may not be to every bodies taste   but its different and hopefully eye-catching.','','','','','');
photos[184] = new photo(69346,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - 6435.jpg',400,266,'Ashridge - Wild Grass','http://www4.clikpic.com/planetbum/images/Ashridge - 6435_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[185] = new photo(95617,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Trees in Mist - 8536.jpg',400,584,'Ashridge - Trees in Morning Mist','http://www4.clikpic.com/planetbum/images/Ashridge - Trees in Mist - 8536_thumb.jpg',130, 190,0, 0,'I was taking a light reading because it was quite dark and I wasn\'t sure I had a fast enough shutter speed for the Fallow Deer. I was right - it was too dark but this shot presented itself in the viewfinder.','','','','','');
photos[186] = new photo(1098664,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Bluebells - 9394.jpg',332,500,'Bluebells - 9394','http://www4.clikpic.com/planetbum/images/Bluebells - 9394_thumb.jpg',130, 196,0, 0,'I employed the technique call <em> vertical panning</em>. By slowly moving up or down while the exposure is taken blurs the scene.','','','','','');
photos[187] = new photo(95659,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Web in Morning Mist - 8531.jpg',400,602,'Ashridgev - Spider\'s web in Morning Mist','http://www4.clikpic.com/planetbum/images/Ashridge - Web in Morning Mist - 8531_thumb.jpg',130, 196,1, 0,'The spider\'s web was dripping with dew and the morning rays provided a wonderful back lighting effect through the mist. It was an awkward shot to compose but worth the effort.','','','','','');
photos[188] = new photo(118489,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - 8373.jpg',400,584,'Ashridge - Morning Mist in Autumn','http://www4.clikpic.com/planetbum/images/Ashridge - 8373_thumb.jpg',130, 190,0, 0,'The sun filters through the mist on a cold autumn morning.','','','','','');
photos[189] = new photo(1098665,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Bluebells - 9400.jpg',355,500,'Bluebells - 9400','http://www4.clikpic.com/planetbum/images/Bluebells - 9400_thumb.jpg',130, 183,0, 0,'An avenue of Beech trees gives depth and perspective to the photograph.<br>\r\nI have decided to keep it symmetrical in this case although other compositions may have worked.','','','','','');
photos[190] = new photo(118488,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Autumn - 9412.jpg',400,563,'Ashridge - Autumn','http://www4.clikpic.com/planetbum/images/Ashridge - Autumn - 9412_thumb.jpg',130, 183,0, 1,'','','','','','');
photos[191] = new photo(119261,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Autumn - 9474.jpg',400,602,'Ashridge - Autumn Colours','http://www4.clikpic.com/planetbum/images/Ashridge - Autumn - 9474_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[192] = new photo(1098666,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Bluebells - 9442.jpg',332,500,'Bluebells - 9442','http://www4.clikpic.com/planetbum/images/Bluebells - 9442_thumb.jpg',130, 196,1, 0,'By getting close and using a very wide angle allows the Bluebells to be large in the frame and yet show the rest of the woodland','','','','','');
photos[193] = new photo(118492,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Lake District - Woodland - 9072.jpg',400,602,'Lake District - Autumn Ferns','http://www4.clikpic.com/planetbum/images/Lake District - Woodland - 9072_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[194] = new photo(118490,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - 9422.jpg',400,264,'Morning Frost and Mist','http://www4.clikpic.com/planetbum/images/Ashridge - 9422_thumb.jpg',130, 86,0, 0,'A cold morning to be out and about but then scenes like this make it all worth while.','','','','','');
photos[195] = new photo(118491,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Frost Pattern - 9391.jpg',400,266,'Frost Pattern on a Fallen Tree','http://www4.clikpic.com/planetbum/images/Ashridge - Frost Pattern - 9391_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[196] = new photo(118494,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Ashridge - Autumn - 9450.jpg',400,272,'Ashridge - Morning Mist','http://www4.clikpic.com/planetbum/images/Ashridge - Autumn - 9450_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[197] = new photo(1098667,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Bluebells - 9543.jpg',332,500,'Bluebells - 9543','http://www4.clikpic.com/planetbum/images/Bluebells - 9543_thumb.jpg',130, 196,0, 0,'The path and avenue of trees leads your eyes through the photograph.','','','','','');
photos[198] = new photo(118495,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Lake District - Aira Force - 9102.jpg',400,266,'Lake District - Aira Force','http://www4.clikpic.com/planetbum/images/Lake District - Aira Force - 9102_thumb.jpg',130, 86,0, 0,'Much lower down than the impressive Aira Force itself. This photograph is has a more relaxed appeal than the main falls.','','','','','');
photos[199] = new photo(1098669,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Bluebells - 9805.jpg',357,500,'Bluebells - 9805','http://www4.clikpic.com/planetbum/images/Bluebells - 9805_thumb.jpg',130, 182,0, 0,'','','','','','');
photos[200] = new photo(1098680,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Poppy - 1259.jpg',337,500,'Poppy','http://www4.clikpic.com/planetbum/images/Poppy - 1259_thumb.jpg',130, 193,0, 0,'','','','','','');
photos[201] = new photo(1098684,'3800','','gallery','http://www4.clikpic.com/planetbum/images/Rape Seed - 9678.jpg',600,396,'Rape Seed','http://www4.clikpic.com/planetbum/images/Rape Seed - 9678_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[202] = new photo(343202,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Banded Mongoose - 2749.jpg',600,341,'Banded Mongoose','http://www4.clikpic.com/planetbum/images/Banded Mongoose - 2749_thumb.jpg',130, 74,0, 0,'Banded Mongoose digging for insects','','','','','');
photos[203] = new photo(343225,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Brown Hyena - 4879.jpg',600,424,'Brown Hyena','http://www4.clikpic.com/planetbum/images/Brown Hyena - 4879_thumb.jpg',130, 92,1, 0,'This Brown hyena arrived literally  as we readied to leave Kwang Water hole in Khagagadi NP. The Parks close the gates at sunset and it was always 50:50 wether we made the gates in time!!!','','','','','');
photos[204] = new photo(343235,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Cheetah - 2007.jpg',600,399,'Cheetah','http://www4.clikpic.com/planetbum/images/Cheetah - 2007_thumb.jpg',130, 86,0, 0,'This playful cheetah decided to have a look up a small tree as we followed him.','','','','','');
photos[205] = new photo(35809,'62617','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - Zebra - 1.jpg',400,260,'Crawshay\'s Zebras','http://www4.clikpic.com/planetbum/images/South Luangwa - Zebra - 1_thumb.jpg',130, 85,0, 0,'A sub species found in South luangwa, Zambia.<br>\r\n<br>\r\nMy partner, Kate, and I were on an early morning safari with friends when we came across these Zebras grazing. They didn\'t take much notice of us at all but carried on grazing.','','','','','');
photos[206] = new photo(343247,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Cheetah - 5468.jpg',600,407,'Cheetah Hunting','http://www4.clikpic.com/planetbum/images/Cheetah - 5468_thumb.jpg',130, 88,0, 0,'We had tracked the cheetah from a distance and decided to stay by a small herd of Springbok. The plan turned out to be perfect. We waited for 45mins as the cheetah stalked closer. It was over in 10 seconds such is the explosive power of their final run. Unfortunately (for the cheetah) they didn\'t make a kill and walked of empty bellied.','','','','','');
photos[207] = new photo(795339,'62617','Black Rhino','gallery','http://www4.clikpic.com/planetbum/images/Black Rhino - 4691.jpg',600,404,'Black or Hook Lipped Rhino','http://www4.clikpic.com/planetbum/images/Black Rhino - 4691_thumb.jpg',130, 88,0, 0,'A rare encounter with a Black Rhino in Pilansberg NP, South Africa.','','','','','');
photos[208] = new photo(343273,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 3444.jpg',600,399,'Elephants at Waterhole','http://www4.clikpic.com/planetbum/images/Elephant - 3444_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[209] = new photo(343282,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 3506.jpg',600,399,'Elephants at Waterhole','http://www4.clikpic.com/planetbum/images/Elephant - 3506_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[210] = new photo(343292,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Impala - 7338.jpg',600,441,'Impala at Waterhole','http://www4.clikpic.com/planetbum/images/Impala - 7338_thumb.jpg',130, 96,0, 0,'Etosha in Namibia has huge salt pans and has arid fringes so that the animal congregate around the few waterholes  through out the park.','','','','','');
photos[211] = new photo(343335,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Giraffe - 7558.jpg',600,902,'Giraffe','http://www4.clikpic.com/planetbum/images/Giraffe - 7558_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[212] = new photo(343355,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Jackel - 1410.jpg',600,790,'Black Backed Jackal','http://www4.clikpic.com/planetbum/images/Jackel - 1410_thumb.jpg',130, 171,0, 0,'Jackals are frequent visitors to waterholes.','','','','','');
photos[213] = new photo(343344,'62617','','gallery','http://www4.clikpic.com/planetbum/images/White Rhino - 5979.jpg',600,872,'White Rhino','http://www4.clikpic.com/planetbum/images/White Rhino - 5979_thumb.jpg',130, 189,0, 0,'On entering Etosha we came upon this Rhino. He wasn\'t too happy to see us as he was obviously making toward us at a more than sedate speed! We moved on hastily!','','','','','');
photos[214] = new photo(343347,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Zebra - 2895.jpg',600,399,'Zebra','http://www4.clikpic.com/planetbum/images/Zebra - 2895_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[215] = new photo(343351,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Zebra - 3007.jpg',600,365,'Zebra','http://www4.clikpic.com/planetbum/images/Zebra - 3007_thumb.jpg',130, 79,0, 0,'','','','','','');
photos[216] = new photo(343352,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Zebra - 7473.jpg',600,399,'Zebra','http://www4.clikpic.com/planetbum/images/Zebra - 7473_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[217] = new photo(35804,'62617','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - Lioness - 4.jpg',400,267,'Lioness Lying in the Grass','http://www4.clikpic.com/planetbum/images/South Luangwa - Lioness - 4_thumb.jpg',130, 87,0, 0,'This was as much notice as she deigned to give us! We were able to stay for a while watching this and 2 other lionesses that made up a small hunting pride.','','','South Luangwa, Zambia','','');
photos[218] = new photo(795353,'62617','Lion Cub','gallery','http://www4.clikpic.com/planetbum/images/Lion Cub - 4093.jpg',600,393,'Lion Cub','http://www4.clikpic.com/planetbum/images/Lion Cub - 4093_thumb.jpg',130, 85,0, 0,'Lions generally do very little through out the day and although cubs are a little more active it took just under 1 hour before this cub got restless enough to turn over.','','','','','');
photos[219] = new photo(343358,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Leopard -2114.jpg',600,862,'Leopard','http://www4.clikpic.com/planetbum/images/Leopard -2114_thumb.jpg',130, 187,1, 0,'The Jackals watching the tree gave the Leopard away.  We could hear the grisely sound of bones cracking as  the Leopard devoured the unfortunate Jackals head.','','','','','');
photos[220] = new photo(343359,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Leopard -5525.jpg',600,805,'Leopard','http://www4.clikpic.com/planetbum/images/Leopard -5525_thumb.jpg',130, 174,1, 1,'The Jackals watching the tree gave the Leopard away.  We could hear the grisely sound of bones cracking as  the Leopard devoured the unfortunate Jackals head.','','','','','');
photos[221] = new photo(343360,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Leopard -5583.jpg',600,806,'Leopard','http://www4.clikpic.com/planetbum/images/Leopard -5583_thumb.jpg',130, 175,1, 0,'The Jackals watching the tree gave the Leopard away.  We could hear the grisely sound of bones cracking as  the Leopard devoured the unfortunate Jackals head.','','','','','');
photos[222] = new photo(343366,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 5015.jpg',600,701,'Lion','http://www4.clikpic.com/planetbum/images/Lion - 5015_thumb.jpg',130, 152,0, 0,'My take on the classic Lion portrait','','','','','');
photos[223] = new photo(343376,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 6355.jpg',600,805,'Lion','http://www4.clikpic.com/planetbum/images/Lion - 6355_thumb.jpg',130, 174,0, 0,'This photograph of a windswept male lion was made while he was walking purposely towards us. After he passed us we worked out (roughly) where he might be heading to. We picked  out a waterhole and waited. An hour later he came to drink, that made our day.','','','','','');
photos[224] = new photo(343381,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Leopard -1866.jpg',600,408,'Leopard','http://www4.clikpic.com/planetbum/images/Leopard -1866_thumb.jpg',130, 88,1, 0,'Some friends had spotted the Leopard resting. When she decided to make a move I tried to think where she would be going. We all headed over the ridge and and started looking for likely spots. 45 mins later she arrived. She walked inbetween our cars and stared stalking some ostrich.','','','','','');
photos[225] = new photo(343384,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 4979.jpg',600,413,'Lion','http://www4.clikpic.com/planetbum/images/Lion - 4979_thumb.jpg',130, 89,1, 0,'A battle scarred lion.','','','','','');
photos[226] = new photo(343386,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Springbok and Fawn - 5722.jpg',600,399,'Springbok and new Born Fawn','http://www4.clikpic.com/planetbum/images/Springbok and Fawn - 5722_thumb.jpg',130, 86,0, 0,'We didn\'t see the birth but this fawn could only have been minutes old. The mother was eating the afterbirth and licking the fawn clean. In this photograph the fawn is about to make it\'s first attempt at standing.<br>\r\n<br>\r\nIt was magical and we felt like we were in some BBC wildlife documentary!!!','','','','','');
photos[227] = new photo(35761,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Waterbuck in Reeds- 1.jpg',400,269,'Lone Waterbuck on the Shire River','http://www4.clikpic.com/planetbum/images/Liwonde - Waterbuck in Reeds- 1_thumb.jpg',130, 87,0, 0,'This waterbuck is trying to find his own territory. I didn\'t fancy his chances against the numerous crocodiles that were in the vicinity.','','','','','');
photos[228] = new photo(343387,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Wildebeest - 7366.jpg',600,412,'Wildebeest','http://www4.clikpic.com/planetbum/images/Wildebeest - 7366_thumb.jpg',130, 89,0, 0,'I have found it incredibly difficult to make good photographs of Wildebeeste but I am slowly getting there!','','','','','');
photos[229] = new photo(35801,'62617','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - Leopard - 1.jpg',400,267,'Leopard Hunting','http://www4.clikpic.com/planetbum/images/South Luangwa - Leopard - 1_thumb.jpg',130, 87,1, 0,'During a night drive we spotted this Leopard walking through the bush. She was heading toward a small herd of Impala and she was using the 4x4 as cover. Here lit only by the spotting torch she waits before crawling a little closer to fer prey.','','','','','');
photos[230] = new photo(35716,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Kafue - Leopard Cub - 2.jpg',400,295,'Leopard Cub in Tree','http://www4.clikpic.com/planetbum/images/Kafue - Leopard Cub - 2_thumb.jpg',130, 96,0, 0,'This male leopard cub in Kafue, Zambia, had been without his mother for a number of days. Our guides didn\'t know what had happened to her but they were concerned. On a night drive a couple of days later the guides thought they had spotted his mum. I hope it was and that the story ends happily. If not - that\'s nature for you.<br>\r\n<br>\r\nKafue National Park is an excellent place to see big cats, especially Leopards. The people at Lafupa Camp were particualy helpful to us.','','','','','');
photos[231] = new photo(795342,'62617','Buffalo','gallery','http://www4.clikpic.com/planetbum/images/Buffalo - 1753.jpg',600,399,'Buffalo Wallowing','http://www4.clikpic.com/planetbum/images/Buffalo - 1753_thumb.jpg',130, 86,0, 0,'I must confess that Buffalo do not really do it for me. Hence the lack of photographs of them.<br>\r\nHowever this old male who was wallowing in the mud showed me that they can be interesting creatures.','','','','','');
photos[232] = new photo(343429,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Oryx (Gemsbok) - 5167.jpg',600,372,'Oryx (gemsbok)','http://www4.clikpic.com/planetbum/images/Oryx (Gemsbok) - 5167_thumb.jpg',130, 81,0, 0,'','','','','','');
photos[233] = new photo(343430,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Oryx (Gemsbok) - 6054.jpg',600,390,'Oryx (Gemsbok)','http://www4.clikpic.com/planetbum/images/Oryx (Gemsbok) - 6054_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[234] = new photo(343432,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Ground Squirrel - 4798.jpg',600,433,'Ground Squirrel','http://www4.clikpic.com/planetbum/images/Ground Squirrel - 4798_thumb.jpg',130, 94,0, 0,'','','','','','');
photos[235] = new photo(662965,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 7683.jpg',425,600,'Elephant - Mock Charge','http://www4.clikpic.com/planetbum/images/Elephant - 7683_thumb.jpg',130, 184,1, 0,'After finding this bull elphant on the banks of the Shire River he made a mock charge indicating that he wished to be left to himself. We obliged, of course.','','','','','');
photos[236] = new photo(662968,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Baboon - 1072.jpg',399,600,'Baboon Grooming','http://www4.clikpic.com/planetbum/images/Baboon - 1072_thumb.jpg',130, 195,1, 0,'Baboons are very social animals and grooming is a significant part of social interactions.','','','','','');
photos[237] = new photo(795343,'62617','Chacma Baboon','gallery','http://www4.clikpic.com/planetbum/images/Chacma Baboon - 0591.jpg',600,399,'Young Chacma Baboon','http://www4.clikpic.com/planetbum/images/Chacma Baboon - 0591_thumb.jpg',130, 86,1, 0,'','','','','','');
photos[238] = new photo(662970,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Waterbuck - 3815.jpg',419,600,'Female Waterbuck','http://www4.clikpic.com/planetbum/images/Waterbuck - 3815_thumb.jpg',130, 186,0, 0,'','','','','','');
photos[239] = new photo(463785,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Baboon - 0608.jpg',377,600,'Baboon','http://www4.clikpic.com/planetbum/images/Baboon - 0608_thumb.jpg',130, 207,0, 0,'','','','','','');
photos[240] = new photo(463786,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Baboon - 9767.jpg',600,399,'Baboon','http://www4.clikpic.com/planetbum/images/Baboon - 9767_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[241] = new photo(35817,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Vwaza Marsh - Young Elephant Eating.jpg',400,267,'Young Elephant, Vwaza Marsh','http://www4.clikpic.com/planetbum/images/Vwaza Marsh - Young Elephant Eating_thumb.jpg',130, 87,0, 0,'This young Elephant wandered into the campsite but was oblivious to our presence as she continued her almost relentless eating.<br>\r\n<br>\r\nWhenever we were watching something incredible like this, we had to try and remain alert to anything else around us, like the rest of the herd!','','','','','');
photos[242] = new photo(463787,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Baboon - 9150.jpg',418,600,'Baboon','http://www4.clikpic.com/planetbum/images/Baboon - 9150_thumb.jpg',130, 187,0, 0,'Heading back to camp as the sun was setting we came across a troup of Baboons. The deep red back light lit up the fur in a wonderful colour.<br>\r\n<br>\r\nKeeping the sun out which was causing excessive flare was a major problem and there is still some flare evident but it doesn\'t ruin the effect.','','','','','');
photos[243] = new photo(662982,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion Cub - 2037.jpg',600,429,'Lion Cub','http://www4.clikpic.com/planetbum/images/Lion Cub - 2037_thumb.jpg',130, 93,0, 0,'','','','','','');
photos[244] = new photo(795344,'62617','Cheetah','gallery','http://www4.clikpic.com/planetbum/images/Cheetah - 2763.jpg',600,402,'Cheetah Smiling','http://www4.clikpic.com/planetbum/images/Cheetah - 2763_thumb.jpg',130, 87,0, 0,'The cheetah is actually yawning but in this frame it looks just like some manic grin!','','','','','');
photos[245] = new photo(463790,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 8815.jpg',600,367,'Lions at play','http://www4.clikpic.com/planetbum/images/Lion - 8815_thumb.jpg',130, 80,0, 0,'We came across a pride of 14 lions. After drinking their fill they started to play and have mock fights between themselves - a joy to whitness.','','','','','');
photos[246] = new photo(662984,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion Cub - 2244.jpg',600,363,'Lion Cub','http://www4.clikpic.com/planetbum/images/Lion Cub - 2244_thumb.jpg',130, 79,0, 0,'','','','','','');
photos[247] = new photo(463793,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 8823.jpg',600,376,'Lions at Play','http://www4.clikpic.com/planetbum/images/Lion - 8823_thumb.jpg',130, 81,0, 0,'We came across a pride of 14 lions. After drinking their fill they started to play and have mock fights between themselves - a joy to whitness.','','','','','');
photos[248] = new photo(463794,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 8826.jpg',600,394,'Lions at Play','http://www4.clikpic.com/planetbum/images/Lion - 8826_thumb.jpg',130, 85,0, 0,'We came across a pride of 14 lions. After drinking their fill they started to play and have mock fights between themselves - a joy to whitness.','','','','','');
photos[249] = new photo(463792,'62617','','gallery','http://www4.clikpic.com/planetbum/images/lion - 8818.jpg',600,399,'Lions at Play','http://www4.clikpic.com/planetbum/images/lion - 8818_thumb.jpg',130, 86,0, 0,'We came across a pride of 14 lions. After drinking their fill they started to play and have mock fights between themselves - a joy to whitness.','','','','','');
photos[250] = new photo(463800,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 8831.jpg',600,382,'Lions at Play','http://www4.clikpic.com/planetbum/images/Lion - 8831_thumb.jpg',130, 83,0, 0,'We came across a pride of 14 lions. After drinking their fill they started to play and have mock fights between themselves - a joy to whitness.','','','','','');
photos[251] = new photo(662985,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lions - 6585.jpg',600,362,'Lioness with her Cubs','http://www4.clikpic.com/planetbum/images/Lions - 6585_thumb.jpg',130, 78,0, 0,'','','','','','');
photos[252] = new photo(35816,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Vwaza Marsh - Elephant Mother and Young.jpg',400,267,'Elephants, Vwaza Marsh','http://www4.clikpic.com/planetbum/images/Vwaza Marsh - Elephant Mother and Young_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[253] = new photo(35794,'62617','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - Elephants Crossing Luanga- 6.jpg',400,236,'Elephants Crossing River','http://www4.clikpic.com/planetbum/images/South Luangwa - Elephants Crossing Luanga- 6_thumb.jpg',130, 77,0, 0,'The Luangwa river is shallow during the dry season and presents no problems to these elephants crossing over.','','','Luangwa River, Zambia','','');
photos[254] = new photo(35793,'62617','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - Elephants Crossing Luanga- 5.jpg',400,258,'Elephants Cross Luangwa River','http://www4.clikpic.com/planetbum/images/South Luangwa - Elephants Crossing Luanga- 5_thumb.jpg',130, 84,0, 0,'This small family unit have no problems getting across the river and heading into the park.','','','Luangwa River, Zambia','','');
photos[255] = new photo(795346,'62617','Elephants','gallery','http://www4.clikpic.com/planetbum/images/Elephants - 4638.jpg',600,335,'Elephants at Sunset','http://www4.clikpic.com/planetbum/images/Elephants - 4638_thumb.jpg',130, 73,0, 0,'','','','','','');
photos[256] = new photo(35737,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Elephant - Young Bull  - 4.jpg',400,600,'Young Bull Elephant','http://www4.clikpic.com/planetbum/images/Liwonde - Elephant - Young Bull  - 4_thumb.jpg',130, 195,1, 1,'I had taken a similar shot before and I really like the head on symmetry of the elephant. The original had a lot of grass obscuring the legs and trunk and so I was looking for a chance to improve on it.<br>\r\n<br>\r\nHe turned toward us and picked up his pace. He may not have been old but he was still fairly large. 2.5m tall and double the weight of our 4x4! Kate moved us off before he decided to charge (mock or otherwise).','','','','','');
photos[257] = new photo(35739,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Elephant - Young Bull  - 8.jpg',400,586,'Young Bull Throwing Dust','http://www4.clikpic.com/planetbum/images/Liwonde - Elephant - Young Bull  - 8_thumb.jpg',130, 190,0, 0,'As we moved away he stamped and threw dust up and over himself. He was obviously agitated and so we left him alone.','','','','','');
photos[258] = new photo(463788,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Baboon - 9943.jpg',421,600,'Baboon','http://www4.clikpic.com/planetbum/images/Baboon - 9943_thumb.jpg',130, 185,0, 0,'Social inter-action and status within groups is reinforced by grooming.','','','','','');
photos[259] = new photo(463813,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 8792.jpg',600,399,'Lions at Waterhole','http://www4.clikpic.com/planetbum/images/Lion - 8792_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[260] = new photo(35732,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Baboon - Yawning.jpg',400,285,'Yawning Baboon','http://www4.clikpic.com/planetbum/images/Liwonde - Baboon - Yawning_thumb.jpg',130, 93,0, 0,'Baboons are fascinating to watch. This one yawned and sealed a comic moment.','','','','','');
photos[261] = new photo(463814,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 9293.jpg',600,399,'Lions','http://www4.clikpic.com/planetbum/images/Lion - 9293_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[262] = new photo(35787,'62617','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - Baboons Grooming - 1.jpg',400,327,'Baboons Grooming','http://www4.clikpic.com/planetbum/images/South Luangwa - Baboons Grooming - 1_thumb.jpg',130, 106,0, 0,'The subordinate baboon is grooming the larger baboon. They are very social animals and the bonds are reinforced during grooming where parasites such as ticks are removed. Watching them you see that their touch is gentle and their fingers are dexterous.','','','','','');
photos[263] = new photo(663004,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Sable - 5726.jpg',600,399,'Sable (Bull)','http://www4.clikpic.com/planetbum/images/Sable - 5726_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[264] = new photo(463824,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 9356.jpg',600,399,'Lion Kill','http://www4.clikpic.com/planetbum/images/Lion - 9356_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[265] = new photo(463823,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 9355.jpg',600,399,'Lion Kill','http://www4.clikpic.com/planetbum/images/Lion - 9355_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[266] = new photo(463825,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 9357.jpg',600,365,'Lion kill','http://www4.clikpic.com/planetbum/images/Lion - 9357_thumb.jpg',130, 79,0, 0,'','','','','','');
photos[267] = new photo(663007,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Warthog - 3830.jpg',600,399,'Warthog','http://www4.clikpic.com/planetbum/images/Warthog - 3830_thumb.jpg',130, 86,0, 0,'Not the cutest of africas many mammals but has an endering quilty that you just can\'t quite put your finger on!<br>\r\n<br>\r\nThey are generally quite shy and so a long lens is often required for frame filling photographs. The late afternoon light provides the warm almost golden colour.','','','','','');
photos[268] = new photo(663008,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Wildebeest - 3402.jpg',600,367,'Wildebeest','http://www4.clikpic.com/planetbum/images/Wildebeest - 3402_thumb.jpg',130, 80,0, 0,'','','','','','');
photos[269] = new photo(795351,'62617','Hyena Prints','gallery','http://www4.clikpic.com/planetbum/images/Hyena Prints - 2878.jpg',399,600,'Hyena Prints','http://www4.clikpic.com/planetbum/images/Hyena Prints - 2878_thumb.jpg',130, 195,0, 0,'When out on safari one of the tricks of the trade is to look for tracks at the side of the road. It gives an insight into the nocturnal activities of wildlife even if doesn\'t lead to a sighting.<br>\r\nAs it had rained heavily the night before these tracks were easy to see.','','','','','');
photos[270] = new photo(663009,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Zebra - 3267.jpg',600,399,'Zebra','http://www4.clikpic.com/planetbum/images/Zebra - 3267_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[271] = new photo(463826,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Bushbuck - 6186.jpg',399,600,'Bushbuck','http://www4.clikpic.com/planetbum/images/Bushbuck - 6186_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[272] = new photo(795352,'62617','Leopard','gallery','http://www4.clikpic.com/planetbum/images/Leopard - 2558.jpg',417,600,'Female Leopard','http://www4.clikpic.com/planetbum/images/Leopard - 2558_thumb.jpg',130, 187,1, 0,'A leopard sighting is always exiting. I had to wait about an hour until i got a clear(ish) photograph of her but it was worth the wait.','','','','','');
photos[273] = new photo(828852,'62617','','gallery','http://www4.clikpic.com/planetbum/images/White Rhino - 55311.jpg',399,600,'White Rhino - 5531','http://www4.clikpic.com/planetbum/images/White Rhino - 55311_thumb.jpg',130, 195,0, 0,'A head on view allowed me to use a portrait format and the hills behind gave a wonderful background.','','','','','');
photos[274] = new photo(35729,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lengwe - Warthog at Water Hole - 3.jpg',400,284,'Warthog Family','http://www4.clikpic.com/planetbum/images/Lengwe - Warthog at Water Hole - 3_thumb.jpg',130, 92,1, 0,'Lengwe park in the lower shire, Malawi, has some permanent hides overlooking waterholes. Here we waited in the afternoon and were rewarded with this family of Warthogs that came to drink from the waterhole.','','','Lengwe park, Malawi','','');
photos[275] = new photo(35730,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lengwe - Warthog at Water Hole - 4.jpg',400,283,'Warthogs at Waterhole','http://www4.clikpic.com/planetbum/images/Lengwe - Warthog at Water Hole - 4_thumb.jpg',130, 92,0, 0,'Lengwe Park in Malawi has perment hides errected at various waterholes.<br>\r\nSitting and waiting brings all sorts of sightings and action as various animals converge. The warthogs are quite wary and usually trott off if other animals come along.','','','','','');
photos[276] = new photo(463835,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion - 0001.jpg',600,902,'Male Lion','http://www4.clikpic.com/planetbum/images/Lion - 0001_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[277] = new photo(803082,'62617','','gallery','http://www4.clikpic.com/planetbum/images/White Rhino - 5531.jpg',399,600,'White Rhino','http://www4.clikpic.com/planetbum/images/White Rhino - 5531_thumb.jpg',130, 195,1, 0,'','','','','','');
photos[278] = new photo(828853,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Wildebeest - 44322.jpg',600,415,'Wildebeest - 4432','http://www4.clikpic.com/planetbum/images/Wildebeest - 44322_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[279] = new photo(35799,'62617','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - Kudu - Male - 4.jpg',400,600,'Monarch of the Mopane','http://www4.clikpic.com/planetbum/images/South Luangwa - Kudu - Male - 4_thumb.jpg',130, 195,0, 0,'An impressive male Greater Kudu stands proad. Greater kudu are fairly large antelope and the males sport long, spiralling horns. We never tired of seeing any of the wildlife while on safari, but we always stopped for Kudu.','','','','','');
photos[280] = new photo(463837,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Cape Fur Seal - 8152.jpg',413,600,'Cape Fur Seals','http://www4.clikpic.com/planetbum/images/Cape Fur Seal - 8152_thumb.jpg',130, 189,0, 0,'','','','','','');
photos[281] = new photo(803065,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Black Rhino - 4710.jpg',600,400,'Black Rhino','http://www4.clikpic.com/planetbum/images/Black Rhino - 4710_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[282] = new photo(803083,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Wild Dog - 2343.jpg',600,399,'Wild Dog - 2343','http://www4.clikpic.com/planetbum/images/Wild Dog - 2343_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[283] = new photo(828854,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Zebra - 16521.jpg',600,399,'Zebra','http://www4.clikpic.com/planetbum/images/Zebra - 16521_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[284] = new photo(463839,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Cape Fur Seal - 8217.jpg',600,399,'Cape Fir Seals','http://www4.clikpic.com/planetbum/images/Cape Fur Seal - 8217_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[285] = new photo(35795,'62617','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - Impala - 2.jpg',400,600,'Impala and Oxpeckers','http://www4.clikpic.com/planetbum/images/South Luangwa - Impala - 2_thumb.jpg',130, 195,0, 0,'Taken on an evening safari in South Luangwa, Zambia. Only rarely had I seen Oxpeckers on Impalas so i was doubly pleased with this shot.','','','','','');
photos[286] = new photo(803066,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Chacma Baboon - 0700.jpg',600,405,'Chacma Baboon','http://www4.clikpic.com/planetbum/images/Chacma Baboon - 0700_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[287] = new photo(35796,'62617','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - Impala - 5.jpg',400,600,'Male Impala','http://www4.clikpic.com/planetbum/images/South Luangwa - Impala - 5_thumb.jpg',130, 195,0, 0,'Taken in South Luangwa park, Zambia.<br>\r\n<br>\r\nImpala\'s are way down the food chain but evolution has equiped them with amazing speed and agility to escape predators.','','','','','');
photos[288] = new photo(463841,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Zebra - 1730.jpg',600,414,'Zebra','http://www4.clikpic.com/planetbum/images/Zebra - 1730_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[289] = new photo(35748,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Hippos - 1.jpg',400,349,'Hippos','http://www4.clikpic.com/planetbum/images/Liwonde - Hippos - 1_thumb.jpg',130, 113,0, 0,'','','','','','');
photos[290] = new photo(463843,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Warthog - 4270.jpg',600,399,'Warthog','http://www4.clikpic.com/planetbum/images/Warthog - 4270_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[291] = new photo(803085,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Wild Dogs - 0381.jpg',600,341,'Wild Dogs - 0381','http://www4.clikpic.com/planetbum/images/Wild Dogs - 0381_thumb.jpg',130, 74,0, 0,'','','','','','');
photos[292] = new photo(803096,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Zebra - 1652.jpg',600,399,'Zebra','http://www4.clikpic.com/planetbum/images/Zebra - 1652_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[293] = new photo(35714,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Kafue - Hippos - 1.jpg',400,244,'Hippopotamus','http://www4.clikpic.com/planetbum/images/Kafue - Hippos - 1_thumb.jpg',130, 79,0, 0,'The Hippopotami take the water early to keep cool. They are more agile and safer in the water, not even the largest crocodile would think of attacking them. Out of water they are unpredicatable and a couple of tonnes of flesh, coupled with huge teeth, that can move suprisingly quickly certainly earns my respect.','','','','','');
photos[294] = new photo(463844,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lion Print - 4372.jpg',600,399,'Lion Print','http://www4.clikpic.com/planetbum/images/Lion Print - 4372_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[295] = new photo(35749,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Hippos - 2.jpg',400,267,'','http://www4.clikpic.com/planetbum/images/Liwonde - Hippos - 2_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[296] = new photo(35762,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Waterbucks WB rework.jpg',400,267,'The Fab Four','http://www4.clikpic.com/planetbum/images/Liwonde - Waterbucks WB rework_thumb.jpg',130, 87,0, 0,'Waterbuck are common in Liwonde, Malawi. These four took a minute from grazing to decide whether we were a danger or not.','','','','','');
photos[297] = new photo(35719,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Kafue - Puku - 9465.jpg',400,574,'A female Puku and Fawn','http://www4.clikpic.com/planetbum/images/Kafue - Puku - 9465_thumb.jpg',130, 187,0, 0,'','','','','','');
photos[298] = new photo(35725,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lengwe - Male Impala at Waterhole.jpg',400,534,'Impala at Waterhole','http://www4.clikpic.com/planetbum/images/Lengwe - Male Impala at Waterhole_thumb.jpg',130, 174,0, 0,'','','','','','');
photos[299] = new photo(35726,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lengwe - Male Nyala - At Water Hole.jpg',400,600,'','http://www4.clikpic.com/planetbum/images/Lengwe - Male Nyala - At Water Hole_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[300] = new photo(463850,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 1291.jpg',600,418,'Elephants','http://www4.clikpic.com/planetbum/images/Elephant - 1291_thumb.jpg',130, 91,1, 0,'','','','','','');
photos[301] = new photo(463851,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 1305.jpg',600,336,'Elephants','http://www4.clikpic.com/planetbum/images/Elephant - 1305_thumb.jpg',130, 73,0, 0,'','','','','','');
photos[302] = new photo(35728,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Lengwe - Male Nyala - Domination display.jpg',400,600,'Buck Nyala','http://www4.clikpic.com/planetbum/images/Lengwe - Male Nyala - Domination display_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[303] = new photo(463854,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 1350.jpg',600,401,'Elephants','http://www4.clikpic.com/planetbum/images/Elephant - 1350_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[304] = new photo(35785,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Vervet Monkey - Holding His Tail.jpg',400,565,'Vervet Monkey','http://www4.clikpic.com/planetbum/images/Mulanje - Vervet Monkey - Holding His Tail_thumb.jpg',130, 184,0, 0,'There was a small wooded hill behind our house in Mulanje and we often saw Vervet monkeys on our way to work.','','','','','');
photos[305] = new photo(463855,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 6321.jpg',600,361,'Elephants','http://www4.clikpic.com/planetbum/images/Elephant - 6321_thumb.jpg',130, 78,0, 0,'','','','','','');
photos[306] = new photo(35783,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Vervet Monkey - 2.jpg',400,545,'Vervet Monkey','http://www4.clikpic.com/planetbum/images/Mulanje - Vervet Monkey - 2_thumb.jpg',130, 177,1, 0,'I really liked the way the light throught the trees lights up this Vervet Monkey\'s eyes.<br>\r\n<br>\r\nWe were lucky enough to have a troop of monkeys that came by quite often. Taken just behind our back garden in Mulanje, I had seen the branches moving even though it was a calm day, I grabbed my camera and went off up the small hill.','','','','','');
photos[307] = new photo(463856,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 9720.jpg',600,355,'Elephants','http://www4.clikpic.com/planetbum/images/Elephant - 9720_thumb.jpg',130, 77,1, 0,'','','','','','');
photos[308] = new photo(803091,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Wildebeest - 4432.jpg',600,415,'Wildebeest - 4432','http://www4.clikpic.com/planetbum/images/Wildebeest - 4432_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[309] = new photo(463859,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 9670.jpg',600,399,'Elephants','http://www4.clikpic.com/planetbum/images/Elephant - 9670_thumb.jpg',130, 86,1, 0,'','','','','','');
photos[310] = new photo(463861,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 5202.jpg',600,363,'Elephants','http://www4.clikpic.com/planetbum/images/Elephant - 5202_thumb.jpg',130, 79,0, 0,'','','','','','');
photos[311] = new photo(463862,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 5139.jpg',600,340,'Elephants','http://www4.clikpic.com/planetbum/images/Elephant - 5139_thumb.jpg',130, 74,0, 0,'','','','','','');
photos[312] = new photo(463863,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Elephant - 1702.jpg',600,366,'Elephant Calf','http://www4.clikpic.com/planetbum/images/Elephant - 1702_thumb.jpg',130, 79,0, 0,'','','','','','');
photos[313] = new photo(463865,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Hippo - 6173.jpg',600,399,'Hippopotamus','http://www4.clikpic.com/planetbum/images/Hippo - 6173_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[314] = new photo(463867,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Hippo - 1014.jpg',600,399,'Hippopotamus','http://www4.clikpic.com/planetbum/images/Hippo - 1014_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[315] = new photo(463868,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Hippo - 0999.jpg',600,370,'Hippopotamus','http://www4.clikpic.com/planetbum/images/Hippo - 0999_thumb.jpg',130, 80,0, 0,'','','','','','');
photos[316] = new photo(463869,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Hippos - 1052.jpg',600,399,'Hippopotamus','http://www4.clikpic.com/planetbum/images/Hippos - 1052_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[317] = new photo(448453,'62617','','gallery','http://www4.clikpic.com/planetbum/images/African Squirrel - 3850.jpg',600,399,'African Squirrel','http://www4.clikpic.com/planetbum/images/African Squirrel - 3850_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[318] = new photo(44693,'62617','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Warthog Trotting - 2554.jpg',400,256,'Trotting Warthog','http://www4.clikpic.com/planetbum/images/Liwonde - Warthog Trotting - 2554_thumb.jpg',130, 83,0, 0,'A Warthog\'s trot is quite comical and suprisingly dainty!<br>\r\n<br>\r\nThe colours weren\'t a strong point in this shot but B&W does the warthog justice.','','','','','');
photos[319] = new photo(343196,'62618','','gallery','http://www4.clikpic.com/planetbum/images/African Penguins (Jack Ass) - 3935.jpg',600,399,'African Penguins (Jack Ass Penguin)','http://www4.clikpic.com/planetbum/images/African Penguins (Jack Ass) - 3935_thumb.jpg',130, 86,0, 0,'After getting up at 4.30am to get to Boulder Beach for dawn we were greeted with this lovely pre-sunrise colours with lights of a cape town suburb in the background.','','','','','');
photos[320] = new photo(828835,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Red Billed Oxpecker - 16301.jpg',427,600,'Red Billed Oxpecker - 1630','http://www4.clikpic.com/planetbum/images/Red Billed Oxpecker - 16301_thumb.jpg',130, 183,1, 0,'It took me 9 months to get this photograph.<br>\r\nNot that Ox-peckers are rare but simply because the animals they peck off are usually shy and not approachable to the close range required.<br>\r\nThe Zebras in Hluhluwe were an exception and so when I saw this Ox-pecker I knew exactly what photograph I wanted to make.','','','','','');
photos[321] = new photo(343259,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Coot - 2231.jpg',600,326,'Coot','http://www4.clikpic.com/planetbum/images/Coot - 2231_thumb.jpg',130, 71,0, 0,'During territory fights they persue (or are persued) across the water. The wings providing just enough lift for them to \"run on water\"','','','','','');
photos[322] = new photo(343321,'62618','','gallery','http://www4.clikpic.com/planetbum/images/African Penguins (Jack Ass) - 41212.jpg',429,600,'African Penguin','http://www4.clikpic.com/planetbum/images/African Penguins (Jack Ass) - 41212_thumb.jpg',130, 182,0, 0,'The colony at Boulders beach is a spectical to say the least. These three chicks reminded me of a barber trio singing!','','','','','');
photos[323] = new photo(35808,'62618','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - White Throated Bee-Eater - 1.jpg',400,351,'White Throated Bee-eater','http://www4.clikpic.com/planetbum/images/South Luangwa - White Throated Bee-Eater - 1_thumb.jpg',130, 114,0, 0,'','','','','','');
photos[324] = new photo(343331,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Fork tailed Drongo - 3279.jpg',600,860,'Fork-Tailed Drongo','http://www4.clikpic.com/planetbum/images/Fork tailed Drongo - 3279_thumb.jpg',130, 186,0, 0,'','','','','','');
photos[325] = new photo(343330,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Blacksmith Plover - 0782.jpg',600,902,'Blacksmith Lapwing (Plover)','http://www4.clikpic.com/planetbum/images/Blacksmith Plover - 0782_thumb.jpg',130, 195,0, 1,'The Blacksmith Lapwing (plover) has a metallic call which resembles a hammer hitting an anvil (from a distance!)','','','','','');
photos[326] = new photo(343334,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Pearl Spotted owl - 1796.jpg',600,902,'Pearl Spotted Owl','http://www4.clikpic.com/planetbum/images/Pearl Spotted owl - 1796_thumb.jpg',130, 195,1, 1,'The Pearl Spotted Owl is about as small as owls get.  I had seen one earlier fly from a shaded branch and so I kept a careful lookout until I found this one who sat patiently for me to photograph it.','','','','','');
photos[327] = new photo(35723,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Lengwe - Fork tailed Drongo in Moon Silhoutte.jpg',400,395,'Fork-tailed Drongo','http://www4.clikpic.com/planetbum/images/Lengwe - Fork tailed Drongo in Moon Silhoutte_thumb.jpg',130, 128,0, 0,'','','','','','');
photos[328] = new photo(803067,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Grey Heron - 4737.jpg',600,399,'Grey Heron','http://www4.clikpic.com/planetbum/images/Grey Heron - 4737_thumb.jpg',130, 86,0, 0,'I saw this heron perched on a dead tree and had made a number of photographs when he decided to fly off. This frame is just as he left his perch. The rising sun from behind washes the scene a wonderful golden colour.','','','','','');
photos[329] = new photo(343405,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Gulls - 0626.jpg',600,399,'Gulls','http://www4.clikpic.com/planetbum/images/Gulls - 0626_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[330] = new photo(343407,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Kestral - 1830.jpg',600,450,'Kestral','http://www4.clikpic.com/planetbum/images/Kestral - 1830_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[331] = new photo(343411,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Secretary Bird - 1355.jpg',600,399,'Secretary Bird','http://www4.clikpic.com/planetbum/images/Secretary Bird - 1355_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[332] = new photo(343413,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Socialable Weaver - 1696.jpg',600,399,'Sociable Weaver Bird','http://www4.clikpic.com/planetbum/images/Socialable Weaver - 1696_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[333] = new photo(343419,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Kori Bustard - 1531.jpg',600,429,'Kori Bustard','http://www4.clikpic.com/planetbum/images/Kori Bustard - 1531_thumb.jpg',130, 93,0, 0,'The heaviest flying bird. It onlt takes to the air when suprised otherwise it prefers to run away. Suprisingly it is gets into the air fairly quickly when it needs to.','','','','','');
photos[334] = new photo(343423,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Yellow Billed Horn Bill - 1137.jpg',600,402,'Yellow Billed Hornbill','http://www4.clikpic.com/planetbum/images/Yellow Billed Horn Bill - 1137_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[335] = new photo(343424,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Ostrich - 5352.jpg',600,399,'Ostrich','http://www4.clikpic.com/planetbum/images/Ostrich - 5352_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[336] = new photo(343426,'62618','','gallery','http://www4.clikpic.com/planetbum/images/unk - 0917.jpg',600,399,'Cape White Eye','http://www4.clikpic.com/planetbum/images/unk - 0917_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[337] = new photo(35731,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - African Jacanas.jpg',400,600,'African Jacana','http://www4.clikpic.com/planetbum/images/Liwonde - African Jacanas_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[338] = new photo(35733,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Bateleur Eagle (subadult).jpg',400,351,'Bateleur Eagle (juvenile) Landing','http://www4.clikpic.com/planetbum/images/Liwonde - Bateleur Eagle (subadult)_thumb.jpg',130, 114,0, 0,'A juvenile Bateleur Eagle is still an impressively large eagle. I wasn\'t sure if he\'d landed on the sapling to hunt but he did soon after fly down to the grass near by.','','','','','');
photos[339] = new photo(803069,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Long tailed Widow - 05121.jpg',600,399,'Long Tailed Widow','http://www4.clikpic.com/planetbum/images/Long tailed Widow - 05121_thumb.jpg',130, 86,0, 0,'This photograph shows the male widows territorial display which is as impressive as it is odd!<br>\r\nThe long tail feathers and short stubby wings make for a low flying display not to be missed.','','','','','');
photos[340] = new photo(35758,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Saddle Billed Stork - rework.jpg',400,564,'Saddlebilled Stork.','http://www4.clikpic.com/planetbum/images/Liwonde - Saddle Billed Stork - rework_thumb.jpg',130, 183,0, 0,'There was a pair wading along the bank of the Shire River through Liwonde but as the male was giving this display I concentrated on him.','','','','','');
photos[341] = new photo(803071,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Long tailed Widow - 05751.jpg',600,394,'Long Tailed Widow','http://www4.clikpic.com/planetbum/images/Long tailed Widow - 05751_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[342] = new photo(35735,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Bohm\'s Bee-Eater - 6.jpg',400,600,'Bohm\'s Bee-eaters','http://www4.clikpic.com/planetbum/images/Liwonde - Bohm\'s Bee-Eater - 6_thumb.jpg',130, 195,0, 0,'This pair of Bohm\'s Bee-eaters were taking it in turns to fly off, catch insects on the wing and return to the same perch.<br>\r\n<br>\r\nI tried in vain to cature them in flight. They rival any bird in acrobatic skill and they are very fast. Always next time.....','','','','','');
photos[343] = new photo(662974,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Stilt - 2394.jpg',399,600,'Stilt at Sunset','http://www4.clikpic.com/planetbum/images/Stilt - 2394_thumb.jpg',130, 195,0, 0,'Sunset, water and a strong silhouette combine to give great results. This Stilt was very obliging.','','','','','');
photos[344] = new photo(795350,'62618','Hoopoe','gallery','http://www4.clikpic.com/planetbum/images/Hoopoe - 5887.jpg',600,404,'Hoopoe','http://www4.clikpic.com/planetbum/images/Hoopoe - 5887_thumb.jpg',130, 88,1, 0,'I have been wanting to photograph Hoopoes for a few years but they were always to far away.<br>\r\nOn one of the very last days in Africa I heard this Hoopoe close by.<br>\r\nThere it was 10m away on the ground. I hastily grabbed the camera and hit the ground. I crept to within 5m and spent about 10mins with the Hoopoe happy to peck around me. Fantastic.','','','','','');
photos[345] = new photo(35776,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Giant Eagle Owl.jpg',400,267,'African Eagle Owl','http://www4.clikpic.com/planetbum/images/Mulanje - Giant Eagle Owl_thumb.jpg',130, 87,0, 0,'This Eagle Owl and it\'s mate were nested in a small wooded hill behind our house in Mulanje.','','','','','');
photos[346] = new photo(795349,'62618','Ground hornbil','gallery','http://www4.clikpic.com/planetbum/images/Ground hornbil - 4258.jpg',600,399,'Ground hornbill','http://www4.clikpic.com/planetbum/images/Ground hornbil - 4258_thumb.jpg',130, 86,1, 0,'I like groung hornbills. They are turkey sized and have amazing eyes set into that red skin.','','','','','');
photos[347] = new photo(803073,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Long tailed Widow - 06931.jpg',600,424,'Long Tailed Widow','http://www4.clikpic.com/planetbum/images/Long tailed Widow - 06931_thumb.jpg',130, 92,0, 0,'When not displaying the Widow will perch on tall grass and watch over his territory.','','','','','');
photos[348] = new photo(662989,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Maribou Stork - 3391.jpg',600,389,'Maribou Stork in Flight','http://www4.clikpic.com/planetbum/images/Maribou Stork - 3391_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[349] = new photo(662991,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Fish Eagle - 6869.jpg',600,412,'African Fish Eagle in Flight','http://www4.clikpic.com/planetbum/images/Fish Eagle - 6869_thumb.jpg',130, 89,0, 0,'','','','','','');
photos[350] = new photo(795347,'62618','Grey Heron','gallery','http://www4.clikpic.com/planetbum/images/Grey Heron - 4720.jpg',403,600,'Grey Heron','http://www4.clikpic.com/planetbum/images/Grey Heron - 4720_thumb.jpg',130, 194,0, 0,'','','','','','');
photos[351] = new photo(662992,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Egrets - 8654.jpg',600,348,'Egrets Flying Back to Roost','http://www4.clikpic.com/planetbum/images/Egrets - 8654_thumb.jpg',130, 75,0, 0,'','','','','','');
photos[352] = new photo(662994,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Open-Billed Stork - 6741.jpg',600,416,'Open-Billed Stork','http://www4.clikpic.com/planetbum/images/Open-Billed Stork - 6741_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[353] = new photo(803075,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Malachite Sunbird - 09821.jpg',600,379,'Malachite Sunbird - 09821','http://www4.clikpic.com/planetbum/images/Malachite Sunbird - 09821_thumb.jpg',130, 82,0, 0,'While staying at a hostel in the Drakensberg, South Africa I found a malachite sunbird feeding on these wonderful red flowers. The contrasting colours were perfect. The bush was only 5m away and allowed a good composition with a clean background, what more can you ask for?','','','','','');
photos[354] = new photo(662995,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Green Backed Heron - 7186.jpg',600,409,'Green Backed Heron','http://www4.clikpic.com/planetbum/images/Green Backed Heron - 7186_thumb.jpg',130, 89,0, 0,'','','','','','');
photos[355] = new photo(795348,'62618','Grey Lourie','gallery','http://www4.clikpic.com/planetbum/images/Grey Lourie - 4379.jpg',400,600,'Grey Lourie','http://www4.clikpic.com/planetbum/images/Grey Lourie - 4379_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[356] = new photo(663000,'62618','','gallery','http://www4.clikpic.com/planetbum/images/White Breasted Cormerants - 6411.jpg',399,600,'White Breasted Cormerants (breeding colony)','http://www4.clikpic.com/planetbum/images/White Breasted Cormerants - 6411_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[357] = new photo(663001,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Jacana - 6769.jpg',431,600,'African Jacana','http://www4.clikpic.com/planetbum/images/Jacana - 6769_thumb.jpg',130, 181,0, 1,'A common but beautiful african wading bird. Easy to photograph but I wanted something a little more than the usual so I waited for this Jacana to walk over some shallow pools to catch a reflection in them.','','','','','');
photos[358] = new photo(803077,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Pintailed Whydah - 47981.jpg',600,411,'Pintailed Whydah - 47981','http://www4.clikpic.com/planetbum/images/Pintailed Whydah - 47981_thumb.jpg',130, 89,0, 0,'','','','','','');
photos[359] = new photo(663002,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Lilac Breasted Roller - 4640.jpg',419,600,'Lilac Breasted Roller','http://www4.clikpic.com/planetbum/images/Lilac Breasted Roller - 4640_thumb.jpg',130, 186,0, 0,'','','','','','');
photos[360] = new photo(803078,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Red Billed Oxpecker - 1630.jpg',427,600,'Red Billed Oxpecker','http://www4.clikpic.com/planetbum/images/Red Billed Oxpecker - 1630_thumb.jpg',130, 183,0, 0,'This photograph was fiarly simplebut took about 3 years to come together. it isn\'t that ox-peckers are rare but that their host animals are skittish and not easy to approach closely.<br>\r\nWhen I saw this zebra close by and the ox-peckers going about their buisness I just had to get a clean and complemtary back ground.','','','','','');
photos[361] = new photo(803079,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Red Billed Oxpecker - 3571.jpg',600,399,'Red Billed Oxpecker - 3571','http://www4.clikpic.com/planetbum/images/Red Billed Oxpecker - 3571_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[362] = new photo(828851,'62618','','gallery','http://www4.clikpic.com/planetbum/images/White backed Vulture - 23121.jpg',429,600,'White backed Vulture','http://www4.clikpic.com/planetbum/images/White backed Vulture - 23121_thumb.jpg',130, 182,0, 0,'A White Backed Vulture patiently waits through the dawn for the air to warm up before taking off and using the thermals to keep him aloft.','','','','','');
photos[363] = new photo(35770,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Mua - Scarlet Chested Sunbird - 1.jpg',400,235,'Scarlet-Chested Sunbird','http://www4.clikpic.com/planetbum/images/Mua - Scarlet Chested Sunbird - 1_thumb.jpg',130, 76,0, 0,'The strikingly coloured (and aptly named) Scarlet-chested Sunbird was feeding on nectar from the flowers.<br>\r\nThe flower bed was just on the other side of a bamboo fence at the front of our garden. The fence was a very effective hide and allowed me to get very close.','','','','','');
photos[364] = new photo(35722,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Hamerkop In Flight.jpg',400,250,'Hammerkop In Flight','http://www4.clikpic.com/planetbum/images/Lake Malawi - Hamerkop In Flight_thumb.jpg',130, 81,0, 0,'The name from the distintive head feathers that are reminiscent of a hammer.<br>\r\n<br>\r\nThis Hammerkop was gliding over Lake Malawi looking for lunch.','','','','','');
photos[365] = new photo(35771,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Mua - Scarlet Chested Sunbird - 2.jpg',400,278,'Scarlet-Chested Sunbird','http://www4.clikpic.com/planetbum/images/Mua - Scarlet Chested Sunbird - 2_thumb.jpg',130, 90,0, 0,'The strikingly coloured (and aptly named) Scarlet-chested Sunbird was feeding on nectar from the flowers.<br>\r\nThe flower bed was just on the other side of a bamboo fence at the front of our garden. The fence was a very effective hide and allowed me to get very close.','','','','','');
photos[366] = new photo(463831,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Pel\'s Fishing Owl - 1444.jpg',381,600,'Pels Fishing Owl','http://www4.clikpic.com/planetbum/images/Pel\'s Fishing Owl - 1444_thumb.jpg',130, 205,0, 0,'','','','','','');
photos[367] = new photo(803081,'62618','','gallery','http://www4.clikpic.com/planetbum/images/White backed Vulture - 2312.jpg',429,600,'White backed Vulture','http://www4.clikpic.com/planetbum/images/White backed Vulture - 2312_thumb.jpg',130, 182,0, 0,'','','','','','');
photos[368] = new photo(463834,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Little Bee-Eater - 4230.jpg',407,600,'Little Bee-Eater','http://www4.clikpic.com/planetbum/images/Little Bee-Eater - 4230_thumb.jpg',130, 192,0, 0,'','','','','','');
photos[369] = new photo(795340,'62618','Black Sunbird (Amethyst)','gallery','http://www4.clikpic.com/planetbum/images/Black Sunbird (Amethyst) - 9622.jpg',487,600,'Black Sunbird (Amethyst)','http://www4.clikpic.com/planetbum/images/Black Sunbird (Amethyst) - 9622_thumb.jpg',130, 160,1, 0,'These lovely but small sun birds are difficult to photograph. The black feathers make exposure tricky and the size means being close while they move around quickly.<br>\r\nLuckily this Black Sunbird was constantly revisiting and defending a territory including these lovely red flowers which meant I could set up and wait for his return.','','','','','');
photos[370] = new photo(35790,'62618','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - Crowned Cranes - 2 wb cloudy rework.jpg',400,303,'Crowned Cranes','http://www4.clikpic.com/planetbum/images/South Luangwa - Crowned Cranes - 2 wb cloudy rework_thumb.jpg',130, 98,0, 0,'I am particularly fond of these large birds with their earthy coloured feathers and delicate golden crown.','','','','','');
photos[371] = new photo(463829,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Malacite Kingfisher - 0309.jpg',600,389,'Malachite Kingfisher','http://www4.clikpic.com/planetbum/images/Malacite Kingfisher - 0309_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[372] = new photo(463846,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Squacco Heron - 5487.jpg',600,391,'Squacco Heron','http://www4.clikpic.com/planetbum/images/Squacco Heron - 5487_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[373] = new photo(463847,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Coot - 22311.jpg',600,326,'Coot','http://www4.clikpic.com/planetbum/images/Coot - 22311_thumb.jpg',130, 71,0, 0,'','','','','','');
photos[374] = new photo(463848,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Egret - 0340.jpg',600,399,'Egret','http://www4.clikpic.com/planetbum/images/Egret - 0340_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[375] = new photo(463849,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Yellow Billed Stork - 1619.jpg',600,395,'Yellow Billed Storks','http://www4.clikpic.com/planetbum/images/Yellow Billed Stork - 1619_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[376] = new photo(35709,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Elephant Marsh - Grey Heron - 1.jpg',400,309,'Grey Heron','http://www4.clikpic.com/planetbum/images/Elephant Marsh - Grey Heron - 1_thumb.jpg',130, 100,0, 0,'Elephant marsh in the Lower Shire is home to numerous species of wading birds and waterfowl.','','','','','');
photos[377] = new photo(663896,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Malachite Kingfisher - 6190.jpg',600,398,'Malachite Kingfisher','http://www4.clikpic.com/planetbum/images/Malachite Kingfisher - 6190_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[378] = new photo(663897,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Malachite Kingfisher - 6087.jpg',600,399,'Malachite Kingfisher','http://www4.clikpic.com/planetbum/images/Malachite Kingfisher - 6087_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[379] = new photo(35759,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Swallow - 1.jpg',400,257,'','http://www4.clikpic.com/planetbum/images/Liwonde - Swallow - 1_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[380] = new photo(35764,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Wiretailed Swallow.jpg',400,259,'','http://www4.clikpic.com/planetbum/images/Liwonde - Wiretailed Swallow_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[381] = new photo(663895,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Pied Kingfisher - 6122.jpg',600,415,'Pied Kingfisher','http://www4.clikpic.com/planetbum/images/Pied Kingfisher - 6122_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[382] = new photo(35734,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Bird Table - 2.jpg',400,267,'','http://www4.clikpic.com/planetbum/images/Liwonde - Bird Table - 2_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[383] = new photo(663898,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Spoonbill - 2448.jpg',600,395,'Spoonbill','http://www4.clikpic.com/planetbum/images/Spoonbill - 2448_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[384] = new photo(803093,'62618','','gallery','http://www4.clikpic.com/planetbum/images/woodland Kingfisher - 3521.jpg',600,396,'Woodland Kingfisher','http://www4.clikpic.com/planetbum/images/woodland Kingfisher - 3521_thumb.jpg',130, 86,0, 0,'Woodland Kingfishers have a distinct call which means that you tell when they are around. When the pair meet up they display to one another by spreading there wings showing off their beautiful plumage.','','','','','');
photos[385] = new photo(663899,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Kite- 3347.jpg',600,399,'Kite','http://www4.clikpic.com/planetbum/images/Kite- 3347_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[386] = new photo(35755,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Pied Kingfisher (nat frame) - 1.jpg',400,268,'Pied Kingfisher','http://www4.clikpic.com/planetbum/images/Liwonde - Pied Kingfisher (nat frame) - 1_thumb.jpg',130, 87,0, 0,'The pied kingfisher is a common sight around the rivers and on the lake in Malawi. The are fairly small and frequently take to the wing.','','','Shire River, Malawi','','');
photos[387] = new photo(35754,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Pied Kingfisher - Hovering - 2.jpg',400,284,'Pied Kingfisher','http://www4.clikpic.com/planetbum/images/Liwonde - Pied Kingfisher - Hovering - 2_thumb.jpg',130, 92,0, 0,'These kingfishers are able to hover quite effectively. They prey on fish and so are found along rivers or on lake shores. They often hunt from a hover although, like other kingfishers, they also dive from low perches.','','','','','');
photos[388] = new photo(35766,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Mangochi - Little Bee-Eater.jpg',400,375,'Little Bee-Eater','http://www4.clikpic.com/planetbum/images/Mangochi - Little Bee-Eater_thumb.jpg',130, 122,0, 0,'This Little Bee Eater was preening it\'s wings. The wings are kept in perfect condition so that they can perform some incredible, acrobatic flying.','','','','','');
photos[389] = new photo(35765,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Mangochi - Little Bee-Eater - 2.jpg',400,301,'Little Bee-Eater','http://www4.clikpic.com/planetbum/images/Mangochi - Little Bee-Eater - 2_thumb.jpg',130, 98,0, 0,'All of the Bee Eaters are colourful and the little Bee Eater is no exception. They  rival swallows with there acrobatic flying as they chase windbourne insects.<br>\r\n<br>\r\nThey often return to favourite perches and so they are reletively easy to photograph with a little patience.','','','','','');
photos[390] = new photo(463870,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Little Bee-Eater - 1056.jpg',600,414,'Little Bee-Eaters','http://www4.clikpic.com/planetbum/images/Little Bee-Eater - 1056_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[391] = new photo(35747,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Hamerkop.jpg',400,267,'Hammerkop','http://www4.clikpic.com/planetbum/images/Liwonde - Hamerkop_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[392] = new photo(463871,'62618','','gallery','http://www4.clikpic.com/planetbum/images/White Fronted Bee-Eater - 1186.jpg',600,394,'White Fronted Bee-Eater','http://www4.clikpic.com/planetbum/images/White Fronted Bee-Eater - 1186_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[393] = new photo(35724,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Lengwe - Gymnogene (subadult).jpg',400,316,'Immature Gymnogene (African Harrier Hawk)','http://www4.clikpic.com/planetbum/images/Lengwe - Gymnogene (subadult)_thumb.jpg',130, 103,0, 0,'','','','','','');
photos[394] = new photo(463872,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Vulture - 9229.jpg',600,399,'Vulture on Buffalo Calf','http://www4.clikpic.com/planetbum/images/Vulture - 9229_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[395] = new photo(463873,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Vulture - 4455.jpg',600,407,'Vulture in Flight','http://www4.clikpic.com/planetbum/images/Vulture - 4455_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[396] = new photo(35763,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - White Helmetshrike.jpg',400,309,'','http://www4.clikpic.com/planetbum/images/Liwonde - White Helmetshrike_thumb.jpg',130, 100,0, 0,'','','','','','');
photos[397] = new photo(35750,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Masked Weaverbird - 2.jpg',400,310,'Weaver Bird','http://www4.clikpic.com/planetbum/images/Liwonde - Masked Weaverbird - 2_thumb.jpg',130, 101,0, 0,'','','','','','');
photos[398] = new photo(35751,'62618','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Masked Weaverbird - 4.jpg',400,612,'Weaver Bird Buildling Nest','http://www4.clikpic.com/planetbum/images/Liwonde - Masked Weaverbird - 4_thumb.jpg',130, 199,0, 0,'','','','','','');
photos[399] = new photo(35805,'62618','','gallery','http://www4.clikpic.com/planetbum/images/South Luangwa - Maribou Stork at Sunset.jpg',400,600,'Maribou Stork','http://www4.clikpic.com/planetbum/images/South Luangwa - Maribou Stork at Sunset_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[400] = new photo(795341,'62619','Blue Headed Tree Agama','gallery','http://www4.clikpic.com/planetbum/images/Blue Headed Tree Agama - 0311.jpg',600,421,'Blue Headed Tree Agama','http://www4.clikpic.com/planetbum/images/Blue Headed Tree Agama - 0311_thumb.jpg',130, 91,0, 0,'I saw a number of blue headed tree agamas in Kruger NP, south africa. I poicked the most accessable agama and spent sometime approaching, they can be quite skittish.<br>\r\nI tried a number of compsitions and this was the one that worked best.','','','','','');
photos[401] = new photo(1794844,'62619','','gallery','http://www4.clikpic.com/planetbum/images/_MG_6454.jpg',500,333,'Chamois (Rupicapra rupicapra)','http://www4.clikpic.com/planetbum/images/_MG_6454_thumb.jpg',130, 87,0, 0,'During a visit to the Swiss Alps we had the pleasure of seeing a number of Chamois. <br>\r\n<br>\r\nAlthough I only had a short telephoto with me a careful approach allowed me to get close enough.','','','','','');
photos[402] = new photo(662977,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Starfish - 3135.jpg',401,600,'Starfish on Beach','http://www4.clikpic.com/planetbum/images/Starfish - 3135_thumb.jpg',130, 195,1, 1,'','','','','','');
photos[403] = new photo(795345,'62619','Dung Beetle','gallery','http://www4.clikpic.com/planetbum/images/Dung Beetle - 0180.jpg',600,399,'Dung Beetle','http://www4.clikpic.com/planetbum/images/Dung Beetle - 0180_thumb.jpg',130, 86,0, 0,'Dung beetles are comical but that isn\'t really fair. They are very efficient at making dung balls and the speed that they move with the rolled up dung is incredible. They appear everywhere there is fresh dung (usually elephant and/or rhino).<br>\r\nThey bury the dung ball with a grub inside. The grub eats the dung as it grows and out pops an adult dung beetle ready to complete the cycle!','','','','','');
photos[404] = new photo(662987,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Nile Crocodile - 7173.jpg',600,322,'Nile Crocodile','http://www4.clikpic.com/planetbum/images/Nile Crocodile - 7173_thumb.jpg',130, 70,0, 0,'The largest of africas reptiles, the nile crocodile take to water as soon as you approach. Allowing a boat to slowly drift closer helps but enivitably they get up to enter the safety of water. After a while you can predict their movements which then allows you to concentrate on photographing them. <br>\r\n<br>\r\nThey are quite long and flat and so can be difficult to fit in the frame but here the croc is curled (almost dragon like) which makes the photograph more compact.','','','','','');
photos[405] = new photo(35720,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Croc Farm - 1.jpg',400,267,'Crocodile','http://www4.clikpic.com/planetbum/images/Lake Malawi - Croc Farm - 1_thumb.jpg',130, 87,0, 0,'A crocodile farm on Lake Malawi allows visitors to get a close view of these feared creatures.','','','','','');
photos[406] = new photo(35721,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Croc Farm - 2.jpg',400,267,'Young Crocodiles','http://www4.clikpic.com/planetbum/images/Lake Malawi - Croc Farm - 2_thumb.jpg',130, 87,0, 0,'The crocodile farm by Lake Malawi has hundreds of crocodiles and are reared in large groups sorted by age.','','','','','');
photos[407] = new photo(35772,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Butterfly (Chrysoritis......) - 2.jpg',400,376,'','http://www4.clikpic.com/planetbum/images/Mulanje - Butterfly (Chrysoritis_thumb......) - 2.jpg',130, 122,0, 0,'','','','','','');
photos[408] = new photo(35814,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Vwaza Marsh - (Belenois) Butterflies - 2.jpg',400,267,'','http://www4.clikpic.com/planetbum/images/Vwaza Marsh - (Belenois) Butterflies - 2_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[409] = new photo(35778,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Golden Orb Spider.jpg',400,602,'African Orb Spider','http://www4.clikpic.com/planetbum/images/Golden Orb Spider_thumb.jpg',130, 196,1, 0,'','','','','','');
photos[410] = new photo(35782,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Tree Agamas Lizard - 3.jpg',400,267,'Blue Headed Agama','http://www4.clikpic.com/planetbum/images/Mulanje - Tree Agamas Lizard - 3_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[411] = new photo(35781,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Tree Agamas Lizard - 2.jpg',400,355,'Blue headed Agama','http://www4.clikpic.com/planetbum/images/Mulanje - Tree Agamas Lizard - 2_thumb.jpg',130, 115,0, 0,'','','','','','');
photos[412] = new photo(35769,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Mua - Lizard (tree agamas)- 5.jpg',400,600,'Tree Agama','http://www4.clikpic.com/planetbum/images/Mua - Lizard (tree agamas)- 5_thumb.jpg',130, 195,0, 0,'This Tree Agama had found an ant trail and was feeding on the passers by. I was lucky enough to find him in front garden while I was living in Malawi.','','','','','');
photos[413] = new photo(35752,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Monitor Lizard - 4.jpg',400,570,'Monitor Lizard','http://www4.clikpic.com/planetbum/images/Liwonde - Monitor Lizard - 4_thumb.jpg',130, 185,0, 0,'','','','','','');
photos[414] = new photo(35777,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Lupin or Foxglove.jpg',400,600,'Foxglove','http://www4.clikpic.com/planetbum/images/Mulanje - Lupin or Foxglove_thumb.jpg',130, 195,0, 0,'The foxgloves grow on Mulanje mountain, generally around Chambe.','','','','','');
photos[415] = new photo(35774,'62619','','gallery','http://www4.clikpic.com/planetbum/images/Mua - Yellow Flower.jpg',400,600,'Firangipani','http://www4.clikpic.com/planetbum/images/Mua - Yellow Flower_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[416] = new photo(36454,'62619','','gallery','http://www4.clikpic.com/planetbum/images/CRW_3617 - in prog.jpg',400,583,'Backlit Grass','http://www4.clikpic.com/planetbum/images/CRW_3617 - in prog_thumb.jpg',130, 189,0, 0,'The striking back light against a dark background really makes the grass leap from the page (or screen)','','','','','');
photos[417] = new photo(36453,'62619','','gallery','http://www4.clikpic.com/planetbum/images/CRW_3610 In prog.jpg',400,586,'Firangipani','http://www4.clikpic.com/planetbum/images/CRW_3610 In prog_thumb.jpg',130, 190,0, 0,'','','','','','');
photos[418] = new photo(343170,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Deadvlei - 5853.jpg',600,902,'Deadvlei, Namibia','http://www4.clikpic.com/planetbum/images/Deadvlei - 5853_thumb.jpg',130, 195,1, 0,'Deadvlei (nr Sousselvlei) in Namibia is so surreal it is like walking around in a Salvador Dali painting','','','','','');
photos[419] = new photo(343172,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Deadvlei - 5841.jpg',600,855,'Deadvlei, Namibia','http://www4.clikpic.com/planetbum/images/Deadvlei - 5841_thumb.jpg',130, 185,1, 0,'Deadvlei (nr Sousselvlei) in Namibia is so surreal it is like walking around in a Salvador Dali painting','','','','','');
photos[420] = new photo(343181,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Sand Pattern - 5874.jpg',600,729,'Sand Patterns','http://www4.clikpic.com/planetbum/images/Sand Pattern - 5874_thumb.jpg',130, 158,0, 0,'The setting sun over the dunes provides a multitude of patterns and textures','','','','','');
photos[421] = new photo(343183,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Cape Point - 4050.jpg',600,846,'Cape Point','http://www4.clikpic.com/planetbum/images/Cape Point - 4050_thumb.jpg',130, 183,1, 0,'Most Southernly point of Africa. Windswept but ruggedly beautiful place. By mid afternoon the tourists were arriving but at 7am we had the place to ourselves.','','','','','');
photos[422] = new photo(343185,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Robertson Campsite - 4461.jpg',600,835,'View from our front room (the tent)','http://www4.clikpic.com/planetbum/images/Robertson Campsite - 4461_thumb.jpg',130, 181,1, 0,'A fortuitous set of events led us to this wonderful campsite hidden away in the hinterland.<br>\r\n<br>\r\nI woke up before dawn and was greeted with this wonderful sight.','','','','','');
photos[423] = new photo(36450,'3803','','gallery','http://www4.clikpic.com/planetbum/images/127_2780 in prog.jpg',400,267,'Emporer\'s View - Zomba Plateau, Malawi','http://www4.clikpic.com/planetbum/images/127_2780 in prog_thumb.jpg',130, 87,0, 0,'A sweeping vista from Zomba Plateau in Malawi, Africa. Lake Chilwa is just visable on the horizon.<br>\r\n<br>\r\nAlthough taken a little later in the day than I would have liked, the dramatic clouds grabbed my attention. To lead the viewer into the picture I included the foreground rocks and some of the endless view.','','','','','');
photos[424] = new photo(35686,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Mountain and Flame Tree - 1.jpg',400,267,'Mulanje Massif, Malawi','http://www4.clikpic.com/planetbum/images/Mulanje - Mountain and Flame Tree - 1_thumb.jpg',130, 87,0, 0,'A blaze of primary colours with the green tea, red flame tree and deep blue sky.<br>\r\nI spent many hours wandering through the tea Mulanje tea estates photogrpaphing the mountain. I\'d waited patiently for several months for the flame trees to flower.','','','','','');
photos[425] = new photo(35675,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Lake and Beach at Sunset - 1.jpg',400,268,'Lake malawi - Sunset','http://www4.clikpic.com/planetbum/images/Lake Malawi - Lake and Beach at Sunset - 1_thumb.jpg',130, 87,0, 0,'Typical relaxed feel of Lake Malawi.','','','','','');
photos[426] = new photo(35697,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Nkhotakota - Dusty Sunset.jpg',400,267,'Dusty Sunset','http://www4.clikpic.com/planetbum/images/Nkhotakota - Dusty Sunset_thumb.jpg',130, 87,0, 0,'As we drove along the old road through Nkhotakota game reserve our car was throwing up clouds of dust. The low sun was sending shafts of light through the trees which lit the dust up. I got out quick and managed a couple of shots before the dust was blown away and the effect faded.','','','','','');
photos[427] = new photo(343337,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Rainbow - 4677.jpg',600,356,'Rainbow','http://www4.clikpic.com/planetbum/images/Rainbow - 4677_thumb.jpg',130, 77,0, 0,'As we drove though a shower this complete rainbow appeared and as soon as I saw a suitable place we pulled over to photograph it.','','','','','');
photos[428] = new photo(343338,'3803','','gallery','http://www4.clikpic.com/planetbum/images/(stellenbosch) reflection - 4336.jpg',600,363,'Mountain Reflection','http://www4.clikpic.com/planetbum/images/(stellenbosch) reflection - 4336_thumb.jpg',130, 79,0, 0,'','','','','','');
photos[429] = new photo(343339,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Robertson Campsite - 4440.jpg',600,347,'Campsite in the Wine Region, South Africa','http://www4.clikpic.com/planetbum/images/Robertson Campsite - 4440_thumb.jpg',130, 75,0, 0,'A beautiful campsite we were lucky enough to be directed to. I got up pre-dawn to photograph some of the jetties into a small lake.','','','','','');
photos[430] = new photo(343341,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Cape Town - Cosy Bay - 4235.jpg',600,399,'Cosy Bay, Cape town','http://www4.clikpic.com/planetbum/images/Cape Town - Cosy Bay - 4235_thumb.jpg',130, 86,0, 0,'A beautiful secluded spot that lived up to it\'s name!','','','','','');
photos[431] = new photo(35676,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Liwonde - Sunset - 2.jpg',400,265,'Sunset Over the Shire River','http://www4.clikpic.com/planetbum/images/Liwonde - Sunset - 2_thumb.jpg',130, 86,0, 0,'At the end of a Safari we pulled up at Muvuu Camp in Liwonde, were greeted by this stunning sunset.<br>\r\n<br>\r\nI took plenty of care at the waters edge knowing that there were plenty of Hippo\'s and crocodiles in the river.','','','','','');
photos[432] = new photo(343342,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Cape town - Lions head at Night - 4254.jpg',600,353,'Lions head at night, Cape town','http://www4.clikpic.com/planetbum/images/Cape town - Lions head at Night - 4254_thumb.jpg',130, 76,0, 0,'We cooked tea at a picnic spot after the sun had set. The road curved infront of us and the town lights were all on. I took a number of photographs to catch cars as the rounded the bend.','','','','','');
photos[433] = new photo(35681,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Chambe Peak - 2979.jpg',400,239,'Chambe Peak at Sunset - Mulanje, Malawi','http://www4.clikpic.com/planetbum/images/Mulanje - Chambe Peak - 2979_thumb.jpg',130, 78,0, 0,'This beautiful scene of Chambe peak was the view from behind our home in Mulanje.<br>\r\nThe striking light combines well with the short lived flowers.','','','','','');
photos[434] = new photo(35701,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Nyika - Walk to Chosi.jpg',400,267,'Rolling Hills, Nyika, Malawi','http://www4.clikpic.com/planetbum/images/Nyika - Walk to Chosi_thumb.jpg',130, 87,0, 0,'The meadows seem to stretch forever, the deep blue sky and white clouds almost makes each step a possible photograph.','','','','','');
photos[435] = new photo(35673,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Clouds At Dusk.jpg',400,267,'Lake Malawi - Dusk','http://www4.clikpic.com/planetbum/images/Lake Malawi - Clouds At Dusk_thumb.jpg',130, 87,0, 0,'The shores of Lake Malawi hold many gems, some are busy others more tranquil like this section of beach near mangochi','','','','','');
photos[436] = new photo(35707,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Zomba - William\'s Falls.jpg',400,269,'William\'s Falls, Zomba, Malawi','http://www4.clikpic.com/planetbum/images/Zomba - William\'s Falls_thumb.jpg',130, 87,0, 0,'Willaim\'s Falls in full glory.','','','','','');
photos[437] = new photo(343389,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Sousselvlei - 5872.jpg',600,302,'Sousselvlei','http://www4.clikpic.com/planetbum/images/Sousselvlei - 5872_thumb.jpg',130, 65,0, 0,'The huge red dunes of Sousselvlei are just incredible.','','','','','');
photos[438] = new photo(343399,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mountains - 4612.jpg',600,380,'Mountains - Klien Karoo, South Africa','http://www4.clikpic.com/planetbum/images/Mountains - 4612_thumb.jpg',130, 82,0, 0,'','','','','','');
photos[439] = new photo(343395,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Wine Region - 4514.jpg',600,399,'Route 62 - Wine Region, South Africa','http://www4.clikpic.com/planetbum/images/Wine Region - 4514_thumb.jpg',130, 86,1, 0,'This was the photograph I was looking for. The Autumnal vines with the white Dutch gabled house and the distant mountains. It sums up the wine region completely.','','','','','');
photos[440] = new photo(343396,'3803','','gallery','http://www4.clikpic.com/planetbum/images/(stellenbosch) Waterfall - 4314.jpg',600,399,'Waterfall','http://www4.clikpic.com/planetbum/images/(stellenbosch) Waterfall - 4314_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[441] = new photo(35696,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Thuchila Walk 24.jpg',400,274,'View from Mulanje Massif at Dusk','http://www4.clikpic.com/planetbum/images/Mulanje - Thuchila Walk 24_thumb.jpg',130, 89,0, 0,'After finishing a days hike on the massif it\'s time to','','','','','');
photos[442] = new photo(343403,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Swartberg Pass - 4598.jpg',600,902,'Bottom of Swartberg pass, South Africa','http://www4.clikpic.com/planetbum/images/Swartberg Pass - 4598_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[443] = new photo(35700,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Nyika - Walk to Chosi Peak - 3.jpg',400,600,'Nyika Plateau, Malawi','http://www4.clikpic.com/planetbum/images/Nyika - Walk to Chosi Peak - 3_thumb.jpg',130, 195,0, 0,'The gentle, rolling hills of Nyika plateau and stunning vistas make walking a treat. The rolling meadows are only broken by exposed rocks and small woods.<br>\r\n<br>\r\nThe horse lands of the Rohan from Lord of the Rings kept springing to mind as my partner and I took a walk to Chosi Peak.','','','','','');
photos[444] = new photo(35680,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Chambe (Tree Frame).jpg',400,600,'Chambe Peak - Mulanje, Malawi','http://www4.clikpic.com/planetbum/images/Mulanje - Chambe (Tree Frame)_thumb.jpg',130, 195,1, 1,'Chambe peak here is taken from in the tea estates and framed by the tree. The setting sun provides the fiery light.','','','','','');
photos[445] = new photo(35682,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Madzeka Falls - 3.jpg',400,600,'Madzeka Falls, Malawi','http://www4.clikpic.com/planetbum/images/Mulanje - Madzeka Falls - 3_thumb.jpg',130, 195,1, 0,'This the bottom of Madzeka falls on mount Mulanje in Malawi.<br>\r\n<br>\r\nJust getting to the falls takes a long day hike  climbing roughly 1500m. My guide picked a route through thick undergrowth to bring us to the foot of the falls.','','','','','');
photos[446] = new photo(35691,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Sunset - 3a.jpg',400,600,'Sunset - Mulanje, Malawi','http://www4.clikpic.com/planetbum/images/Mulanje - Sunset - 3a_thumb.jpg',130, 195,1, 0,'This dramatic and colourful sunset was a photograph all by itself.<br>\r\nTaken only a few hundred metres from our house in Mulanje I kept the horizon as low as possible to maximise the sky.','','','','','');
photos[447] = new photo(35683,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Madzeka Falls - 4.jpg',400,267,'Madzeka - Mulanje, Malawi','http://www4.clikpic.com/planetbum/images/Mulanje - Madzeka Falls - 4_thumb.jpg',130, 87,0, 0,'The cascade of the river at Madzeka has many waterfalls, small and large. The spray makes the area humid and the mosses and ferns are abundant.','','','','','');
photos[448] = new photo(35703,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Zomba - View From Chingwe\'s Hole - 1.jpg',400,267,'View From Chingwe\'s Hole, Zomba Plateau, Malawi','http://www4.clikpic.com/planetbum/images/Zomba - View From Chingwe\'s Hole - 1_thumb.jpg',130, 87,0, 0,'Warm, moist air from the lake rises at zomba and condenses to forms clouds. A boxing day hike through the rain gave only a few decent photo opportunities. I tried to get in as much of the drop in as I could. The edge of the cliff I was on was very similar to one in the picture and with the damp conditions I was not going any further than I did!','','','','','');
photos[449] = new photo(35694,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Thuchila Walk 22.jpg',400,242,'Storm Clouds Over Mulanje','http://www4.clikpic.com/planetbum/images/Mulanje - Thuchila Walk 22_thumb.jpg',130, 79,0, 0,'Mulanje massif is big enough to influence the weather.','','','','','');
photos[450] = new photo(35706,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Zomba - William\'s Falls - 2.jpg',400,267,'River Flow','http://www4.clikpic.com/planetbum/images/Zomba - William\'s Falls - 2_thumb.jpg',130, 87,0, 0,'This water flowing over a rock covered with richly coloured leaves caught my eye. Trying to create a minture lanscape I\'ve let the water blur so that the colours below are seen.','','','','','');
photos[451] = new photo(35690,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Stream by Madzeka Hut - 1.jpg',400,267,'Madzeka, Mulanje Massif','http://www4.clikpic.com/planetbum/images/Mulanje - Stream by Madzeka Hut - 1_thumb.jpg',130, 87,0, 0,'The small stream here sits above a beautiful waterfall. The spring water is always clear, drinkable and cold.','','','','','');
photos[452] = new photo(35692,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Tchila to Chisepo - Stream - 2.jpg',400,279,'Spring Water, Mulanje','http://www4.clikpic.com/planetbum/images/Mulanje - Tchila to Chisepo - Stream - 2_thumb.jpg',130, 91,0, 0,'Numerous streams can be found all over Mulanje mountain.<br>\r\n<br>\r\nThe complementry colours of the rocks, lichen and fallen leaves caught my eye while on a 4 day hike traversing the massif.','','','','','');
photos[453] = new photo(35702,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Zomba - Stream -1.jpg',400,267,'Woodland Stream','http://www4.clikpic.com/planetbum/images/Zomba - Stream -1_thumb.jpg',130, 87,0, 0,'This stream on Zomba Plateau had been dry on previous visits but the rains had transformed it.','','','','','');
photos[454] = new photo(35672,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Dedza - 6.jpg',400,267,'Dedza Mountains','http://www4.clikpic.com/planetbum/images/Dedza - 6_thumb.jpg',130, 87,0, 0,'Dedza is in the central region of Malawi and it\'s mountains are part of the rift valley running all of the way from Kenya.','','','','','');
photos[455] = new photo(35705,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Zomba - Waterfall - 2.jpg',400,625,'William Falls, Zomba Plateau, Malawi','http://www4.clikpic.com/planetbum/images/Zomba - Waterfall - 2_thumb.jpg',130, 203,0, 0,'This really half of a pair which together are called Willam\'s Falls.<br>\r\n<br>\r\nThe streaks of water are due to a long(ish) exposure time, it wasn\'t a windy day and so the branches have stayed sharp.','','','','','');
photos[456] = new photo(35677,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mua - Waterfall - 1.jpg',400,600,'Waterfalls at Mua Mission','http://www4.clikpic.com/planetbum/images/Mua - Waterfall - 1_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[457] = new photo(35679,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Alpines.jpg',400,600,'Mulanje Mountain','http://www4.clikpic.com/planetbum/images/Mulanje - Alpines_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[458] = new photo(662999,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Shire River Sunset - 5997.jpg',403,600,'Sunset Over Shire River, Malawi','http://www4.clikpic.com/planetbum/images/Shire River Sunset - 5997_thumb.jpg',130, 194,0, 0,'','','','','','');
photos[459] = new photo(35687,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Mountain from Tea - 1.jpg',400,267,'Mulanje Massif','http://www4.clikpic.com/planetbum/images/Mulanje - Mountain from Tea - 1_thumb.jpg',130, 87,0, 0,'This wide angle shows he main body of Mulanje (Chambe is off the picture to the left).','','','','','');
photos[460] = new photo(35699,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Nyika - Walk to Chosi - 1 (new).jpg',400,267,'Nyika Plateau, Malawi','http://www4.clikpic.com/planetbum/images/Nyika - Walk to Chosi - 1 (new)_thumb.jpg',130, 87,0, 0,'A view out across the plateau with a storm in the distance. The rolling hills are very different to other places in Malawi. The Plateau supports Roan antelope and Zebra as well as a small population of elusive leopards.','','','','','');
photos[461] = new photo(35688,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Mountain in the Rain - 2.jpg',400,267,'Storm Over Mulanje Massif','http://www4.clikpic.com/planetbum/images/Mulanje - Mountain in the Rain - 2_thumb.jpg',130, 87,0, 0,'During the rainy season the water pours off the mountain in a miriad of waterfalls.<br>\r\n<br>\r\nThis shot was taken just after we had come down from the mountain. A lucky escape!','','','','','');
photos[462] = new photo(35689,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Mountain in the Rain - 3.jpg',400,267,'Waterfalls on Mulanje Massif','http://www4.clikpic.com/planetbum/images/Mulanje - Mountain in the Rain - 3_thumb.jpg',130, 87,0, 0,'During this downpour the rain was running off one of the peaks in torrents. Sometimes we could hear the sounds of the numerous falls at our home - 5Km away!','','','','','');
photos[463] = new photo(35685,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Madzeka Falls.jpg',400,273,'Madzeka Falls - Mulanje, Malawi','http://www4.clikpic.com/planetbum/images/Mulanje - Madzeka Falls_thumb.jpg',130, 89,0, 0,'The bottom of a section of cascades and falls. The basin was cool in the shade but very humid. The spring water was cold but crystal clear.','','','','','');
photos[464] = new photo(35670,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Elephant Marsh - 1.jpg',400,176,'Elephant Marsh, Malawi','http://www4.clikpic.com/planetbum/images/Elephant Marsh - 1_thumb.jpg',130, 57,0, 0,'Although elephants did give the area it\'s name they are no longer found there.<br>\r\n<br>\r\nHowever for birds including rare waders there isn\'t many places like it.','','','','','');
photos[465] = new photo(35678,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Mualnje - Sunset from M Mission Hill - 1.jpg',400,177,'Sunset from Mulanje Mission Hill','http://www4.clikpic.com/planetbum/images/Mualnje - Sunset from M Mission Hill - 1_thumb.jpg',130, 58,0, 0,'The sunsets maybe over quickly near the equator but the they are as stunning as anywhere else. This wonderful vantage point was only minutes climb up a hill behind my house in Mulanje.','','','','','');
photos[466] = new photo(663889,'3803','','gallery','http://www4.clikpic.com/planetbum/images/Lightning - 9100.jpg',600,400,'Lightning Storm - Mozambique','http://www4.clikpic.com/planetbum/images/Lightning - 9100_thumb.jpg',130, 87,0, 0,'A thunder storm over the Mozambique coast. I looked for something to add to the photo rather than a blank beach and sky. I found these posts lining the beach which I think helps add depth to the photograph.<br>\r\nL>','','','','','');
photos[467] = new photo(35547,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boats at Senga Bay - 1.jpg',400,238,'Lake Malawi - Fishing Boats at Senga Bay','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boats at Senga Bay - 1_thumb.jpg',130, 77,0, 0,'The distinctive colours of the fishing boats denotes the ownership.<br>\r\n<br>\r\nSenga bay is a popular place on Lake Malawi. The boats are a lot larger than the normal dugout that is the usual style of fishing boat.','','','','','');
photos[468] = new photo(35548,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boats at Senga Bay - 3.jpg',400,578,'Lake Malawi - Fishing Boats at Senga Bay','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boats at Senga Bay - 3_thumb.jpg',130, 188,0, 1,'Clear colours repeated through perspective. The boldness of the view is brought to the fore by filling the frame.<br>\r\n<br>\r\nSenga bay is a popular place on Lake Malawi. The boats are a lot larger than the normal dugout that is the usual style of fishing boat.','','','','','');
photos[469] = new photo(35549,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boats at Senga Bay - 5.jpg',400,267,'Lake Malawi - Fishing Boats at Senga Bay','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boats at Senga Bay - 5_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[470] = new photo(35550,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boats at Senga Bay - 7.jpg',400,249,'Lake Malawi - Fishing Boats at Senga Bay','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boats at Senga Bay - 7_thumb.jpg',130, 81,0, 0,'The fishermen go out on the lake at night. Until it\'s dark they repair nets and get the boats ready, when all is done they have time to relax.','','','','','');
photos[471] = new photo(35551,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boats at Senga Bay - 8.jpg',400,255,'Lake Malawi - Fishing Boats at Senga Bay','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boats at Senga Bay - 8_thumb.jpg',130, 83,0, 0,'The boats are brought out of the water but left close enough to be easily put back for a nights fishing.','','','','','');
photos[472] = new photo(35552,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boy Fishing - 1.jpg',400,244,'Lake Malawi - Young Boy Washing Fishing Net','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boy Fishing - 1_thumb.jpg',130, 79,0, 0,'','','','','','');
photos[473] = new photo(35553,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boy on Fishing Boat - 1.jpg',400,267,'Lake Malawi - Young Man on Dugout Fishing Boat','http://www4.clikpic.com/planetbum/images/Lake Malawi - Boy on Fishing Boat - 1_thumb.jpg',130, 87,0, 0,'The dugout is a more traditional transport and fishing boat that is found through out Africa','','','','','');
photos[474] = new photo(35554,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Lower Shire - Upturned Lorry.jpg',400,265,'Malawi - Lower Shire - Upturned Lorry','http://www4.clikpic.com/planetbum/images/Lower Shire - Upturned Lorry_thumb.jpg',130, 86,0, 0,'We came across this lorry that had turned over with no obvious cause. The man scrathcing his head says it all!','','','','','');
photos[475] = new photo(35555,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Malawi Market - 21.jpg',400,267,'Malawi - Market Place','http://www4.clikpic.com/planetbum/images/Malawi Market - 21_thumb.jpg',130, 87,0, 0,'The colourful market with its pyramids of produce is a common sight on the side of the road. The organic food tastes good too!','','','','','');
photos[476] = new photo(35556,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Mangochi - Women Walking.jpg',400,309,'Malawi - Ladies Walking','http://www4.clikpic.com/planetbum/images/Mangochi - Women Walking_thumb.jpg',130, 100,0, 0,'','','','','','');
photos[477] = new photo(35557,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Market Scene.jpg',400,280,'Malawi - Market Place','http://www4.clikpic.com/planetbum/images/Market Scene_thumb.jpg',130, 91,0, 0,'The colourful market with its pyramids of produce is a common sight on the side of the road. The organic food tastes good too!','','','','','');
photos[478] = new photo(35558,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Butchers in River.jpg',400,600,'Malawi - Butchers at Work','http://www4.clikpic.com/planetbum/images/Mulanje - Butchers in River_thumb.jpg',130, 195,0, 0,'A stream from Mulanje Massif is used to clean the newly butchered pig before going to market.','','','','','');
photos[479] = new photo(35559,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Mulanje - Shop.jpg',400,267,'Malawi - Shop in Mulanje','http://www4.clikpic.com/planetbum/images/Mulanje - Shop_thumb.jpg',130, 87,0, 0,'A small kiosk at the foot of Mualnje Massif sells a selection of essentials from matches to vegetables.','','','','','');
photos[480] = new photo(35560,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Tiger - 3.jpg',400,602,'Tiger - Our Pet Dog','http://www4.clikpic.com/planetbum/images/Tiger - 3_thumb.jpg',130, 196,0, 0,'Our pet dog we had out in Malawi. A typical african village dog who loved to chase bicycles!<br>\r\n<br>\r\ngetting himto sit still for photos was not a viable option! It took many failed attempts before catching this striking portrait.','','','','','');
photos[481] = new photo(35561,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Tiger - Mulanje backdrop.jpg',400,258,'Tiger - King of the (Ant) Hill','http://www4.clikpic.com/planetbum/images/Tiger - Mulanje backdrop_thumb.jpg',130, 84,0, 0,'Tiger often accompanied me during my evening strolls. Usually he was not a problem except for chasing the odd bicycle.<br>\r\n<br>\r\nI was out looking for a landscape shot of Mulanje Mountain when Tiger ran up and sat on the anthill. Knowing he would never sit for long I grabbed a shot as quick as I could.','','','Mulanje, Malawi','','');
photos[482] = new photo(1794845,'3805','','gallery','http://www4.clikpic.com/planetbum/images/_MG_6687.jpg',500,349,'MG 6687','http://www4.clikpic.com/planetbum/images/_MG_6687_thumb.jpg',130, 91,0, 0,'','','','','','');
photos[483] = new photo(1794846,'3805','','gallery','http://www4.clikpic.com/planetbum/images/_MG_6710.jpg',332,500,'MG 6710','http://www4.clikpic.com/planetbum/images/_MG_6710_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[484] = new photo(662997,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Banana Leaf - 2718.jpg',380,600,'Banana Leaf','http://www4.clikpic.com/planetbum/images/Banana Leaf - 2718_thumb.jpg',130, 205,0, 0,'','','','','','');
photos[485] = new photo(663876,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Stone Town - Zanzibar - 2762.jpg',392,600,'Girl in Doorway - Stone town, Zanibar','http://www4.clikpic.com/planetbum/images/Stone Town - Zanzibar - 2762_thumb.jpg',130, 199,1, 0,'','','','','','');
photos[486] = new photo(663877,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Stone Town - Zanzibar - 2748.jpg',399,600,'Doorway - Stone Town, Zanzibar','http://www4.clikpic.com/planetbum/images/Stone Town - Zanzibar - 2748_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[487] = new photo(663878,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Kilwa - 2638.jpg',399,600,'Kilwa - Arabic Ruins off Tanzanian Coast','http://www4.clikpic.com/planetbum/images/Kilwa - 2638_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[488] = new photo(663880,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Kilwa - 2635.jpg',399,600,'Kilwa - Ruins off the Coast of Tanzania','http://www4.clikpic.com/planetbum/images/Kilwa - 2635_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[489] = new photo(663881,'3805','','gallery','http://www4.clikpic.com/planetbum/images/kilwa - 2616.jpg',399,600,'Kilwa - Arabic Ruins off Tanzanian Coast','http://www4.clikpic.com/planetbum/images/kilwa - 2616_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[490] = new photo(663883,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Kilwa - 2689.jpg',600,424,'Small Dhow - Tanzania','http://www4.clikpic.com/planetbum/images/Kilwa - 2689_thumb.jpg',130, 92,0, 0,'','','','','','');
photos[491] = new photo(663886,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Stone Town - Zanzibar - 2790.jpg',600,399,'Children Playing Marbles - Stown Town, Zanzibar','http://www4.clikpic.com/planetbum/images/Stone Town - Zanzibar - 2790_thumb.jpg',130, 86,0, 0,'Walking around Stone Town, Zanzibar I came across these children playing marbles - they were pretty good at it too!<br>\r\n<br>\r\nI let them take a few pictures of each other with my camera and then they returned to playing while I photographed them.','','','','','');
photos[492] = new photo(663887,'3805','','gallery','http://www4.clikpic.com/planetbum/images/Stone Town - Zanzibar - 2769.jpg',600,399,'Woman Shopping - Stown Town, Zanzibar','http://www4.clikpic.com/planetbum/images/Stone Town - Zanzibar - 2769_thumb.jpg',130, 86,0, 0,'I was sheltering from a down pour when the woman in the photograph came to buy vegetables.<br>\r\n<br>\r\nI was using a very wide angle lens to incluse the surroundings to give some idea of the cramped streets and over-hanging roofs dripping with rain.','','','','','');
photos[493] = new photo(35541,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - White Stork - 4183.jpg',400,600,'White Stork (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - White Stork - 4183_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[494] = new photo(35536,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - Red Panda - 3604.jpg',400,600,'Red Panda (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - Red Panda - 3604_thumb.jpg',130, 195,0, 1,'One of my favourite animals - the red panda is a particually good climber.','','','','','');
photos[495] = new photo(35532,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - Cheetah - 4002.jpg',400,263,'Cheetah (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - Cheetah - 4002_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[496] = new photo(35538,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - Tiger Portraits - 3561.jpg',400,242,'Lazing Tigers (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - Tiger Portraits - 3561_thumb.jpg',130, 79,0, 0,'Two of the Four Siberian Tigers basking in the sun.','','','','','');
photos[497] = new photo(35539,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - Tiger yawning - 3571.jpg',400,257,'Tiger Yawning (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - Tiger yawning - 3571_thumb.jpg',130, 84,0, 0,'The Tigers are having a well earned break from their heavy itinery!<br>\r\n<br>\r\nA long lens has ensured that the bars are not seen','','','','','');
photos[498] = new photo(35534,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - Penguin - 5150.jpg',400,264,'Rockhopper Penguins (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - Penguin - 5150_thumb.jpg',130, 86,0, 0,'The penguin enclosure at whipsnade zoo sits on the edge of the downs. The view is an expansive panorama.','','','','','');
photos[499] = new photo(35535,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - Penguin - 5160.jpg',400,267,'Rockhopper Penguin Portrait (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - Penguin - 5160_thumb.jpg',130, 87,0, 0,'Smallest of the crested penguins, so called because of the feathers on their heads.','','','','','');
photos[500] = new photo(35533,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - Marsh Harrier - 4145.jpg',400,267,'Harris Hawk in Flight (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - Marsh Harrier - 4145_thumb.jpg',130, 87,0, 0,'These marvelously agile birds of prey are fantastic to watch. This harrier was banking round to collect his prey from the falconer. The huge open tail feathers and large wings give him grace and maneuvorability.','','','','','');
photos[501] = new photo(35531,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - Blue and Gold Macaw - 4163.jpg',400,287,'Blue and Gold Macaw in Flight (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - Blue and Gold Macaw - 4163_thumb.jpg',130, 93,0, 0,'Macaws are not the most graceful of flyers but the amazing colours of the birds more than makes up for it.<br>\r\nThe shot was taken during a bird display at Whipsnade Zoo.','','','','','');
photos[502] = new photo(35537,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - Scarlet Macaw - 4172.jpg',400,218,'Scarlet Macaws in Flight (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - Scarlet Macaw - 4172_thumb.jpg',130, 71,0, 0,'These two Scarlet Macaws were part of the bird show at Whipsnade Zoo. They are noisy flyers and not particually graceful but never-the-less wonderful to watch. In this picture one of the Macaws is holding a feather in its beak.','','','','','');
photos[503] = new photo(35540,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - unk Duck - 4019.jpg',400,267,'Bahama Pintail or white cheeked pintail (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - unk Duck - 4019_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[504] = new photo(44701,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Butterfly Farm - 5849.jpg',400,292,'Butterfly - Stratford Butterfly Farm','http://www4.clikpic.com/planetbum/images/Butterfly Farm - 5849_thumb.jpg',130, 95,0, 0,'','','','','','');
photos[505] = new photo(44700,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Butterfly Farm - Postman - 5861.jpg',400,266,'Postman - Stratford Butterfly Farm','http://www4.clikpic.com/planetbum/images/Butterfly Farm - Postman - 5861_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[506] = new photo(44699,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Butterfly Farm - Hecales Longwing - 5882.jpg',400,284,'Hecales Longwing - Stratford Butterfly Farm','http://www4.clikpic.com/planetbum/images/Butterfly Farm - Hecales Longwing - 5882_thumb.jpg',130, 92,0, 0,'','','','','','');
photos[507] = new photo(44657,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Eagle Owl - Eye Close Up - 5988.jpg',400,266,'Eye to Eye','http://www4.clikpic.com/planetbum/images/Eagle Owl - Eye Close Up - 5988_thumb.jpg',130, 86,0, 0,'A close-up view of an Eagle Owl\'s eye. The eye is physically large and the iris and pupil are in constant motion, adjusting to the light. <br>\r\n<br>\r\nFor the opportunity to take such shots I must thank Kevin.','','','','','');
photos[508] = new photo(44668,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Gecko.jpg',400,266,'Leopard Gecko','http://www4.clikpic.com/planetbum/images/Gecko_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[509] = new photo(69354,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade Zoo - Short Clawed Otter - 7466.jpg',400,296,'Short Clawed Otter (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade Zoo - Short Clawed Otter - 7466_thumb.jpg',130, 96,0, 0,'','','','','','');
photos[510] = new photo(69355,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade Zoo - Short Clawed Otter - 9752.jpg',400,634,'Short Clawed Otter (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade Zoo - Short Clawed Otter - 9752_thumb.jpg',130, 206,0, 0,'','','','','','');
photos[511] = new photo(69350,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade - Flamingo Feeding Chick - 7184.jpg',400,602,'Flamingo Feeding Chick (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade - Flamingo Feeding Chick - 7184_thumb.jpg',130, 196,0, 0,'Highly commended photograph in ZSL 2006 photo competition','','','','','');
photos[512] = new photo(69359,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade Zoo - Scarlet Macaw - 7532.jpg',400,267,'Scarlet Macaws Flying (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade Zoo - Scarlet Macaw - 7532_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[513] = new photo(69360,'17632','','gallery','http://www4.clikpic.com/planetbum/images/Whipsnade Zoo - Scarlet Macaw - 7533.jpg',400,264,'Scarlet Macaws Flying (Whipsnade Zoo)','http://www4.clikpic.com/planetbum/images/Whipsnade Zoo - Scarlet Macaw - 7533_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[514] = new photo(35542,'3806','','gallery','http://www4.clikpic.com/planetbum/images/Water Drop - 4 (rotated).jpg',400,379,'Water Droplet','http://www4.clikpic.com/planetbum/images/Water Drop - 4 (rotated)_thumb.jpg',130, 123,0, 0,'The calmness belies what is really happening. A perfect example of seeing nature from another perspective, in this case of freezing time and motion.<br>\r\n<br>\r\nThis project was an interesting one. I took literally hundreds of captures to try and get the perfect shot. I stood over a blue bucket with a small syringe to control the drips. The colours of the ripples were altered by trying various backdrops behind the bucket.','','','','','');
photos[515] = new photo(35543,'3806','','gallery','http://www4.clikpic.com/planetbum/images/Water Drop - 7 (repaired).jpg',400,412,'Ripples','http://www4.clikpic.com/planetbum/images/Water Drop - 7 (repaired)_thumb.jpg',130, 134,0, 0,'This actaully is the aftermath of a drop but the concentric circles radiating out from the impact caught my eye. It\'s monochrome effect also adds to its power','','','','','');
photos[516] = new photo(35544,'3806','','gallery','http://www4.clikpic.com/planetbum/images/Water Drop - 10.jpg',400,395,'Water Drop','http://www4.clikpic.com/planetbum/images/Water Drop - 10_thumb.jpg',130, 128,1, 1,'A glimpsing moment caught in a fraction of a second.<br>\r\n<br>\r\nThis project was an interesting one. I took literally hundreds of captures to try and get the perfect shot. I stood over a blue bucket with a small syringe to control the drips.','','','','','');
photos[517] = new photo(35546,'3806','','gallery','http://www4.clikpic.com/planetbum/images/WD - 2.jpg',400,221,'Water Drop','http://www4.clikpic.com/planetbum/images/WD - 2_thumb.jpg',130, 72,0, 0,'A glimpsing moment caught in a fraction of a second.<br>\r\n<br>\r\nThis project was an interesting one. I took literally hundreds of captures to try and get the perfect shot. I stood over a blue bucket with a small syringe to control the drips.','','','','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(61796,'2829398','New Wildlight Photographs - August 2008','gallery');
galleries[1] = new gallery(63514,'2829398,1794852,1098686,663001,662977,343359,343334,343330,118488,44652,35737,35680,35548,35544,35536,35516','Wildlight Slideshows','gallery');
galleries[2] = new gallery(3802,'1794852,1098686,44652','UK - Wildlife','gallery');
galleries[3] = new gallery(3800,'118488,35516','UK - Landscape','gallery');
galleries[4] = new gallery(62617,'343359,35737','African Mammals','gallery');
galleries[5] = new gallery(3804,'','Africa - Wildlife','gallery');
galleries[6] = new gallery(62618,'663001,343334,343330','African Birds','gallery');
galleries[7] = new gallery(62619,'662977','Africa - Other Wildlife','gallery');
galleries[8] = new gallery(3803,'35680','Africa - Landscape','gallery');
galleries[9] = new gallery(3805,'35548','Travel','gallery');
galleries[10] = new gallery(17632,'35536','Exotic Wildlife - Zoo or Captive Animals','gallery');
galleries[11] = new gallery(3806,'35544','Other Projects','gallery');

