/***************************************************************************
* 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('2349662,2249548,2249546,1939509,1939500,1939368,1939353,1812566,1806294,1806292,1721140,1721019,1720992,1715931,1715929,1623050,1597699,1597691,1544525,1544444,1544337,1544312,1542935,1541510,1541457,1478082,1478047,1455635,1455479,1455433,1455423,1454805,1454761,1454713,1454704,1454647,1450463,1450444,1411266,1411156,1411140,1411089,1410995,1410943,1410929,1410895,1410884,1410866,1409502,1409488,1409476,1409466,1409410,1409405,1409368,1409358,1409257,1409141,1409130,1409116,1409097,1409074,1409071,1409069,1409064,1409042,1409006,1408672,1408670,1408668,1408667,1408664,1408661,1408653,1408614,1408522,1408521,1408515,1408514,1408512,1408508,1408503,1408501,1408499,1407402,1407398,1407392,1407380');
	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('2349662,2249548,2249546,1939509,1939500,1939368,1939353,1812566,1806294,1806292,1721140,1721019,1720992,1715931,1715929,1623050,1597699,1597691,1544525,1544444,1544337,1544312,1542935,1541510,1541457,1478082,1478047,1455635,1455479,1455433,1455423,1454805,1454761,1454713,1454704,1454647,1450463,1450444,1411266,1411156,1411140,1411089,1410995,1410943,1410929,1410895,1410884,1410866,1409502,1409488,1409476,1409466,1409410,1409405,1409368,1409358,1409257,1409141,1409130,1409116,1409097,1409074,1409071,1409069,1409064,1409042,1409006,1408672,1408670,1408668,1408667,1408664,1408661,1408653,1408614,1408522,1408521,1408515,1408514,1408512,1408508,1408503,1408501,1408499,1407402,1407398,1407392,1407380');
	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)) {
		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 + '" border="0">';
						field.value = photos[nextImg].id;
			document.getElementById('imageTitle').innerHTML = photos[nextImg].caption;
			document.title = 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(1407392,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Jul07_SWFranceBW075.jpg',600,402,'Lone Sunflower','http://www1.clikpic.com/kevyn/images/Jul07_SWFranceBW0751.jpg',130, 87,1, 0,'This isolated sunflower stood out above the surrounding corn field, although its colour was a little lost amongst the yellow of the arable crop. I decided that it would make an ideal image to combine monochrome and colour to emphasise its isolation.','','','Beauvais Sur Matha, France.','','');
photos[1] = new photo(1408503,'97558','','gallery','http://www1.clikpic.com/kevyn/images/31Jul07_A6187SurpriseView08.jpg',402,600,'Road Leading to Surprise View','http://www1.clikpic.com/kevyn/images/31Jul07_A6187SurpriseView081.jpg',87, 130,1, 0,'This sinuous and twisty road can be seen best from a vantage point within the Burbage Valley. It leads to a stunning view over Hope Valley which suddenly appears from around a sharp bend in the road.','','','Peak District, England.','','');
photos[2] = new photo(1408521,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Dusk Stroll Loch Lomond.jpg',394,600,'Evening Stroll','http://www1.clikpic.com/kevyn/images/Dusk Stroll Loch Lomond1.jpg',85, 130,1, 0,'Warm evening light & dramatic scenery; the perfect combination for a relaxing and tranquil post-dinner stroll.','','','Loch Lomond, Scotland.','','');
photos[3] = new photo(1408661,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Jul07_SWFrance178.jpg',600,400,'Barn & Sunflower Field','http://www1.clikpic.com/kevyn/images/Jul07_SWFrance1781.jpg',130, 87,1, 0,'A derelict farm building set in a sea of yellow shouted out to be photographed. The weather didn\'t want to play, but between showers this shot resulted.','','','Aigre, France.','','');
photos[4] = new photo(1408664,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Jul07_SWFrance192.jpg',402,600,'Hay Bales','http://www1.clikpic.com/kevyn/images/Jul07_SWFrance1921.jpg',87, 130,1, 0,'Isolating the bales with a long lens provided an interesting composition of this rural scene.','','','Beauvais Sur Matha, France.','','');
photos[5] = new photo(1409006,'97558','','gallery','http://www1.clikpic.com/kevyn/images/01Dec06_AnotherPlaceCrosby22_Un.jpg',600,395,'Anthony Gormley\'s \'Another Place\'','http://www1.clikpic.com/kevyn/images/01Dec06_AnotherPlaceCrosby22_Un1.jpg',130, 86,1, 0,'Gormley\'s art installation is a must-see. Spread over two kilometres of Crosby Beach, the scale of the work in its entirety is more impressive than the individual statues. A long lens and warm evening light allowed me to add to the atmosphere of Gormley\'s sculptures staring out to sea.','','','Crosby Beach, Merseyside, England.','','');
photos[6] = new photo(1409064,'97558','','gallery','http://www1.clikpic.com/kevyn/images/01Dec06_AnotherPlaceCrosby42_Un.jpg',396,600,'Sunset Over Gormley\'s \'Another Place\'','http://www1.clikpic.com/kevyn/images/01Dec06_AnotherPlaceCrosby42_Un1.jpg',86, 130,1, 0,'The west coast of Britain often sees dramatic sunsets. This scene of Crosby Beach was no different, with Gormley\'s statues providing foreground interest.','','','Crosby Beach, Merseyside, England.','','');
photos[7] = new photo(1409071,'97558','','gallery','http://www1.clikpic.com/kevyn/images/01Dec06_FormbyPoint54_Un.jpg',402,600,'Sea Shell Shadow On The Sea Shore!','http://www1.clikpic.com/kevyn/images/01Dec06_FormbyPoint54_Un1.jpg',87, 130,1, 0,'Being 100% honest, this is a set up photo. I found the mollusc shell and then found some suitably rippled sand as a \'studio\'. The back lit shell and raking shadow help make this one of my favourite shots.','','','Formby Point, England.','','');
photos[8] = new photo(1409097,'97558','','gallery','http://www1.clikpic.com/kevyn/images/22Dec06_CurbarEdge15.jpg',600,402,'Misty Morning','http://www1.clikpic.com/kevyn/images/22Dec06_CurbarEdge151.jpg',130, 87,1, 0,'An early morning to photograph the rising sun was initially scuppered by mist. A change of lens allowed me to focus on distant detail emerging from the thinning mist.','','','Ramsley Moor, Peak District, England.','','');
photos[9] = new photo(1409116,'97558','','gallery','http://www1.clikpic.com/kevyn/images/22Dec06_CurbarEdge37.jpg',402,600,'Frosty Morning Sunrise','http://www1.clikpic.com/kevyn/images/22Dec06_CurbarEdge371.jpg',87, 130,1, 0,'A very cold & early morning at Curbar Gap in the Peak District reaped its rewards.','','','Curbar Gap, Peak District, England.','','');
photos[10] = new photo(1409257,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Beach Combing_Un.jpg',600,387,'Beach Combing','http://www1.clikpic.com/kevyn/images/Beach Combing_Un1.jpg',130, 84,1, 0,'A warm summer\'s evening on Loch Lomond encouraged these holiday makers to comb the loch\'s rocky beach and skim stones.','','','Loch Lomond, Scotland.','','');
photos[11] = new photo(1409368,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Climbers_FroggatEdge_Un.jpg',402,600,'Vertical Ballet & Cloudscapes','http://www1.clikpic.com/kevyn/images/Climbers_FroggatEdge_Un1.jpg',87, 130,1, 0,'I was watching these climbers performing their delicate vertical moves, when the high level cirrus cloud drifted into shot.','','','Froggat Edge, Peak District, England.','','');
photos[12] = new photo(1408515,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Dune De Pyla France.jpg',383,600,'Dune De Pyla','http://www1.clikpic.com/kevyn/images/Dune De Pyla France1.jpg',83, 130,1, 1,'The Dune De Pyla in south-west France is the largest dune in Europe, and one impressive natural pile of sand. Towering over one hundred metres above the sea and being two kilometres long, it was perfectly possible to find some isolation to create a Sahara-esque scene in the raking evening light.','','','Arcachon, France.','','');
photos[13] = new photo(1454647,'97558','','gallery','http://www1.clikpic.com/kevyn/images/5Octt07_LightTrails12.jpg',402,600,'Light Trails','http://www1.clikpic.com/kevyn/images/5Octt07_LightTrails121.jpg',87, 130,1, 0,'The same twisting stretch of Peak District road as featured earlier in this gallery. Credit for this shot goes to my wife, Clare, who suggested that it would look good with traffic light trails - she was right. A dry autumnal evening, some patience, a bit of luck with the vehicle flow & a 30 second exposure led to a set of perfect red and white trails along the whole road.','','','South Yorkshire/Derbyshire Border, Peak District, England.','','');
photos[14] = new photo(1454704,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Baslow Edge Peak District UK.jpg',600,392,'Baslow Edge','http://www1.clikpic.com/kevyn/images/Baslow Edge Peak District UK1.jpg',130, 85,1, 0,'A cold, frosty morning at Baslow Edge in the Peak District offered fantastic, crystal clear clarity over the Derwent Valley. The boulder perched on the edge as if balanced precariously gave foreground interest to the picture\'s composition.','','','Baslow Edge, Peak District, England.','','');
photos[15] = new photo(1454805,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Loch Lomond Scotland.jpg',397,600,'Fishing','http://www1.clikpic.com/kevyn/images/Loch Lomond Scotland1.jpg',86, 130,1, 0,'A still and tranquil summer\'s evening on the eastern shore of Loch Lomond, I was walking along the shore trying to ignore the clouds of midges looking for shots in the warm light. I spotted this pair fishing from a boat out on the loch, and composed to capture the backlit clouds above the mountains to help add to the calm and relaxing air and feel of the picture.','','','Loch Lomond, Scotland.','','');
photos[16] = new photo(1409488,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Hot Air Ballon_Un.jpg',393,600,'A Balloon From A Balloon','http://www1.clikpic.com/kevyn/images/Hot Air Ballon_Un1.jpg',85, 130,1, 0,'I was lucky enough to win a ride in a hot air balloon and subsequently enjoyed the thrill of a mass take-off at the Bristol Balloon Fiesta. Obviously, this provided fantastic opportunities for air-to-air photography.','','','Somewhere over Bristol, England.','','');
photos[17] = new photo(1455423,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Millstone Curbar Edge Derbyshire.jpg',390,600,'Millstone','http://www1.clikpic.com/kevyn/images/Millstone Curbar Edge Derbyshire1.jpg',84, 130,1, 0,'Scattered throughout the Peak District, these massive millstones hewn from the local gritstone are a symbol of the Derbyshire national park. This example at Curbar Edge offered foreground interest for this photo, taken on a pleasant evening\'s stroll, which also has an interesting skyscape to balance the image.','','','Curbar Edge, Peak District, England.','','');
photos[18] = new photo(1455433,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Statue Silhouette Peak District UK.jpg',600,399,'Statue & Skyscape','http://www1.clikpic.com/kevyn/images/Statue Silhouette Peak District UK1.jpg',130, 86,1, 0,'Visiting Chatsworth House and its gardens one evening, this statue presented itself silhouetted (along with the stately home) against an almost apocalyptic sunset.','','','Chatsworth, Peak District, England.','','');
photos[19] = new photo(1455635,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Padley Gorge_2.jpg',600,399,'Autumnal Waterfall','http://www1.clikpic.com/kevyn/images/Padley Gorge_21.jpg',130, 87,1, 0,'Padley Gorge is a Peak District gem. The peaty stream at its bottom drains from the moors above Sheffield down through a hidden deciduous tree-lined valley. During autumn, the golden brown hues of the changing leaves add to its allure, and also make for photographic interest amongst the river\'s pools, eddies and waterfalls.','','','Padley Gorge, Peak District, England.','','');
photos[20] = new photo(1541510,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Apr07_NWScotland125.jpg',402,600,'Intrepid','http://www1.clikpic.com/kevyn/images/Apr07_NWScotland1252.jpg',87, 130,1, 0,'I wasn\'t sure whether I should put this image into my travel or landscape gallery. It was quite a journey getting to Ullapool in the far northwest of Scotland, but I don\'t see going home to Scotland as \'travel\' in its normal sense.<br />\r\n<br />\r\nUllapool has a busy working harbour at its heart, with a diverse range of photographic subjects to capture. This colourful fishing boat with its reflection in the still water was one of the more successful images I took when attempting to photograph the waterfront and its details. The boat\'s name sums up the hardy character of the trawler men who fish the seas around the northern Scottish coast.','','','Ullapool, Scotland.','','');
photos[21] = new photo(1542935,'97558','','gallery','http://www1.clikpic.com/kevyn/images/21Oct07_RoundhayPark04.jpg',600,394,'Autumn Park','http://www1.clikpic.com/kevyn/images/21Oct07_RoundhayPark041.jpg',130, 85,1, 0,'This photo was taken on a near perfect autumnal day; early mists burnt off as the sun rose, leaving deep blue skies and crystal clear light to bring out the golden colours of the turning leaves. The park was Roundhay in Leeds, an oasis of calm within a sprawling urban environment.','','','Roundhay Park, Leeds, West Yorkshire, England.','','');
photos[22] = new photo(1544312,'97558','','gallery','http://www1.clikpic.com/kevyn/images/Snowy Wall Peak District UK.jpg',394,600,'Snow Plastered Wall','http://www1.clikpic.com/kevyn/images/Snowy Wall Peak District UK1.jpg',85, 130,1, 0,'Descending from a photogenic rock outcrop called the Salt Cellar, the footpath took me past this dry stone wall covered in wind driven snow. The fading winter light lent a very cold feel to the photo, and although the final image is bluer than I remember, it is chillingly atmospheric.','','','Near Derwent Edge, Peak District, Derbyshire, England.','','');
photos[23] = new photo(1407402,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Ground Zero New York.jpg',401,600,'New York Taxi Passing \'Ground Zero\' Graffiti','http://www1.clikpic.com/kevyn/images/Ground Zero New York_thumb.jpg',87, 130,1, 0,'The graffiti stood out against the black tarmac beside New York\'s infamous Ground Zero site. Using the daubed message as foreground, I decided to try and capture another Big Apple icon by including a passing yellow cab.','','','New York, United States.','','');
photos[24] = new photo(1408508,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Abstract New York.jpg',396,600,'Brooklyn Bridge Abstract','http://www1.clikpic.com/kevyn/images/Abstract New York1.jpg',86, 130,1, 0,'An abstract formed by shadows from the suspension wires of New York\'s Brooklyn Bridge being cast onto the wooden decking of the bridge\'s pedistrian board walk.','','','New York, United States.','','');
photos[25] = new photo(1408512,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Central Station New York.jpg',458,600,'Waiting','http://www1.clikpic.com/kevyn/images/Central Station New York1.jpg',99, 130,1, 0,'New York\'s Grand Central has a cavernous lobby lit with beguiling light from huge windows. The sunlight casts interesting long shadows as people go about their busy daily lives. This waiting person had sufficient space around them for their shadow to provide a focal point for the picture.','','','New York, United States.','','');
photos[26] = new photo(1409502,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Lighthouse&storm_Un.jpg',600,400,'Building Storm','http://www1.clikpic.com/kevyn/images/Lighthouse&storm_Un1.jpg',130, 87,1, 1,'A massive thunder storm was brewing over Zante providing an awesome natural backdrop to this lighthouse at the northern tip of the island.','','','Zykanthos, Greece.','','');
photos[27] = new photo(1408670,'97798','','gallery','http://www1.clikpic.com/kevyn/images/KLCC Roof 2 UN.jpg',393,600,'Petronas Towers','http://www1.clikpic.com/kevyn/images/KLCC Roof 2 UN1.jpg',85, 130,1, 0,'Kuala Lumpur\'s KLCC shopping centre lies at the foot of the huge Petronas Towers. By craning neck & camera, its glass roof provides a semi-abstract & unorthodox view of the city\'s twin towers.','','','Kuala Lumpur, Malaysia','','');
photos[28] = new photo(1409405,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Feb07_Italy133.jpg',396,600,'Old Lady & Portico','http://www1.clikpic.com/kevyn/images/Feb07_Italy1331.jpg',86, 130,1, 0,'Bologna\'s Portico di San Luca is the longest continuous arcade in the world. Although very photogenic in its own right, I felt this picture was improved by composing with the Italian lady out shopping in the foreground.','','','Bologna, Italy.','','');
photos[29] = new photo(1409410,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Feb07_Italy166.jpg',402,600,'\'Red\' Bologna','http://www1.clikpic.com/kevyn/images/Feb07_Italy1661.jpg',87, 130,1, 0,'Bologna is often known as Red Bologna. This aerial view from the city\'s Torre degli Asinelli demonstrates why. The diagonal shadowed street adds to the view\'s appeal.','','','Bologna, Italy.','','');
photos[30] = new photo(1409466,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Greek_church_Un.jpg',402,600,'Bell Tower','http://www1.clikpic.com/kevyn/images/Greek_church_Un1.jpg',87, 130,1, 0,'The brilliant white of this Greek bell tower contrasts perfectly with the deep blue Mediterranean sky.','','','Zykanthos, Greece.','','');
photos[31] = new photo(1409476,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Greek_pensioners_Un.jpg',600,400,'Watching The World Pass By...','http://www1.clikpic.com/kevyn/images/Greek_pensioners_Un1.jpg',130, 87,1, 0,'Learning the Greek for \"Photograph please?\" earnt a result with these two village characters.','','','Zykanthos, Greece.','','');
photos[32] = new photo(1410884,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Masai Child_Un.jpg',379,600,'Maasai Child','http://www1.clikpic.com/kevyn/images/Masai Child_Un1.jpg',82, 130,1, 0,'Visiting a Maasai village, I trailed behind the main \'tourist\' group and was presented with this opportunity to photograph one of the less outgoing members of the tribe.','','','Near Tsavo, Kenya.','','');
photos[33] = new photo(1410929,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Starfish_window_Un.jpg',600,402,'Greek Villa Detail','http://www1.clikpic.com/kevyn/images/Starfish_window_Un1.jpg',130, 87,1, 0,'Exploring Zante by quad, I stumbled across a surreal but modern villa. The false window pictured was a stunning design with its starfish detail, which when isolated forms a striking image.','','','Zakynthos, Greece.','','');
photos[34] = new photo(1410895,'97798','','gallery','http://www1.clikpic.com/kevyn/images/ShipwreckCove_Zakynthos2_Un.jpg',402,600,'Shipwreck Cove','http://www1.clikpic.com/kevyn/images/ShipwreckCove_Zakynthos2_Un1.jpg',87, 130,1, 0,'Visiting one of Zakynthos\'s more popular tourist attractions, I wandered away from the viewpoint over Shipwreck Cove at Navagio and was presented with this colourful vista for my efforts.','','','Zakynthos, Greece.','','');
photos[35] = new photo(1454713,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Cats Kuala Lumpur.jpg',399,600,'Cats','http://www1.clikpic.com/kevyn/images/Cats Kuala Lumpur1.jpg',86, 130,1, 0,'Walking the nighttime streets of Kuala Lumpur, I came across this moped draped in cats and kittens. It was a mobile charity stall for a local cat home (or so I was told - if anyone can translate the Malay signs & tell me different..!). I offered a contribution and then took this picture with a kitten posing naturally using its bigger companion as a pillow.','','','Kuala Lumpur, Malaysia.','','');
photos[36] = new photo(1455479,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Surfer English Gardens Munich.jpg',392,600,'Surfer','http://www1.clikpic.com/kevyn/images/Surfer English Gardens Munich1.jpg',85, 130,1, 0,'Believe it or not, this surfer was doing his stuff in the middle of a park in a major inland German city! Munich’s English Gardens has a fast flowing river running through the centre of it, with a standing wave acting as a huge white water draw for surfers and kayakers. Behind my camera position on a bridge was six lanes of city centre traffic. Trees were shading part of the river, so I had to time my shot to capture the surfer as he tracked into the sunlight.','','','Munich, Germany.','','');
photos[37] = new photo(1450463,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Night Skyline New York.jpg',600,398,'Brooklyn Bridge Light Trails','http://www1.clikpic.com/kevyn/images/Night Skyline New York1.jpg',130, 86,1, 0,'I visited this location with the hope of capturing this image. A pedestrian boardwalk crosses Brooklyn Bridge to offer this vista of Lower Manhattan. Halfway across, viewpoints allow you to stand over the road below. I steadied my camera on a beanbag to minimise vibrations from the passing traffic & took the shot.','','','New York, United States.','','');
photos[38] = new photo(1478047,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Feb07_Italy020.jpg',600,402,'Lantern & Shadow','http://www1.clikpic.com/kevyn/images/Feb07_Italy0201.jpg',130, 87,1, 0,'The evening sun was setting and casting a raking shadow from the ornate lantern onto the orange wall. I loved the mirrored image and framed accordingly. The single, but bright, colour of the background lends the picture a simple feel.','','','Florence, Italy.','','');
photos[39] = new photo(1544337,'97798','','gallery','http://www1.clikpic.com/kevyn/images/ShipwreckCove_Zakynthos5.jpg',600,402,'Shipwreck Cove','http://www1.clikpic.com/kevyn/images/ShipwreckCove_Zakynthos51.jpg',130, 87,1, 0,'Finding this bay proved entertaining. Having opted to \'go it alone\' and scorn the tourist excursions, the absence of signposts almost put paid to this scene being photographed. Having found the right bit of cliff, I skirted the edge to try and get a different view to that commonly seen on postcards.<br />\r\n<br />\r\nI love the contrasting white, green and aqua blue colours. The limestone cliffs provide natural framing for the shipwreck, and after a couple of visits I had worked out the best time to minimise the shade on the wrecked focal point.','','','Shipwreck Cove, Navagio, Zykanthos, Greece.','','');
photos[40] = new photo(1544525,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Feb07_Italy100.jpg',600,400,'Portico','http://www1.clikpic.com/kevyn/images/Feb07_Italy1001.jpg',130, 87,1, 0,'Florence is not as famous for its porticos (arcades) as Bologna, but they certainly feature prominently in some of the city\'s architecture.<br />\r\n<br />\r\nI climbed onto a wall to allow me to compose the tunnel of arches at eye level. My elevated viewpoint also allowed me to exclude the hordes of tourists walking along the riverside portico.','','','Florence, Italy.','','');
photos[41] = new photo(1806292,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Jan08_HongKong+China282.jpg',399,600,'Backlit Chinese Flag','http://www1.clikpic.com/kevyn/images/Jan08_HongKong+China282_thumb.jpg',86, 130,1, 0,'The sun glaring off the glass of this skyscraper was producing a strange ray like effect. A photograph of this light display on its own would look odd, so I looked for some ground level foreground interest. The vibrant red of the chinese national flag against the blue sky did the trick.','','','Hong Kong Island, Peoples\' Republic of China.','','');
photos[42] = new photo(1812566,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Jan08_HongKong+China345.jpg',398,600,'Power Nap','http://www1.clikpic.com/kevyn/images/Jan08_HongKong+China345_thumb.jpg',86, 130,1, 0,'On a warm winter\'s afternoon, this chap was oblivious to the world around him as he had his afternoon power nap on a park bench. This sort of image is repeated in cities the world over; this one just happened to be a perfect travel photograph representing city life in Hong Kong.','','','Kowloon Park, Hong Kong, Peoples\' Republic of China.','','');
photos[43] = new photo(2249546,'97798','','gallery','http://www1.clikpic.com/kevyn/images/Jan08_HongKong+China227.jpg',600,398,'Hong Kong Nightscape','http://www1.clikpic.com/kevyn/images/Jan08_HongKong+China227_thumb.jpg',130, 86,1, 0,'The view from Hong Kong\'s Victoria Peak is quite awesome. I had headed to the island\'s summit mid-afternoon with the intention of photographing the view by day. Low grey cloud put paid to this plan, so patience kicked in and I waited for nightfall. The wait was worthwhile, as I hope this photo shows.','','','Victoria Peak, Hong Kong Island, China.','','');
photos[44] = new photo(1407380,'97802','','gallery','http://www1.clikpic.com/kevyn/images/19Sept07_Edinburgh05.jpg',402,600,'The Scottish Parliament','http://www1.clikpic.com/kevyn/images/19Sept07_Edinburgh051.jpg',87, 130,1, 1,'The Scottish Parliament building is one of Britain\'s more intriguing political constructions. It offers the viewer a multi-faceted facade, whilst representing the latest culmination of hundreds of years of Scottish history. The high level cirrus cloud that drifted into the picture provided a soft background to the stark and angular lines of the building\'s architecture.','','','Edinburgh, Scotland.','','');
photos[45] = new photo(1410943,'97802','','gallery','http://www1.clikpic.com/kevyn/images/WireShadowAbstract_Un.jpg',402,600,'Wire Fence & Shadow','http://www1.clikpic.com/kevyn/images/WireShadowAbstract_Un1.jpg',87, 130,1, 0,'One of those \'Sitting soaking up the sun & then you notice a picture in front of you\' kinda images. The harsh light and shadows begged for a monochrome treatment.','','','Clay Cross, England.','','');
photos[46] = new photo(1408668,'97802','','gallery','http://www1.clikpic.com/kevyn/images/Jun07_Glasgow02.jpg',402,600,'Cloisters','http://www1.clikpic.com/kevyn/images/Jun07_Glasgow021.jpg',87, 130,1, 0,'The arches of Glasgow University\'s cloisters are an architectural delight to photograph and particularly suit the mood of mono.','','','Glasgow, Scotland.','','');
photos[47] = new photo(1409042,'97802','','gallery','http://www1.clikpic.com/kevyn/images/01Dec06_AnotherPlaceCrosby38_Un.jpg',600,402,'Anthony Gormley\'s \'Another Place\'','http://www1.clikpic.com/kevyn/images/01Dec06_AnotherPlaceCrosby38_Un1.jpg',130, 87,1, 0,'The vehicle tracks caught my eye, which when coupled with one of Gormley\'s statues produced a scene begging to be portrayed in monochrome.','','','Crosby Beach, Merseyside, England.','','');
photos[48] = new photo(1408667,'97802','','gallery','http://www1.clikpic.com/kevyn/images/Jun07_Glasgow01.jpg',402,600,'Cloisters','http://www1.clikpic.com/kevyn/images/Jun07_Glasgow011.jpg',87, 130,1, 0,'The arches of Glasgow University\'s cloisters are an architectural delight to photograph and particularly suit the mood of mono.','','','Glasgow, Scotland.','','');
photos[49] = new photo(1450444,'97802','','gallery','http://www1.clikpic.com/kevyn/images/Roof Barcelona Spain.jpg',600,388,'Spanish Rooftops','http://www1.clikpic.com/kevyn/images/Roof Barcelona Spain_thumb.jpg',130, 84,1, 0,'These rooftops are located beside the stunning La Sagrada Familia cathedral in Barcelona. Whilst the tourists pointed their cameras at Gaudi\'s surreal design, I found myself facing 180 degrees the other way with my lens trained on the curves of this building. The contrast of the sunlit roofs against the shaded walls particularly suited B&W.','','','Barcelona, Spain.','','');
photos[50] = new photo(1408499,'97802','','gallery','http://www1.clikpic.com/kevyn/images/19Sept07_Edinburgh15.jpg',400,600,'The Scottish Parliament','http://www1.clikpic.com/kevyn/images/19Sept07_Edinburgh151.jpg',87, 130,1, 0,'The Scottish Parliament building is one of Britain\'s more intriguing political constructions. It offers the viewer a multi-faceted facade, whilst representing the latest culmination of hundreds of years of Scottish history. The black and white mono treatment suited the building\'s stark lines and background cirrus cloud.','','','Edinburgh, Scotland.','','');
photos[51] = new photo(1409358,'97802','','gallery','http://www1.clikpic.com/kevyn/images/Bulb_Un.jpg',402,600,'Bulb Tree Sculpture','http://www1.clikpic.com/kevyn/images/Bulb_Un1.jpg',87, 130,1, 0,'This sculpture in the grounds of Longleat House gave some interesting distorted close-ups. The grey overcast day dictated black and white as a must.','','','Longleat, England.','','');
photos[52] = new photo(1721019,'97802','','gallery','http://www1.clikpic.com/kevyn/images/03Nov07_Sheffield59BW.jpg',402,600,'Winter Gardens Architecture','http://www1.clikpic.com/kevyn/images/03Nov07_Sheffield59BW_thumb.jpg',87, 130,1, 0,'A mono version of a colour photograph (please see my <a target=\"_blank\" href=\"http://www.kevynburns.com/photo_1720992.html\">Urban Grit gallery</a> for the colour original). I couldn\'t decide whether the wood grain looked best in colour or black and white, so I have decided to publish both! In time, I will decide on my favourite and remove one of the photos. Until then, feel free to pass your own judgement.','','','Winter Gardens, Sheffield, South Yorkshire, England.','','');
photos[53] = new photo(1409069,'97802','','gallery','http://www1.clikpic.com/kevyn/images/01Dec06_FormbyPoint06_Un.jpg',402,600,'Tyre Track','http://www1.clikpic.com/kevyn/images/01Dec06_FormbyPoint06_Un1.jpg',87, 130,1, 0,'Tyre track. Rippled sand. Contrast. No more, no less.','','','Formby Point Beach, England.','','');
photos[54] = new photo(1478082,'97802','','gallery','http://www1.clikpic.com/kevyn/images/Boat Detail.jpg',600,403,'Propeller','http://www1.clikpic.com/kevyn/images/Boat Detail_thumb.jpg',130, 87,1, 0,'Lindisfarne (or Holy Island) is a photographer\'s delight. Accessed via a tidal causeway, its abbey, castle and coast offer a wealth of subject matter. This fishing boat propeller caught my eye; the lines of the boat\'s wooden plank construction provided an interesting background. Symmetrical framing was essential for the photo to work.','','','Lindasfarne (Holy Island), England.','','');
photos[55] = new photo(1541457,'97802','','gallery','http://www1.clikpic.com/kevyn/images/Fern.jpg',600,443,'Fern Frond','http://www1.clikpic.com/kevyn/images/Fern1.jpg',130, 96,1, 0,'This bracken fern is found in abundance in Derbyshire\'s woodlands and on its less exposed moors. End-on, the frond is a delicate and intricate structure. The careful use of depth of field allowed me to isolate a section of the frond to provide a focal point. Due to the dim light amongst the undergrowth, a fast, and subsequently grainy black and white film was used to produce this moody, natural abstract.','','','Padley Gorge, Peak District, Derbyshire, England.','','');
photos[56] = new photo(1544444,'97802','','gallery','http://www1.clikpic.com/kevyn/images/Jan08_HongKong+China192.jpg',600,398,'Jardines House','http://www1.clikpic.com/kevyn/images/Jan08_HongKong+China192_thumb.jpg',130, 86,1, 0,'Jardines House was one of Hong Kong\'s first true skyscraper buildings. Up close, it offers all sorts of creative and unusual views with its many circular \'porthole\' style windows. This particular photo presents a \"Can you guess what it is?\" perspective to what is simply an architectural view. The original image had so little colour that I decided to convert it to mono; it works better as a true black and white adding to the simplicity of the picture.<br />\r\n<br />\r\nIncidentally, local residents (with a habit of nicknaming everything) call the building The House of a Thousand Arseholes, allegedly a reference to both the windows and the employees contained within!','','','Hong Kong Island, Peoples\' Republic of China.','','');
photos[57] = new photo(1597699,'97802','','gallery','http://www1.clikpic.com/kevyn/images/03Nov07_Sheffield12.jpg',402,600,'Water Curtain','http://www1.clikpic.com/kevyn/images/03Nov07_Sheffield121.jpg',87, 130,1, 0,'Sheaf Square in Sheffield has undergone major transformation. Investment in the former \'Steel City\' has gradually given it a new facade. Heavy industry no longer dominates, and a modern, welcoming city centre now presents itself to the visitor. Sheaf Square greets rail users as they exit the train station with its curving stepped fountains, curtains of water and water-draped steel wall. A long lens allowed abstracts to be picked out from the square\'s architecture. I felt that this striped wall of water suited a mono finish; the end picture is an abstract full of contrast, shape and tone.','','','Sheaf Square, Sheffield, South Yorkshire, England.','','');
photos[58] = new photo(1939500,'97802','','gallery','http://www1.clikpic.com/kevyn/images/26Feb08_SelfridgesBW07.jpg',600,398,'Selfridges','http://www1.clikpic.com/kevyn/images/26Feb08_SelfridgesBW07_thumb.jpg',130, 86,1, 0,'Birmingham\'s city centre was transformed with the opening of the Bullring retail development in 2003. Its centre piece is Selfridges, with its silver aluminium disc cladding standing out on the city\'s skyline. The curves of the building\'s architecture beg to be photographed, and as an urban subject, suit both colour and mono superbly. One of my colour images of Selfridges may be found <a href=\"http://www.kevynburns.com/photo_1939509.html\">here</a>.','','','Bullring, Birmingham, England.','','');
photos[59] = new photo(1407398,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Flamingo 1 UN.jpg',600,391,'Resting Greater Flamingo','http://www1.clikpic.com/kevyn/images/Flamingo 1 UN1.jpg',130, 85,1, 1,'<i>Phoenicopterus roseus</i> - Taken in Kuala Lumpur\'s huge free flight aviary, tight framing helps to emphasise the bird\'s piercing yellow eye as it tucks its beak under a wing.','','','Kuala Lumpur, Malaysia.','','');
photos[60] = new photo(1715929,'97800','','gallery','http://www1.clikpic.com/kevyn/images/01Dec07_GreySeal152.jpg',600,402,'Grey Seal Pup & Mother','http://www1.clikpic.com/kevyn/images/01Dec07_GreySeal152_thumb.jpg',130, 87,1, 0,'<i>Halichoerus grypus</i> - This photograph was taken at Donna Nook in early December, an optimum time for young grey seal pups. A new lens with a longer focal length allowed me to capture this intimate moment between the pup and it\'s parent.','','','Donna Nook, Lincolnshire, England.','','');
photos[61] = new photo(1410995,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Orang 7_UN.jpg',600,579,'Who Are You Looking At?','http://www1.clikpic.com/kevyn/images/Orang 7_UN1.jpg',130, 125,1, 0,'<i>Pongo pygmaeus</i> - A young orang (with attitude) in the Rasa Ria orang-utan sanctuary in Borneo. I cannot stress enough how endangered these guys are by human activity. Seeing Borneo\'s rainforest destruction from the air was a sobering experience.','','','Kota Kinabalu, Borneo, Malaysia.','','');
photos[62] = new photo(1408522,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Gulls New York.jpg',600,395,'Resting Gulls','http://www1.clikpic.com/kevyn/images/Gulls New York1.jpg',130, 86,1, 0,'<i>Larus delawarensis</i> - This line of ring-billed gulls stood out clearly against the darkened backdrop of Manhattan. I chose to focus on the most prominent bird and allow the depth of field to draw the eye along the railing and into the composition.','','','Liberty Island, New York, United States.','','');
photos[63] = new photo(1411156,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Orang Limbs_UN.jpg',600,392,'Orang Limbs','http://www1.clikpic.com/kevyn/images/Orang Limbs_UN1.jpg',130, 85,1, 0,'<i>Pongo pygmaeus</i> - Visiting Sepilok\'s orang-utan sanctuary, a hairy abstract presented itself to me in the form of dangling, orange, furry limbs.','','','Sepilok, Borneo, Malaysia.','','');
photos[64] = new photo(1408653,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Jul07_SWFrance018.jpg',600,400,'Bumble Bee & Sunflower','http://www1.clikpic.com/kevyn/images/Jul07_SWFrance0181.jpg',130, 87,1, 0,'<i>Bombus terrestris & Helianthus annuus</i> - The intention was to capture the bee flying towards the flower head. As I discovered, that proved to be easier said than done!','','','Beauvais Sur Matha, France.','','');
photos[65] = new photo(1408672,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Zebra Abstract.jpg',600,391,'Zebra Abstract','http://www1.clikpic.com/kevyn/images/Zebra Abstract1.jpg',130, 85,1, 0,'<i>Equus grevyi</i> - Taken at the photographer-friendly Marwell Zoo, a long lens allowed close cropping to provide a less conventional stripy view.','','','Marwell Zoo, England.','','');
photos[66] = new photo(1411140,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Orang 28_UN.jpg',600,391,'Boo!','http://www1.clikpic.com/kevyn/images/Orang 28_UN1.jpg',130, 85,1, 0,'<i>Pongo pygmaeus</i> - Who\'s looking at who? An inquistive young orang.','','','Kota Kinabalu, Borneo, Malaysia.','','');
photos[67] = new photo(1409130,'97800','','gallery','http://www1.clikpic.com/kevyn/images/30Dec06_GreySealsDonnaNook074.jpg',600,402,'Contented','http://www1.clikpic.com/kevyn/images/30Dec06_GreySealsDonnaNook0741.jpg',130, 87,1, 0,'<i>Halichoerus grypus</i> - Donna Nook on the Lincolnshire coast is a fantastic location for the wildlife photographer. Despite the RAF using it as a bombing range through the week, grey seals congregate on the sand banks in vast numbers. A cautious and considered approach so as not to stress the animals, will offer the photographer many opportunities for a range of animal portraiture.','','','Donna Nook, England.','','');
photos[68] = new photo(1411089,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Orang 10_UN.jpg',392,600,'Juvenile Orang (with bunch of entertaining sticks!)','http://www1.clikpic.com/kevyn/images/Orang 10_UN1.jpg',85, 130,1, 0,'<i>Pongo pygmaeus</i> - How much fun can one young orangutan gain from a bunch of sticks? Lots from what I witnessed!','','','Kota Kinabalu, Borneo, Malaysia.','','');
photos[69] = new photo(1410866,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Long Tailed Macaque 2 UN.jpg',600,405,'Long Tailed Macaque','http://www1.clikpic.com/kevyn/images/Long Tailed Macaque 2 UN1.jpg',130, 88,1, 0,'<i>Macaca fascicularis</i> - Shot (photographically) from a boat on the Kinabatangan River in Borneo, this wee chap showed his indifference to us by having a good old scratch as we motored by.','','','Kinabatangan River, Sabah, Borneo, Malaysia.','','');
photos[70] = new photo(1715931,'97800','','gallery','http://www1.clikpic.com/kevyn/images/01Dec07_GreySeal148.jpg',600,402,'\'Two Tone\' Grey Seal','http://www1.clikpic.com/kevyn/images/01Dec07_GreySeal148_thumb.jpg',130, 87,1, 0,'<i>Halichoerus grypus</i> - This female grey seal had been sleeping on wet sand, when she decided to sit up to have a look at the strange photographer chap pointing a lens at her. Where the sun and wind had dried her uppermost side, an amusing two tone portrait presented itself.  Having decided I was quite boring to look at, she settled back down to sleep again.','','','Donna Nook, Lincolnshire, England.','','');
photos[71] = new photo(1409141,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Apr07_NWScotland029.jpg',402,600,'Curious Young Red Deer','http://www1.clikpic.com/kevyn/images/Apr07_NWScotland0291.jpg',87, 130,1, 0,'<i>Cervus elaphus</i> - I came across this young deer whilst climbing Stac Pollaidh in Scotland\'s north-west Highlands. My camera was buried in my rucksack due to the foul weather, but as the deer seemed to be as interested in me as I was in it, I managed to slowly retrieve my SLR. I had a wide angle fitted, but as he was so close it gave me the opportunity to photograph him in his environment.','','','Stac Pollaidh, Scotland.','','');
photos[72] = new photo(1409074,'97800','','gallery','http://www1.clikpic.com/kevyn/images/9Feb07_RedGrouse01.jpg',600,402,'Red Grouse','http://www1.clikpic.com/kevyn/images/9Feb07_RedGrouse011.jpg',130, 87,1, 0,'<i>Lagopus lagopus scoticus</i> - A sudden cold snap inspired me to go out to photograph red grouse at Derwent Edge. The brown plummage of the grouse meant they stuck out like sore thumbs. An incoming blizzard put paid to my day\'s photography with both the grouse & myself hunkering down to keep warm.','','','Derwent Edge, Peak District, England.','','');
photos[73] = new photo(1411266,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Orangutan 2 UN.jpg',600,403,'Juvenile Orang','http://www1.clikpic.com/kevyn/images/Orangutan 2 UN1.jpg',130, 87,1, 0,'<i>Pongo pygmaeus</i> - Usually in wildlife photography, your subject is always too far away. Not in this case. This youngster didn\'t understand the concept of focusing limitations and kept coming closer. A picture taken on the hoof (backwards).','','','Kota Kinabalu, Borneo, Malaysia.','','');
photos[74] = new photo(1408614,'97800','','gallery','http://admin.clikpic.com/kevyn/images/Jul07_Swallow002.jpg',600,400,'Swallow Enjoying A Cooling Dip','http://admin.clikpic.com/kevyn/images/Jul07_Swallow002_thumb.jpg',130, 87,1, 0,'<i>Hirundo rustica</i> - Whilst staying in SW France I became fascinated by the antics of the swallows drinking from & bathing in the swimming pool. A bit of patience led (eventually) to one good shot...','','','Beauvais Sur Matha, France.','','');
photos[75] = new photo(1454761,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Komodo Dragon.jpg',391,600,'Komodo Dragon','http://www1.clikpic.com/kevyn/images/Komodo Dragon1.jpg',85, 130,1, 0,'<i>Varanus komodoensis</i> - The fearsome, carnivorous and near-mythical Indonesian komodo dragon photographed very safely from behind a barrier in Bali Zoo!','','','Bali, Indonesia.','','');
photos[76] = new photo(1597691,'97800','','gallery','http://www1.clikpic.com/kevyn/images/16Nov07_DonnaNook161.jpg',600,402,'Grey Seal Pup','http://www1.clikpic.com/kevyn/images/16Nov07_DonnaNook1611.jpg',130, 87,1, 0,'<i>Halichoerus grypus</i> - Donna Nook on the Lincolnshire coast serves two seemingly incompatible purposes; it is both an RAF bombing range and a haven for grey seals.  Around November & December each year, the females beach themselves to give birth - hundreds of pups are born every winter supplementing the colony\'s numbers. This newly born baby with its bright, white fur was around one day old and utterly dependent on his mother for both food and protection.','','','Donna Nook, Lincolnshire, England.','','');
photos[77] = new photo(1408501,'97800','','gallery','http://www1.clikpic.com/kevyn/images/27Jul07_RedDeer13.jpg',400,600,'Red Deer','http://www1.clikpic.com/kevyn/images/27Jul07_RedDeer131.jpg',87, 130,1, 0,'<i>Cervus elaphus</i> - A stag from the semi-tame herd of deer that roams the Peak District\'s Chatsworth estate.','','','Chatsworth, England','','');
photos[78] = new photo(1408514,'97800','','gallery','http://www1.clikpic.com/kevyn/images/Chilled Tiger.jpg',450,600,'Chilled Tiger','http://www1.clikpic.com/kevyn/images/Chilled Tiger1.jpg',97, 130,1, 0,'<i>Panthera tigris altaica</i> - Taken during a photographic workshop at Marwell Zoo, this Siberian (or Amur) tiger was more relaxed than the photographer!','','','Marwell Zoo, England.','','');
photos[79] = new photo(1939353,'97800','','gallery','http://www1.clikpic.com/kevyn/images/07Mar08_Adders51.jpg',398,600,'Adder','http://www1.clikpic.com/kevyn/images/07Mar08_Adders51_thumb.jpg',86, 130,1, 0,'<i>Vipera berus</i> - This photograph was taken on the outskirts of Chesterfield, close to the Peak District National Park boundary. I had spent the best part of two hours looking for snakes with no joy. I checked one last south facing bank and stumbled across not one adder, but nine! Very carefully placing my feet so as not to stand on any of these venomous reptiles, I set up my tripod and used my 500mm lens to ensure neither the adders nor me were stressed by proximity to each other!','','','Ramsley Moor, near Chesterfield, Peak District, Derbyshire, England.','','');
photos[80] = new photo(1939368,'97800','','gallery','http://www1.clikpic.com/kevyn/images/01Mar08_RedKite.jpg',400,600,'Red Kite','http://www1.clikpic.com/kevyn/images/01Mar08_RedKite_thumb.jpg',87, 130,1, 0,'<i>Milvus milvus</i> - A day spent at Gigrin Farm in Wales was photographically worth the long drive from my home. The spectacle of fifty plus kites (and several buzzards to add to the raptor count) filling the air, tumbling and swooping to snatch bits of bait from the ground was amazing...and amazingly difficult to photograph due to the speed of their dives. I managed to catch this kite just as it banked into a dive with its head rotated and fixed on its target.<br />\r\n<br />\r\nIf you are a bird of prey fan, I strongly recommend a visit to Gigrin Farm.','','','Gigrin Farm, Rhayader, Powys, Wales.','','');
photos[81] = new photo(2249548,'97800','','gallery','http://www1.clikpic.com/kevyn/images/02Feb08_DerwentEdge22.jpg',600,398,'Red Grouse','http://www1.clikpic.com/kevyn/images/02Feb08_DerwentEdge22_thumb.jpg',130, 86,1, 0,'A bright winter\'s day was perfect for stalking grouse on the moors above Ladybower Reservoir. The snow made the well camouflaged game birds stand out allowing them to be \'shot\' photographically with relative ease.','','','Derwent Edge, Peak District, Derbyshire.','','');
photos[82] = new photo(2349662,'97800','','gallery','http://www1.clikpic.com/kevyn/images/01Dec07_GreySeal082.jpg',400,600,'Seal In Surf','http://www1.clikpic.com/kevyn/images/01Dec07_GreySeal082_thumb.jpg',87, 130,1, 0,'<i>Halichoerus grypus</i> - This female grey seal came surfing in to the sandbank at Donna Nook, before coming to a rest and having a snoop at me. I love this photograph for the low winter sun side-lighting one side of her face, and the out of focus waves crashing in the background giving context to her environment.','','','Donna Nook, Lincolnshire, England.','','');
photos[83] = new photo(1720992,'110067','','gallery','http://www1.clikpic.com/kevyn/images/03Nov07_Sheffield59.jpg',402,600,'Wooden Beam','http://www1.clikpic.com/kevyn/images/03Nov07_Sheffield59_thumb.jpg',87, 130,1, 0,'The Winter Garden in Sheffield\'s city centre is a relative newcomer to the \'Steel\' city\'s skyline. The architectural curve of the building\'s laminated wood arches begged to be photographed close-up with a wide angle lens; a low winter sun helped to display the wood grain to best effect.<br />\r\n<br />\r\nI was undecided as to whether this image works best in colour or mono - why not decide for yourself? A black and white version can be found in my <a target=\"_blank\" href=\"http://www.kevynburns.com/photo_1721019.html\">Shades of Grey gallery</a>.','','','Winter Gardens, Sheffield, South Yorkshire, England.','','');
photos[84] = new photo(1721140,'110067','','gallery','http://www1.clikpic.com/kevyn/images/03Nov07_Sheffield61.jpg',402,600,'Lattice Roof Architecture','http://www1.clikpic.com/kevyn/images/03Nov07_Sheffield61_thumb.jpg',87, 130,1, 0,'The architecture of the Winter Gardens in Sheffield is a joy to photograph. The building forms part of the city\'s new skyline that has developed in recent years. Its aesthetic combination of curved wooden arches and glass roof is in complete contrast to the few remaining steel foundries that used to dominate the city\'s viewpoints.<br />\r\n<br />\r\nI explored the building\'s interior, trying to find a composition that flaunted the curves of the wood and glass latticework structure against the bright blue winter sky. Hopefully I have succeeded.','','','Winter Gardens, Sheffield, South Yorkshire, England.','','');
photos[85] = new photo(1806294,'110067','','gallery','http://www1.clikpic.com/kevyn/images/Jan08_HongKong+China281.jpg',600,398,'Cityscape Keyhole & Key','http://www1.clikpic.com/kevyn/images/Jan08_HongKong+China281_thumb.jpg',130, 86,1, 0,'I had seen this view in a travel book, and decided to seek it out upon arriving in Hong Kong. Wandering around the city square in question with craned neck, I framed the circular building in the foreground to act as a \'keyhole\' for the skyscraper \'key\' soaring vertically in the background. I love the composition; who knows if the architecture is supposed to echo door furniture, but it was how I saw it!','','','Exchange Square, Hong Kong Island, Peoples\' Republic of China.','','');
photos[86] = new photo(1623050,'110067','','gallery','http://www1.clikpic.com/kevyn/images/03Nov07_Sheffield50.jpg',600,402,'Fountain','http://www1.clikpic.com/kevyn/images/03Nov07_Sheffield50_thumb.jpg',130, 87,1, 1,'Sheaf Square outside of Sheffield\'s main train station has recently received an impressive makeover. The visitor is now greeted with the sound of running water over the steps of a huge new fountain backed by a steel water curtain. A long lens gave huge potential to isolate elements of the scene. I loved the curve on the edge of this fountain disappearing out of the frame; the piano key-like channels provide a hard-edged contrast to the trickling streams of water.','','','Sheaf Square, Sheffield, South Yorkshire, England.','','');
photos[87] = new photo(1939509,'110067','','gallery','http://www1.clikpic.com/kevyn/images/26Feb08_Selfridges10.jpg',600,398,'Selfridges','http://www1.clikpic.com/kevyn/images/26Feb08_Selfridges10_thumb.jpg',130, 86,1, 0,'Selfridges in Birmingham\'s Bullring retail development is an urban photographer\'s delight. The building\'s exterior is clad in thousands of silver aluminium discs, which together with its almost human like curves give it a striking appearance. I loved the juxtaposition of the structure against the blue and white of the cloudy sky.<br />\r\n<br />\r\nSelfridges suits both colour (as here) and black and white photography; one of my mono images may be found <a href=\"http://www.kevynburns.com/photo_1939500.html\">here</a>.','','','Bullring, Birmingham, England.','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(97558,'1408515','The Great Outdoors - landscapes','gallery');
galleries[1] = new gallery(97798,'1409502','Around the world - travel','gallery');
galleries[2] = new gallery(97802,'1407380','Shades of grey - B&W','gallery');
galleries[3] = new gallery(97800,'1407398','In the wild - flora & fauna','gallery');
galleries[4] = new gallery(110067,'1623050','Urban grit - our cities','gallery');

