/***************************************************************************
* 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) {
	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;
}
/***************************************************************************
* 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('674282,662084,650261,645280,618776,582420,572823,567878,492447,487457');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			if (!basic) {
			img.src = 'images/' + 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 = 'images/' + 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('674282,662084,650261,645280,618776,582420,572823,567878,492447,487457');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			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="images/' + photos[j].src + '" width="' + photos[j].width + '" height="' + photos[j].height + '" class="mainhomepageimage" id="mainSample" name="mainSample" alt="' + photos[j].caption  + '" border="0">');
			document.write('</a>');
			break;
		}
	}
	
}

/***************************************************************************
* Show the next image in a gallery.  field = hidden field containing       *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function next(field,img) {

	debug('IN next');
	imageID = field.value;
	
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k= j + 1;
	while (nextImg < 0) {
		for (; k < photos.length; k++) {
			debug('testing image ' + k + ': gallery = ' + photos[k].galleries_id + '(existing: ' + photos[j].galleries_id + ')');
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				debug('setting  nextImg = ' + k);
				break;
			}
		}
		if (nextImg == -1) {
			k = 0;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);
	}


}


/***************************************************************************
* Set a new image on the gallery detail page given its array position      *
***************************************************************************/
function updateImage (nextImg, field,img) {
	debug('Updating image');
	if (!basic && !(0)) {
		debug('In updateImage');
		debug('setting  img src = ' + photos[nextImg].src);
		
					
						document.getElementById('imagePhoto').innerHTML = '<img class="mainphoto" src="images/' + 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;
			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.visibility = 'hidden';
		}
		else {
			document.getElementById('imageDetails').style.visibility = 'visible';
		}
		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('Image = ' + 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 = 'images/' + 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(492447,'38382','','gallery','EOS-400D.jpg',400,347,'','EOS-400D_thumb.jpg',130, 113,1, 0,'','','','');
photos[1] = new photo(493557,'38382','','gallery','Logobanner1.jpg',340,30,'','Logobanner1_thumb.jpg',130, 11,0, 0,'','','','');
photos[2] = new photo(504886,'38382','','gallery','photo_monthly.jpg',100,138,'PM','photo_monthly_thumb.jpg',130, 179,0, 0,'','','','');
photos[3] = new photo(592037,'38382','','gallery','Corn Fieldmarisapotter.jpg',500,400,'Corn Field by Marisa Potter','Corn Fieldmarisapotter_thumb.jpg',130, 104,0, 0,'','','','');
photos[4] = new photo(592057,'38382','','gallery','2for1garrybalmer.jpg',500,334,'2for1 by Gary Balmer','2for1garrybalmer_thumb.jpg',130, 87,0, 0,'','','','');
photos[5] = new photo(594881,'38382','','gallery','springflowersjohnpilling.jpg',500,192,'Spring Flowers by John Pilling','springflowersjohnpilling_thumb.jpg',130, 50,0, 0,'','','','');
photos[6] = new photo(594883,'38382','','gallery','springwoodjohnpilling.jpg',500,248,'Spring Wood by John Pilling','springwoodjohnpilling_thumb.jpg',130, 64,0, 0,'','','','');
photos[7] = new photo(625956,'38382','','gallery','Veluwe.jpg',500,281,'Veluwe by Cor Boers','Veluwe_thumb.jpg',130, 73,0, 0,'','','','');
photos[8] = new photo(625958,'38382','','gallery','Vennen.jpg',500,281,'Vennen by Cor Boers','Vennen_thumb.jpg',130, 73,0, 0,'','','','');
photos[9] = new photo(636788,'38382','','gallery','RoadtoNowhere.jpg',500,369,'Road to nowhere by Jo Livesey-Kilshaw','RoadtoNowhere_thumb.jpg',130, 96,0, 0,'','','','');
photos[10] = new photo(636819,'38382','','gallery','aseatinthesun.jpg',500,348,'A seat in the sun by Tony Wiloughby','aseatinthesun_thumb.jpg',130, 90,0, 0,'','','','');
photos[11] = new photo(638736,'38382','','gallery','intothelight.jpg',500,337,'Into the Light by Nikolay Nikolov ','intothelight_thumb.jpg',130, 88,0, 0,'','','','');
photos[12] = new photo(638737,'38382','','gallery','blue.jpg',500,340,'Blue by Nikolay Nikolov','blue_thumb.jpg',130, 88,0, 0,'','','','');
photos[13] = new photo(640353,'38382','','gallery','TheGreyMares.jpg',334,500,'The Grey Mares by Mike Byrne','TheGreyMares_thumb.jpg',130, 195,0, 0,'','','','');
photos[14] = new photo(640360,'38382','','gallery','Banff in spring.jpg',500,375,'Banff in Spring by Anne Lyons','Banff in spring_thumb.jpg',130, 98,0, 0,'','','','');
photos[15] = new photo(644291,'38382','','gallery','Reeds.JPG',500,500,'Reeds by Iain Donnelly@virgin','Reeds_thumb.JPG',130, 130,0, 0,'','','','');
photos[16] = new photo(644480,'38382','','gallery','hayfields.jpg',500,257,'Hay fields by Vince Sparks','hayfields_thumb.jpg',130, 67,0, 0,'','','','');
photos[17] = new photo(644502,'38382','','gallery','Baliroche.JPG',500,375,'Baliroche by Donald Ross','Baliroche_thumb.JPG',130, 98,0, 0,'','','','');
photos[18] = new photo(650242,'38382','','gallery','brokentv.jpg',500,382,'Broken shutters by Jenny Goodfellow','brokentv_thumb.jpg',130, 99,0, 0,'','','','');
photos[19] = new photo(652126,'38382','','gallery','freedom1.jpg',400,266,'Freedom  by Fergus Smith','freedom1_thumb.jpg',130, 86,0, 0,'','','','');
photos[20] = new photo(653354,'38382','','gallery','blue1.jpg',500,340,'Blue by Nikolay Nikolov','blue1_thumb.jpg',130, 88,0, 0,'','','','');
photos[21] = new photo(653355,'38382','','gallery','intothelight1.jpg',500,337,'Into the light by Nikolay Nikolov','intothelight1_thumb.jpg',130, 88,0, 0,'','','','');
photos[22] = new photo(653377,'38382','','gallery','ariversomewhere.jpg',500,250,'A river somewhere by Ann Van Breemen','ariversomewhere_thumb.jpg',130, 65,0, 0,'','','','');
photos[23] = new photo(661959,'38382','','gallery','Seagull.jpg',500,333,'Seagull by Kamal Uddin','Seagull_thumb.jpg',130, 87,0, 0,'','','','');
photos[24] = new photo(661960,'38382','','gallery','Seagulls.jpg',500,333,'Seagulls by Kamal Uddin','Seagulls_thumb.jpg',130, 87,0, 0,'','','','');
photos[25] = new photo(662038,'38382','','gallery','openspace1.jpg',500,337,'Open space 1 by Keith Dowling ','openspace1_thumb.jpg',130, 88,0, 0,'','','','');
photos[26] = new photo(662053,'38382','','gallery','CoventGarden.jpg',500,333,'Covent garden by Eduard Popescu','CoventGarden_thumb.jpg',130, 87,0, 0,'','','','');
photos[27] = new photo(664382,'38382','','gallery','pidgeon.jpg',500,333,'Pidgeon by Phil Carpenter','pidgeon_thumb.jpg',130, 87,0, 0,'','','','');
photos[28] = new photo(664383,'38382','','gallery','mallardduck.jpg',500,333,'Mallard duck by Phil Carpenter','mallardduck_thumb.jpg',130, 87,0, 0,'','','','');
photos[29] = new photo(665451,'38382','','gallery','gatheringstorm.jpg',500,235,'Gathering storm by Geoff Sutton ','gatheringstorm_thumb.jpg',130, 61,0, 0,'','','','');
photos[30] = new photo(669972,'38382','','gallery','bumblebee.jpg',500,333,'Bumble Bee by Phil Millar ','bumblebee_thumb.jpg',130, 87,0, 0,'','','','');
photos[31] = new photo(670029,'38382','','gallery','roukenglenpark.jpg',500,350,'Roukenglen park by Ann-Marie Westwood','roukenglenpark_thumb.jpg',130, 91,0, 0,'','','','');
photos[32] = new photo(671205,'38382','','gallery','tulips.jpeg',500,332,'Tulips by Geoff Leedham ','tulips_thumb.jpeg',130, 86,0, 0,'','','','');
photos[33] = new photo(671216,'38382','','gallery','publicbathing.jpeg',500,300,'Public bathing by Geoff Leedham ','publicbathing_thumb.jpeg',130, 78,0, 0,'','','','');
photos[34] = new photo(672314,'38382','','gallery','laddertotheskies.jpg',288,480,'Ladder to the skies by Mike Henthorn ','laddertotheskies_thumb.jpg',130, 217,0, 0,'','','','');
photos[35] = new photo(672371,'38382','','gallery','Tulipsinglasgow.jpg',500,333,'Tulips in Glasgow by Scott Murray ','Tulipsinglasgow_thumb.jpg',130, 87,0, 0,'','','','');
photos[36] = new photo(672955,'38382','','gallery','potomacriverwashingtondc.jpg',500,375,'Potomac river Washinton dc by Matthew Baumgart','potomacriverwashingtondc_thumb.jpg',130, 98,0, 0,'','','','');
photos[37] = new photo(672990,'38382','','gallery','cheetosThief.jpg',500,333,'Cheetos theif by Robin Windisch','cheetosThief_thumb.jpg',130, 87,0, 0,'','','','');
photos[38] = new photo(673391,'38382','','gallery','Timeforreflection.jpg',409,307,'Time for reflection by Margaret Hart ','Timeforreflection_thumb.jpg',130, 98,0, 0,'','','','');
photos[39] = new photo(673393,'38382','','gallery','FirstflushofAutumn.jpg',500,667,'First flush of autumn by Margaret Hart ','FirstflushofAutumn_thumb.jpg',130, 173,0, 0,'','','','');
photos[40] = new photo(673442,'38382','','gallery','mrripples.jpg',500,750,'Mr Ripples by Malcolm Brett ','mrripples_thumb.jpg',130, 195,0, 0,'','','','');
photos[41] = new photo(673445,'38382','','gallery','goosehunter.jpg',500,357,'Goose hunter by Malcom Brett ','goosehunter_thumb.jpg',130, 93,0, 0,'','','','');
photos[42] = new photo(673446,'38382','','gallery','fallenleaf.jpg',500,344,'Fallen leaf by Malcolm Brett ','fallenleaf_thumb.jpg',130, 89,0, 0,'','','','');
photos[43] = new photo(674059,'38382','','gallery','return-voyage.jpg',500,332,'Return voyage by Richard Webster','return-voyage_thumb.jpg',130, 86,0, 0,'','','','');
photos[44] = new photo(674060,'38382','','gallery','Treesandmist.jpg',500,223,'Trees and mist by Richard Webster ','Treesandmist_thumb.jpg',130, 58,0, 0,'','','','');
photos[45] = new photo(674237,'38382','','gallery','Dollymount Strand Dublin.jpg',448,295,'Doolymount Strand - Dublin by Philip Rogan','Dollymount Strand Dublin_thumb.jpg',130, 86,0, 0,'','','','');
photos[46] = new photo(674238,'38382','','gallery','Painting Dublin.jpg',445,331,'Painting Dublin by Philip Rogan','Painting Dublin_thumb.jpg',130, 97,0, 0,'','','','');
photos[47] = new photo(674292,'38382','','gallery','themeadowsinthemorning.jpg',500,437,'The meadows in the morning by Andrew Lamberton','themeadowsinthemorning_thumb.jpg',130, 114,0, 0,'','','','');
photos[48] = new photo(674321,'38382','','gallery','allotments Le Puy en Velay.JPG',266,400,'Allotments Le Puy en Velay by Andrew Currie','allotments Le Puy en Velay_thumb.JPG',130, 195,0, 0,'','','','');
photos[49] = new photo(674366,'38382','','gallery','Connections.jpg',500,375,'Connections by Susanne Hartley ','Connections_thumb.jpg',130, 98,0, 0,'','','','');
photos[50] = new photo(676746,'38382','','gallery','TelephoneTowerEverywhere.jpg',500,333,'Telephone tower everywhere by Stuart Coulson','TelephoneTowerEverywhere_thumb.jpg',130, 87,0, 0,'','','','');
photos[51] = new photo(676765,'38382','','gallery','HighgateWoodsInTheFog.jpg',500,353,'Highgate woods in the fog by Jimmy Wilde','HighgateWoodsInTheFog_thumb.jpg',130, 92,0, 0,'','','','');
photos[52] = new photo(676774,'38382','','gallery','winter skyscape 25-11-2006 16-07-04 2423x2962 25-11-2006 15-23-36.jpg',480,360,'Winter skyscape by Michael King ','winter skyscape 25-11-2006 16-07-04 2423x2962 25-11-2006 15-23-36_thumb.jpg',130, 98,0, 0,'','','','');
photos[53] = new photo(676790,'38382','','gallery','theHighStreetEnd.jpg',500,377,'The high street end by Brian Lavery ','theHighStreetEnd_thumb.jpg',130, 98,0, 0,'','','','');
photos[54] = new photo(676794,'38382','','gallery','Rock.jpg',500,375,'Rock by Linda Simmonds ','Rock_thumb.jpg',130, 98,0, 0,'','','','');
photos[55] = new photo(676795,'38382','','gallery','Austria.jpg',500,281,'Austria by Linda Simmonds ','Austria_thumb.jpg',130, 73,0, 0,'','','','');
photos[56] = new photo(676797,'38382','','gallery','St-Ives.jpg',500,287,'St. Ives by Linda Simmonds','St-Ives_thumb.jpg',130, 75,0, 0,'','','','');
photos[57] = new photo(585873,'38382','','gallery','Lynn Canyon Park Scott Mawson.jpg',500,750,'Lynn Canyon park by Scott Mawson','Lynn Canyon Park Scott Mawson_thumb.jpg',130, 195,0, 0,'','','','');
photos[58] = new photo(602733,'38382','','gallery','MOTHERBABY.jpg',500,557,'Mother baby by Ann Alimi','MOTHERBABY_thumb.jpg',130, 145,0, 0,'','','','');
photos[59] = new photo(636798,'38382','','gallery','BelsizePark1.jpg',500,668,'Belsixe park by Neil McCrae','BelsizePark1_thumb.jpg',130, 174,0, 0,'','','','');
photos[60] = new photo(582962,'38382','','gallery','thistleandbeebernie.jpg',195,260,'Thistle and bee by Bernie Blackburn','thistleandbeebernie_thumb.jpg',130, 173,0, 0,'','','','');
photos[61] = new photo(628395,'38382','','gallery','rhossilli.jpg',500,500,'Rhossilli by Amanda Hodge','rhossilli_thumb.jpg',130, 130,0, 0,'','','','');
photos[62] = new photo(582951,'38382','','gallery','thewalkbernie.jpg',195,260,'The walk by Bernie Blackburn','thewalkbernie_thumb.jpg',130, 173,0, 0,'','','','');
photos[63] = new photo(618769,'38382','','gallery','earth.jpg',134,500,'Earth by Ken Hugill','earth_thumb.jpg',130, 485,0, 0,'','','','');
photos[64] = new photo(567878,'62607','','gallery','chrismoleabstractsouthbank.jpg',500,333,'FIRST PLACE: South Bank by Chris Mole','chrismoleabstractsouthbank_thumb.jpg',130, 87,1, 1,'This excellent shot was originally entered under the Abstract category. Chris wins himself a Canon EOS 400D.','','','');
photos[65] = new photo(582678,'62607','','gallery','calatravamuseum.jpg',333,500,'SECOND PLACE: Calatrava Museum by Neil Rongstad','calatravamuseum_thumb.jpg',130, 195,0, 0,'','','','');
photos[66] = new photo(582420,'62607','','gallery','CeliamanningspoepleYouth.jpg',500,333,'RUNNER UP: Youth by Celia Mannings','CeliamanningspoepleYouth_thumb.jpg',130, 87,1, 0,'','','','');
photos[67] = new photo(645280,'62607','','gallery','Reflecting on life.jpg',500,400,'RUNNER UP: Reflecting on life by Terry Richer ','Reflecting on life_thumb.jpg',130, 104,1, 0,'','','','');
photos[68] = new photo(650250,'62607','','gallery','thephotographer.jpg',500,213,'RUNNER UP: The Photographer by Dave Hogan','thephotographer_thumb.jpg',130, 55,0, 0,'','','','');
photos[69] = new photo(674282,'62607','','gallery','innocentrailwaytunnel.jpg',500,462,'RUNNER UP: Innocent railway tunnel by Andrew Lamberton','innocentrailwaytunnel_thumb.jpg',130, 120,1, 0,'','','','');
photos[70] = new photo(650261,'62607','','gallery','endterrace.jpg',500,376,'RUNNER UP: End terrace by Andrew Conroy','endterrace_thumb.jpg',130, 98,1, 0,'','','','');
photos[71] = new photo(662084,'62607','','gallery','industrialpattern.jpg',400,255,'RUNNER UP: Industrial pattern by Antonia Wozencraft ','industrialpattern_thumb.jpg',130, 83,1, 0,'','','','');
photos[72] = new photo(618776,'62607','','gallery','bilbao2.jpg',500,554,'RUNNER UP: Bilbao2 by Ken Hugill','bilbao2_thumb.jpg',130, 144,1, 0,'','','','');
photos[73] = new photo(628397,'62607','','gallery','LaBoqueria.jpg',450,930,'RUNNER UP: La Boqueria by Steve Hutchings','LaBoqueria_thumb.jpg',130, 269,0, 0,'','','','');
photos[74] = new photo(676785,'62607','','gallery','aCorridorToRoland.jpg',500,750,'RUNNER UP: A corridor to Roland by Brian Lavery ','aCorridorToRoland_thumb.jpg',130, 195,0, 0,'','','','');
photos[75] = new photo(671195,'62607','','gallery','GrayWalk.jpg',352,550,'Gray walk by Alexandre Guerra','GrayWalk_thumb.jpg',130, 203,0, 0,'','','','');
photos[76] = new photo(625995,'62607','','gallery','gla2.jpg',500,751,'RUNNER UP: gla2 by Michael Silver','gla2_thumb.jpg',130, 195,0, 0,'','','','');
photos[77] = new photo(504801,'62607','','gallery','Dog\'s LifePeople.jpg',400,550,'RUNNER UP: Dog\'s life by Mike Modine','Dog\'s LifePeople_thumb.jpg',130, 179,0, 0,'','','','');
photos[78] = new photo(487384,'62607','','gallery','hunterParis.jpg',396,599,'RUNNER UP: Parisienne by Tony Hunter','hunterParis_thumb.jpg',130, 197,0, 0,'','','','');
photos[79] = new photo(487459,'37488','','gallery','Sandallbyinrain.jpg',400,311,'Boy in Rain by Tim Sandall','Sandallbyinrain_thumb.jpg',130, 101,0, 0,'','','','');
photos[80] = new photo(487461,'37488','','gallery','Sandallgreenamazon.jpg',400,301,'South American Festival by Tim Sandall','Sandallgreenamazon_thumb.jpg',130, 98,0, 1,'','','','');
photos[81] = new photo(498098,'37488','','gallery','Venice.jpg',400,225,'Street performer in Venice by Peter Paterson','Venice_thumb.jpg',130, 73,0, 0,'','','','');
photos[82] = new photo(567868,'37488','','gallery','chrismolepeoplenottinghill.jpg',500,333,'Notting Hill by Chris Mole','chrismolepeoplenottinghill_thumb.jpg',130, 87,0, 0,'','','','');
photos[83] = new photo(569378,'37488','','gallery','edmcmanuspeopleoneuponedown.jpg',450,450,'One up one down by Ed McManus','edmcmanuspeopleoneuponedown_thumb.jpg',130, 130,0, 0,'','','','');
photos[84] = new photo(569379,'37488','','gallery','edmcmanuspeopleupsidedown.jpg',450,430,'Upside down by Ed McManus','edmcmanuspeopleupsidedown_thumb.jpg',130, 124,0, 0,'','','','');
photos[85] = new photo(575576,'37488','','gallery','RobWhealPeopleMillenniumBridgeReflections.jpg',500,333,'Millenium Bridge Reflections by Rob Wheal','RobWhealPeopleMillenniumBridgeReflections_thumb.jpg',130, 87,0, 0,'','','','');
photos[86] = new photo(575578,'37488','','gallery','RobWhealPeopleVeniceSundayMorning.jpg',500,331,'Venice Sunday Morning by Rob Wheal','RobWhealPeopleVeniceSundayMorning_thumb.jpg',130, 86,0, 0,'','','','');
photos[87] = new photo(575584,'37488','','gallery','AnthonyBeckPeopleglobal warming JPG.jpg',500,393,'Global Warming by Anthony Beck','AnthonyBeckPeopleglobal warming JPG_thumb.jpg',130, 102,0, 0,'','','','');
photos[88] = new photo(582173,'37488','','gallery','goodmorninghanoi.jpg',465,340,'Good morning Hanoi by Diane Willoughby ','goodmorninghanoi_thumb.jpg',130, 95,0, 0,'','','','');
photos[89] = new photo(582181,'37488','','gallery','MatCollisPeoplescarypuppetman.jpg',500,500,'Scary Puppet Man by Matt Collis','MatCollisPeoplescarypuppetman_thumb.jpg',130, 130,0, 0,'','','','');
photos[90] = new photo(582182,'37488','','gallery','MattCollisPeopletheusualsuspects.jpg',500,242,'The usual suspects by Matt Collis','MattCollisPeopletheusualsuspects_thumb.jpg',130, 63,0, 0,'','','','');
photos[91] = new photo(582371,'37488','','gallery','ChrisShepPeopleLongWalkHome.jpg',500,391,'Long walk home by Chris Shepherd','ChrisShepPeopleLongWalkHome_thumb.jpg',130, 102,0, 0,'','','','');
photos[92] = new photo(582612,'37488','','gallery','asbpeopleBoysandtricycleShanghai.jpg',500,333,'Boys & tricile Shanghai by Asbjorn M. Olsen','asbpeopleBoysandtricycleShanghai_thumb.jpg',130, 87,0, 0,'','','','');
photos[93] = new photo(582614,'37488','','gallery','nickbpeopleRoof-painting-Thian-Hock-Ke.jpg',500,340,'Roof Painting Thian-Hok-Ke by Nick Board','nickbpeopleRoof-painting-Thian-Hock-Ke_thumb.jpg',130, 88,0, 0,'','','','');
photos[94] = new photo(582615,'37488','','gallery','nickbpeopleConstruction-Workers-Chinat.jpg',500,375,'Construction workers at Chinat by Nick Board','nickbpeopleConstruction-Workers-Chinat_thumb.jpg',130, 98,0, 0,'','','','');
photos[95] = new photo(582633,'37488','','gallery','bbcolourful tourists.jpg',500,350,'Colourful Tourists by Bogdan Banescu','bbcolourful tourists_thumb.jpg',130, 91,0, 0,'','','','');
photos[96] = new photo(582635,'37488','','gallery','bbeveningdrink.jpg',500,336,'Evening Drink by Bogdan Banescu','bbeveningdrink_thumb.jpg',130, 87,0, 0,'','','','');
photos[97] = new photo(582636,'37488','','gallery','urbanred.jpg',500,301,'Urban Red by Bogdan Banescu','urbanred_thumb.jpg',130, 78,0, 0,'','','','');
photos[98] = new photo(582641,'37488','','gallery','People - Venus then and now.jpg',500,375,'Venus then and now by Malcolm Niekirk ','People - Venus then and now_thumb.jpg',130, 98,0, 0,'','','','');
photos[99] = new photo(582681,'37488','','gallery','beltanefirefestivaledinburgh.jpg',200,161,'Beltane Fire Festival Edinburgh by Donny McIntyre','beltanefirefestivaledinburgh_thumb.jpg',130, 105,0, 0,'','','','');
photos[100] = new photo(582697,'37488','','gallery','waiting.jpg',500,375,'Waiting by David Kivlin','waiting_thumb.jpg',130, 98,0, 0,'','','','');
photos[101] = new photo(582708,'37488','','gallery','Hannah.jpg',500,451,'Hannah by Lisa Aldersley','Hannah_thumb.jpg',130, 117,0, 0,'','','','');
photos[102] = new photo(582788,'37488','','gallery','Picture  gary richmond park 162.jpg',500,334,'Gary Richmond Park by Garry Balmer','Picture  gary richmond park 162_thumb.jpg',130, 87,0, 0,'','','','');
photos[103] = new photo(582856,'37488','','gallery','guitarmankevmc.jpg',173,84,'Guitarman by Kevin McCollum','guitarmankevmc_thumb.jpg',130, 63,0, 0,'','','','');
photos[104] = new photo(582861,'37488','','gallery','lunchbreakkevmc.jpg',355,234,'Lunch break by Kevin McCollum','lunchbreakkevmc_thumb.jpg',130, 86,0, 0,'','','','');
photos[105] = new photo(582936,'37488','','gallery','Egyptmanceliam.jpg',500,335,'Egyptman by Celia Mannings','Egyptmanceliam_thumb.jpg',130, 87,0, 0,'','','','');
photos[106] = new photo(585902,'37488','','gallery','Coffee on the Rocks Scott Mawson.jpg',500,389,'Coffee on the rocks by Scott Mawson','Coffee on the Rocks Scott Mawson_thumb.jpg',130, 101,0, 0,'','','','');
photos[107] = new photo(585911,'37488','','gallery','lookatthis gary balmer.jpg',500,375,'Look at this! by Gary Balmer','lookatthis gary balmer_thumb.jpg',130, 98,0, 0,'','','','');
photos[108] = new photo(592041,'37488','','gallery','piercingmarisapotter.jpg',500,333,'Piercing by Marisa Potter','piercingmarisapotter_thumb.jpg',130, 87,0, 0,'','','','');
photos[109] = new photo(594863,'37488','','gallery','urumqicrowdsian trower.jpg',500,333,'urumqi crowds by Ian Trower','urumqicrowdsian trower_thumb.jpg',130, 87,0, 0,'','','','');
photos[110] = new photo(594887,'37488','','gallery','fishnchipsjohnpilling.jpg',500,375,'Fish\'n\'Chips by John Pilling','fishnchipsjohnpilling_thumb.jpg',130, 98,0, 0,'','','','');
photos[111] = new photo(594889,'37488','','gallery','underpassjohnpilling.jpg',500,375,'Underpass by John Pilling','underpassjohnpilling_thumb.jpg',130, 98,0, 0,'','','','');
photos[112] = new photo(596688,'37488','','gallery','kingscrosscommute.jpg',500,321,'Kings cross commute by Ben Fillmore','kingscrosscommute_thumb.jpg',130, 83,0, 0,'','','','');
photos[113] = new photo(596698,'37488','','gallery','windsurfer.jpg',500,333,'Windsurfer by Lynette Thomas','windsurfer_thumb.jpg',130, 87,0, 0,'','','','');
photos[114] = new photo(596701,'37488','','gallery','protesterstopclimatechaos.jpg',500,333,'Protester. Stop climate chaos by Lynette Thomas','protesterstopclimatechaos_thumb.jpg',130, 87,0, 0,'','','','');
photos[115] = new photo(596716,'37488','','gallery','edinburghstreetperformer.JPG',499,499,'Edinburgh street performer by Chris Osborne','edinburghstreetperformer_thumb.JPG',130, 130,0, 0,'','','','');
photos[116] = new photo(596731,'37488','','gallery','shovelleaning.JPG',500,350,'Shovel leaning by Craig Marren ','shovelleaning_thumb.JPG',130, 91,0, 0,'','','','');
photos[117] = new photo(596733,'37488','','gallery','tugofwar.JPG',500,375,'Tug of war by Craig Marren ','tugofwar_thumb.JPG',130, 98,0, 0,'','','','');
photos[118] = new photo(602727,'37488','','gallery','BIKERACE.jpg',500,333,'Bikerace by Ann Alimi','BIKERACE_thumb.jpg',130, 87,0, 0,'','','','');
photos[119] = new photo(602750,'37488','','gallery','thatonenext.jpg',500,375,'That one next by Denys Attwood','thatonenext_thumb.jpg',130, 98,0, 0,'','','','');
photos[120] = new photo(609561,'37488','','gallery','citypieratsunset  .jpg',500,375,'City pier at sunset by Sandra Silver','citypieratsunset  _thumb.jpg',130, 98,0, 0,'','','','');
photos[121] = new photo(609564,'37488','','gallery','irishgirls.jpg',500,375,'Irish girls by Sandra Silver','irishgirls_thumb.jpg',130, 98,0, 0,'','','','');
photos[122] = new photo(618758,'37488','','gallery','brandenburggate.jpg',500,332,'Brandenburg gate by Marjolein den Hartog','brandenburggate_thumb.jpg',130, 86,0, 0,'','','','');
photos[123] = new photo(625986,'37488','','gallery','Conductor.jpg',500,375,'Conductor by Cor Boers','Conductor_thumb.jpg',130, 98,0, 0,'','','','');
photos[124] = new photo(625988,'37488','','gallery','Learplayer.jpg',500,375,'Lear player by Cor Boers','Learplayer_thumb.jpg',130, 98,0, 0,'','','','');
photos[125] = new photo(625997,'37488','','gallery','richandpoor.jpg',500,354,'Rich and poor by Dave Cox','richandpoor_thumb.jpg',130, 92,0, 0,'','','','');
photos[126] = new photo(628401,'37488','','gallery','camdencafe.jpg',500,333,'Camden cafe by Ben Roberts','camdencafe_thumb.jpg',130, 87,0, 0,'','','','');
photos[127] = new photo(628402,'37488','','gallery','enraptureduninterested.jpg',500,179,'Enraptured, uninterested by Ben Roberts','enraptureduninterested_thumb.jpg',130, 47,0, 0,'','','','');
photos[128] = new photo(628404,'37488','','gallery','pinkwall.jpg',500,303,'Pink wall  by Lara Wechsler','pinkwall_thumb.jpg',130, 79,0, 0,'','','','');
photos[129] = new photo(628406,'37488','','gallery','maninsnow.jpg',500,383,'Man in snow by Kyle Jones','maninsnow_thumb.jpg',130, 100,0, 0,'','','','');
photos[130] = new photo(628410,'37488','','gallery','business man against white boarding.jpg',500,331,'Business man against white boarding by JB Maher','business man against white boarding_thumb.jpg',130, 86,0, 0,'','','','');
photos[131] = new photo(628432,'37488','','gallery','firstglance.jpg',400,267,'First glance by Chris','firstglance_thumb.jpg',130, 87,0, 0,'','','','');
photos[132] = new photo(628436,'37488','','gallery','zitarman.jpg',500,333,'Zitarman by Chris ','zitarman_thumb.jpg',130, 87,0, 0,'','','','');
photos[133] = new photo(636784,'37488','','gallery','RushhourinHue.jpg',500,441,'Rush hour in hue by Jo Livesey-Kilshaw','RushhourinHue_thumb.jpg',130, 115,0, 0,'','','','');
photos[134] = new photo(636831,'37488','','gallery','MaasaiWarrior.jpg',500,384,'Maasai warrior by Ross Hunter','MaasaiWarrior_thumb.jpg',130, 100,0, 0,'','','','');
photos[135] = new photo(637062,'37488','','gallery','stonestatuebystevieclarkepeople.jpg',500,472,'Stone Statue by Stevie Clarke','stonestatuebystevieclarkepeople_thumb.jpg',130, 123,0, 0,'','','','');
photos[136] = new photo(638721,'37488','','gallery','fireater.jpg.jpg',120,186,'Fire eater by Nathaniel Gonzales ','fireater_thumb.jpg.jpg',130, 202,0, 0,'','','','');
photos[137] = new photo(638722,'37488','','gallery','dragonbreath.jpg.jpg',120,85,'Dragon Breath by Nathaniel Gonzales ','dragonbreath_thumb.jpg.jpg',130, 92,0, 0,'','','','');
photos[138] = new photo(638731,'37488','','gallery','CamdenMarket.jpg',500,375,'Camden Market by Jean Brookfield','CamdenMarket_thumb.jpg',130, 98,0, 0,'','','','');
photos[139] = new photo(638732,'37488','','gallery','Camden.jpg',500,375,'Camden by Jean Brookfield','Camden_thumb.jpg',130, 98,0, 0,'','','','');
photos[140] = new photo(638769,'37488','','gallery','Wurzel.JPG',500,375,'Wurzel by Ian Heath','Wurzel_thumb.JPG',130, 98,0, 0,'','','','');
photos[141] = new photo(638770,'37488','','gallery','ThereItIs.JPG',500,375,'There it is by Ian Heath','ThereItIs_thumb.JPG',130, 98,0, 0,'','','','');
photos[142] = new photo(640350,'37488','','gallery','Clubbers.jpg',500,334,'Clubbers by Mike Byrne','Clubbers_thumb.jpg',130, 87,0, 0,'','','','');
photos[143] = new photo(640351,'37488','','gallery','UndergroundDJ.jpg',500,500,'Underground by Mike Byrne','UndergroundDJ_thumb.jpg',130, 130,0, 0,'','','','');
photos[144] = new photo(640367,'37488','','gallery','Escalator.jpg',500,299,'Escalator by Stephen Hewett','Escalator_thumb.jpg',130, 78,0, 0,'','','','');
photos[145] = new photo(640368,'37488','','gallery','NewYorkfaces.jpg',500,323,'New York Faces by Stepehen Hewett','NewYorkfaces_thumb.jpg',130, 84,0, 0,'','','','');
photos[146] = new photo(640374,'37488','','gallery','community.jpg',400,300,'Community by Maddie Wheal','community_thumb.jpg',130, 98,0, 0,'','','','');
photos[147] = new photo(642069,'37488','','gallery','thebowler.jpg',500,333,'The bowler by Gaetano Cecere','thebowler_thumb.jpg',130, 87,0, 0,'','','','');
photos[148] = new photo(642070,'37488','','gallery','fashionshow.jpg',500,333,'Fashion show by Gaetano Cecere','fashionshow_thumb.jpg',130, 87,0, 0,'','','','');
photos[149] = new photo(642076,'37488','','gallery','punksonlion.jpg',480,331,'Punks on lion by James Goldsmith <br>\n','punksonlion_thumb.jpg',130, 90,0, 0,'','','','');
photos[150] = new photo(644295,'37488','','gallery','Burberry.JPG',500,501,'Burberry by Iain Donnelly','Burberry_thumb.JPG',130, 130,0, 0,'','','','');
photos[151] = new photo(644297,'37488','','gallery','Hats.JPG',500,500,'Hats by Iain Donnelly','Hats_thumb.JPG',130, 130,0, 0,'','','','');
photos[152] = new photo(644498,'37488','','gallery','heygoodlookin.jpg',500,277,'Hey good lookin\' by Vince Sparks','heygoodlookin_thumb.jpg',130, 72,0, 0,'','','','');
photos[153] = new photo(644506,'37488','','gallery','sohostrangers.JPG',500,339,'Soho strangers by Donald Ross','sohostrangers_thumb.JPG',130, 88,0, 0,'','','','');
photos[154] = new photo(644507,'37488','','gallery','pigeonlady.JPG',500,500,'Pigeon lady by Donald Ross','pigeonlady_thumb.JPG',130, 130,0, 0,'','','','');
photos[155] = new photo(644509,'37488','','gallery','belfaststreet.jpg',500,346,'Belfast Street by Terry Cooper','belfaststreet_thumb.jpg',130, 90,0, 0,'','','','');
photos[156] = new photo(645155,'37488','','gallery','WhenIgrowup.jpg',500,369,'When I grow up by Fergus Sturrock','WhenIgrowup_thumb.jpg',130, 96,0, 0,'','','','');
photos[157] = new photo(645157,'37488','','gallery','Bestmedicine.jpg',500,391,'Best medicine by Fergus Sturrock','Bestmedicine_thumb.jpg',130, 102,0, 0,'','','','');
photos[158] = new photo(645299,'37488','','gallery','faceinthecrowd.jpg',500,332,'Face in the crowd by Rob Smith','faceinthecrowd_thumb.jpg',130, 86,0, 0,'','','','');
photos[159] = new photo(647597,'37488','','gallery','beachlife.jpg',500,375,'Beachlife by Mike Metcalfe','beachlife_thumb.jpg',130, 98,0, 0,'','','','');
photos[160] = new photo(650247,'37488','','gallery','engrossed.jpg',500,374,'Engrossed by Jenny Goodfellow','engrossed_thumb.jpg',130, 97,0, 0,'','','','');
photos[161] = new photo(650251,'37488','','gallery','manwalking.jpg',500,329,'Man walking by Lisa Tilley','manwalking_thumb.jpg',130, 86,0, 0,'','','','');
photos[162] = new photo(650253,'37488','','gallery','skateboardingboy.jpg',500,271,'Skateboarding boy by Lisa Tilley','skateboardingboy_thumb.jpg',130, 70,0, 0,'','','','');
photos[163] = new photo(650255,'37488','','gallery','flowercompetition.jpg',500,376,'Flower competition by Andrew Conroy','flowercompetition_thumb.jpg',130, 98,0, 0,'','','','');
photos[164] = new photo(650256,'37488','','gallery','listen.jpg',500,376,'Listen by Andrew Conroy','listen_thumb.jpg',130, 98,0, 0,'','','','');
photos[165] = new photo(650279,'37488','','gallery','did_we_bring_a_towel.jpg',500,333,'Did_we_bring_a_towel by Paul Mansfield','did_we_bring_a_towel_thumb.jpg',130, 87,0, 0,'','','','');
photos[166] = new photo(650281,'37488','','gallery','stencil_scape.jpg',500,333,'Stencil scape by Paul Mansfield','stencil_scape_thumb.jpg',130, 87,0, 0,'','','','');
photos[167] = new photo(650551,'37488','','gallery','streetchess.jpg',464,355,'Street chess by Dave Hogan','streetchess_thumb.jpg',130, 99,0, 0,'','','','');
photos[168] = new photo(652113,'37488','','gallery','limastreetlife.jpg',500,323,'Lima streetlife by Nick Blackman','limastreetlife_thumb.jpg',130, 84,0, 0,'','','','');
photos[169] = new photo(652128,'37488','','gallery','CARING.jpg',500,360,'Caring by Fergus Smith','CARING_thumb.jpg',130, 94,0, 0,'','','','');
photos[170] = new photo(653349,'37488','','gallery','thedance.jpg',432,268,'The dance by Benjamin Seto','thedance_thumb.jpg',130, 81,0, 0,'','','','');
photos[171] = new photo(653362,'37488','','gallery','ShellfishLadyValencia.jpg',288,192,'Shellfish Lady - Valencia by Fred Shively','ShellfishLadyValencia_thumb.jpg',130, 87,0, 0,'','','','');
photos[172] = new photo(653368,'37488','','gallery','BuskerCordoba.jpg',288,215,'Busker Cordoba by Fred Shively','BuskerCordoba_thumb.jpg',130, 97,0, 0,'','','','');
photos[173] = new photo(653405,'37488','','gallery','mysterygirl.jpg',500,340,'Mystery girl by Ann Van Breemen','mysterygirl_thumb.jpg',130, 88,0, 0,'','','','');
photos[174] = new photo(653415,'37488','','gallery','StreetSleeperGranada.JPG',500,295,'Street Sleeper - Granada by Steve Hutchings','StreetSleeperGranada_thumb.JPG',130, 77,0, 0,'','','','');
photos[175] = new photo(656501,'37488','','gallery','girl.jpg',500,337,'Girl by Micah Dear','girl_thumb.jpg',130, 88,0, 0,'','','','');
photos[176] = new photo(656502,'37488','','gallery','girlanddog.jpg',500,329,'Girl and Dog by Micah Dear','girlanddog_thumb.jpg',130, 86,0, 0,'','','','');
photos[177] = new photo(656508,'37488','','gallery','CityLiving.jpg',500,333,'City living by Moelwyn Hopkins','CityLiving_thumb.jpg',130, 87,0, 0,'','','','');
photos[178] = new photo(659148,'37488','','gallery','BoyFlyingKite.jpg',500,359,'Boy flying kite by Angelique Snutch','BoyFlyingKite_thumb.jpg',130, 93,0, 0,'','','','');
photos[179] = new photo(661943,'37488','','gallery','BlackfriarsBridgeJuly7th2005.jpg',480,360,'Blackfriars bridge by Philip Lawton','BlackfriarsBridgeJuly7th2005_thumb.jpg',130, 98,0, 0,'','','','');
photos[180] = new photo(661974,'37488','','gallery','PilgramagetoStPauls.jpg',500,500,'Pilgrimage to St. Pauls by Elizabeth Restall','PilgramagetoStPauls_thumb.jpg',130, 130,0, 0,'','','','');
photos[181] = new photo(661976,'37488','','gallery','Shoppers.jpg',500,326,'Shoppers by Elizabeth Restall','Shoppers_thumb.jpg',130, 85,0, 0,'','','','');
photos[182] = new photo(662017,'37488','','gallery','hypnoticcity.jpg',500,333,'Hypnotic city by Adrian Lourie','hypnoticcity_thumb.jpg',130, 87,0, 0,'','','','');
photos[183] = new photo(662020,'37488','','gallery','margaret.jpg',146,146,'Margaret by Adrian Lourie','margaret_thumb.jpg',130, 130,0, 0,'','','','');
photos[184] = new photo(662023,'37488','','gallery','Thetraveller.jpg',500,351,'The traveller by Tony Humphreys','Thetraveller_thumb.jpg',130, 91,0, 0,'','','','');
photos[185] = new photo(662041,'37488','','gallery','Newwayoftalkin6.jpg',500,333,'New way of talking by Keith Dowling','Newwayoftalkin6_thumb.jpg',130, 87,0, 0,'','','','');
photos[186] = new photo(662048,'37488','','gallery','Regatta.jpg',500,605,'Regatta by Eduard Popescu','Regatta_thumb.jpg',130, 157,0, 0,'','','','');
photos[187] = new photo(662051,'37488','','gallery','ImJustLooking.jpg',500,258,'I\'m just looking by Eduard Popescu','ImJustLooking_thumb.jpg',130, 67,0, 0,'','','','');
photos[188] = new photo(662071,'37488','','gallery','CamdenLondon.jpg',500,306,'Camden London by Vanessa Lockett ','CamdenLondon_thumb.jpg',130, 80,0, 0,'','','','');
photos[189] = new photo(662077,'37488','','gallery','movingstill.JPG',500,367,'Moving still by Steven KInnard ','movingstill_thumb.JPG',130, 95,0, 0,'','','','');
photos[190] = new photo(662079,'37488','','gallery','bristolswimmers.jpg',400,412,'Bristol swimmers by Antonia Wozencraft ','bristolswimmers_thumb.jpg',130, 134,0, 0,'','','','');
photos[191] = new photo(664401,'37488','','gallery','DailyNews.jpg',496,325,'Daily News by Steve Nightingale','DailyNews_thumb.jpg',130, 85,0, 0,'','','','');
photos[192] = new photo(664404,'37488','','gallery','timesup.jpg',480,431,'Times up by Clive Power','timesup_thumb.jpg',130, 117,0, 0,'','','','');
photos[193] = new photo(664405,'37488','','gallery','waiting2.jpg',480,320,'Waiting by Clive Power','waiting2_thumb.jpg',130, 87,0, 0,'','','','');
photos[194] = new photo(665462,'37488','','gallery','lostchefs.jpg',500,325,'Lost Chefs by Geoff Sutton','lostchefs_thumb.jpg',130, 85,0, 0,'','','','');
photos[195] = new photo(665466,'37488','','gallery','traindriverandmate.jpg',500,333,'Train driver and mate by Geoff Sutton ','traindriverandmate_thumb.jpg',130, 87,0, 0,'','','','');
photos[196] = new photo(665477,'37488','','gallery','RushHour.jpg',500,320,'Rush hour by Marcus Hargis','RushHour_thumb.jpg',130, 83,0, 0,'','','','');
photos[197] = new photo(667154,'37488','','gallery','BoyRidingOnEdinburghBus.jpg',500,333,'Boy riding on Edingurgh bus by Joseph Colligan','BoyRidingOnEdinburghBus_thumb.jpg',130, 87,0, 0,'','','','');
photos[198] = new photo(667155,'37488','','gallery','ManWithDogOnEdinburghBus.jpg',500,333,'Man with dog on Edinburgh bus by Joseph Colligan','ManWithDogOnEdinburghBus_thumb.jpg',130, 87,0, 0,'','','','');
photos[199] = new photo(667157,'37488','','gallery','Happy times..jpg',500,344,'Happy times by Valdis Dannenbergs','Happy times_thumb..jpg',130, 89,0, 0,'','','','');
photos[200] = new photo(667159,'37488','','gallery','HorsemanDublin..jpg',500,375,'Horseman - Dublin by Valdis Dannenbergs','HorsemanDublin_thumb..jpg',130, 98,0, 0,'','','','');
photos[201] = new photo(669962,'37488','','gallery','Charity.jpg',500,356,'Charity by Paul Russell','Charity_thumb.jpg',130, 93,0, 0,'','','','');
photos[202] = new photo(669963,'37488','','gallery','Modes_of_transport.jpg',500,321,'Modes of transport by Paul Russell','Modes_of_transport_thumb.jpg',130, 83,0, 0,'','','','');
photos[203] = new photo(670027,'37488','','gallery','marathonrunner.jpg',500,243,'Marathon runner by Ann-Marie Westwood ','marathonrunner_thumb.jpg',130, 63,0, 0,'','','','');
photos[204] = new photo(670028,'37488','','gallery','streetmusicians.jpg',500,333,'Street musicians by Ann-Marie Westwood ','streetmusicians_thumb.jpg',130, 87,0, 0,'','','','');
photos[205] = new photo(670033,'37488','','gallery','growing toes.jpg',500,333,'Growing toes by Janet Millard ','growing toes_thumb.jpg',130, 87,0, 0,'','','','');
photos[206] = new photo(670092,'37488','','gallery','baglady.jpg',500,490,'Bag lady by Joy Nightingale ','baglady_thumb.jpg',130, 127,0, 0,'','','','');
photos[207] = new photo(671183,'37488','','gallery','CitySkate.jpg',320,240,'City skate by Deb Freeman','CitySkate_thumb.jpg',130, 98,0, 0,'','','','');
photos[208] = new photo(671184,'37488','','gallery','cycleclub.jpg',320,240,'Cycle club by Deb Freeman','cycleclub_thumb.jpg',130, 98,0, 0,'','','','');
photos[209] = new photo(671191,'37488','','gallery','Downhill.jpg',440,500,'Downhill by Alexandre Guerra','Downhill_thumb.jpg',130, 148,0, 0,'','','','');
photos[210] = new photo(671193,'37488','','gallery','TwoSeasons.jpg',500,375,'Two Seasons by Alexandre Guerra ','TwoSeasons_thumb.jpg',130, 98,0, 0,'','','','');
photos[211] = new photo(671211,'37488','','gallery','sightseeing.jpeg',500,286,'Sight seeing by Geoff Leedham ','sightseeing_thumb.jpeg',130, 74,0, 0,'','','','');
photos[212] = new photo(672293,'37488','','gallery','oldmanonafrostymorning.jpg',500,347,'Old man on a frosty morning by Martin Morrison','oldmanonafrostymorning_thumb.jpg',130, 90,0, 0,'','','','');
photos[213] = new photo(672302,'37488','','gallery','Eyesoffmyicecream.jpg',500,350,'Eyes off my ice cream by Michael Krynicki','Eyesoffmyicecream_thumb.jpg',130, 91,0, 0,'','','','');
photos[214] = new photo(672304,'37488','','gallery','Funofthefair.jpg',450,315,'Fun of the fair by Michael Krynicki','Funofthefair_thumb.jpg',130, 91,0, 0,'','','','');
photos[215] = new photo(672315,'37488','','gallery','whatsthebigissue.jpg',432,432,'What\'s the big issue? by Mike Henthorn ','whatsthebigissue_thumb.jpg',130, 130,0, 0,'','','','');
photos[216] = new photo(672316,'37488','','gallery','harddaysend.jpg',432,432,'Hard days end by Mike Henthorn ','harddaysend_thumb.jpg',130, 130,0, 0,'','','','');
photos[217] = new photo(672363,'37488','','gallery','Cancer.jpg',499,342,'Cancer by Scott Murray','Cancer_thumb.jpg',130, 89,0, 0,'','','','');
photos[218] = new photo(672387,'37488','','gallery','Nottingham.jpg',500,347,'Nottingham by Andy Cardinal','Nottingham_thumb.jpg',130, 90,0, 0,'','','','');
photos[219] = new photo(672946,'37488','','gallery','solitarysoles.jpg',500,290,'Solitary soles by Matthew Baumgart','solitarysoles_thumb.jpg',130, 75,0, 0,'','','','');
photos[220] = new photo(672981,'37488','','gallery','bagel.jpg',400,319,'Bagel by Agnese Sanvito ','bagel_thumb.jpg',130, 104,0, 0,'','','','');
photos[221] = new photo(672983,'37488','','gallery','domino.jpg',500,366,'Domino by Agnese Sanvito ','domino_thumb.jpg',130, 95,0, 0,'','','','');
photos[222] = new photo(673320,'37488','','gallery','WildDJ.jpg',500,333,'Wild DJ by Robin Windisch','WildDJ_thumb.jpg',130, 87,0, 0,'','','','');
photos[223] = new photo(673324,'37488','','gallery','OutWithTheBoys.jpg',500,332,'Out with the boys by Robin Windisch','OutWithTheBoys_thumb.jpg',130, 86,0, 0,'','','','');
photos[224] = new photo(673335,'37488','','gallery','Haveyoubeentangoed.jpg',409,307,'Have you been tangoed? by Margaret Hart ','Haveyoubeentangoed_thumb.jpg',130, 98,0, 0,'','','','');
photos[225] = new photo(673338,'37488','','gallery','Rememberingwhatsimportant.jpg',409,307,'Remembering what\'s important by Margaret Hart ','Rememberingwhatsimportant_thumb.jpg',130, 98,0, 0,'','','','');
photos[226] = new photo(673440,'37488','','gallery','madisonreads.jpg',500,364,'Madison reads by Malcolm Brett ','madisonreads_thumb.jpg',130, 95,0, 0,'','','','');
photos[227] = new photo(673441,'37488','','gallery','mrkelley.jpg',500,400,'Mr Kelley by Malcolm Brett ','mrkelley_thumb.jpg',130, 104,0, 0,'','','','');
photos[228] = new photo(674055,'37488','','gallery','Kenny.jpg',500,385,'Kenny by Richard Webster ','Kenny_thumb.jpg',130, 100,0, 0,'','','','');
photos[229] = new photo(674056,'37488','','gallery','Michaela.jpg',500,415,'Michaela by Richard Webster','Michaela_thumb.jpg',130, 108,0, 0,'','','','');
photos[230] = new photo(674069,'37488','','gallery','blueandgoldincairo.jpg',500,339,'Blue and gold in Cairo by Ros Marvin','blueandgoldincairo_thumb.jpg',130, 88,0, 0,'','','','');
photos[231] = new photo(674070,'37488','','gallery','oldcoupleholdinghands.jpg',500,333,'Old couple holding hands by Ros Marvin ','oldcoupleholdinghands_thumb.jpg',130, 87,0, 0,'','','','');
photos[232] = new photo(674087,'37488','','gallery','therealmeninblack.jpg',500,327,'The real men in black by Bidisha Sinha','therealmeninblack_thumb.jpg',130, 85,0, 0,'','','','');
photos[233] = new photo(674098,'37488','','gallery','wallportrait.jpg',500,350,'Wall portrait by Nikki Hill','wallportrait_thumb.jpg',130, 91,0, 0,'','','','');
photos[234] = new photo(674242,'37488','','gallery','Bikers Dublin.jpg',450,335,'Bikers - Dublin  by Philip Rogan ','Bikers Dublin_thumb.jpg',130, 97,0, 0,'','','','');
photos[235] = new photo(674243,'37488','','gallery','Child Brussels.jpg',442,358,'Child - Brussels by Philip Rogan ','Child Brussels_thumb.jpg',130, 105,0, 0,'','','','');
photos[236] = new photo(674259,'37488','','gallery','Scan10225.JPG',429,281,'Bus stop by Christianne Cherry ','Scan10225_thumb.JPG',130, 85,0, 0,'','','','');
photos[237] = new photo(674312,'37488','','gallery','kitchenchaos.jpg',500,333,'Kitchen chaos by Louise Mason ','kitchenchaos_thumb.jpg',130, 87,0, 0,'','','','');
photos[238] = new photo(674350,'37488','','gallery','AtBusStop.jpg',500,414,'At bus stop by Katya Evdokimova ','AtBusStop_thumb.jpg',130, 108,0, 0,'','','','');
photos[239] = new photo(674356,'37488','','gallery','PennyLane.jpg',500,347,'Penny lane by Katya Evdokimova','PennyLane_thumb.jpg',130, 90,0, 0,'','','','');
photos[240] = new photo(674359,'37488','','gallery','Bodaenverano2006.jpg',500,375,'Bodaenverano 2006 by Neil McCrae ','Bodaenverano2006_thumb.jpg',130, 98,0, 0,'','','','');
photos[241] = new photo(674377,'37488','','gallery','thebeat.jpg',500,375,'The beat by Susanne Hartley ','thebeat_thumb.jpg',130, 98,0, 0,'','','','');
photos[242] = new photo(676748,'37488','','gallery','RaquelLatest.jpg',500,354,'Raquel latest by Jimmy Wilde','RaquelLatest_thumb.jpg',130, 92,0, 0,'','','','');
photos[243] = new photo(676776,'37488','','gallery','aCityWedding.jpg',500,400,'A city wedding by Brian Lavery','aCityWedding_thumb.jpg',130, 104,0, 0,'','','','');
photos[244] = new photo(575594,'37488','','gallery','MikeGreenPeoplemotherandchild.jpg',500,512,'Mother and Child by Mike Green','MikeGreenPeoplemotherandchild_thumb.jpg',130, 133,0, 0,'','','','');
photos[245] = new photo(575591,'37488','','gallery','MikeGreenPeopleguitarbythegas.jpg',500,750,'Guitar by the gas by Mike Green','MikeGreenPeopleguitarbythegas_thumb.jpg',130, 195,0, 0,'','','','');
photos[246] = new photo(582706,'37488','','gallery','Comeonmum001.jpg',427,640,'Come on Mum by Lisa Aldersley','Comeonmum001_thumb.jpg',130, 195,0, 0,'','','','');
photos[247] = new photo(575583,'37488','','gallery','anthonybeckPeoplealansmartJPG.jpg',500,546,'Alan Smart by Anthony Beck','anthonybeckPeoplealansmartJPG_thumb.jpg',130, 142,0, 0,'','','','');
photos[248] = new photo(582510,'37488','','gallery','MichaelBassetPeopelPuppetmaster.jpg',304,425,'Puppet master by Michael Basset','MichaelBassetPeopelPuppetmaster_thumb.jpg',130, 182,0, 0,'','','','');
photos[249] = new photo(567869,'37488','','gallery','chrismolepeoplekorcula.jpg',500,749,'Korcula by Chris Mole','chrismolepeoplekorcula_thumb.jpg',130, 195,0, 0,'','','','');
photos[250] = new photo(504804,'37488','','gallery','ShadePeople.jpg',400,550,'Shade by Mike Modine','ShadePeople_thumb.jpg',130, 179,0, 0,'','','','');
photos[251] = new photo(582594,'37488','','gallery','SScottPeoplehappiness.jpg',500,700,'Happiness by Steve Scott','SScottPeoplehappiness_thumb.jpg',130, 182,0, 0,'','','','');
photos[252] = new photo(662022,'37488','','gallery','Londonpeople1.jpg',500,706,'London people 1 by Tony Humphreys','Londonpeople1_thumb.jpg',130, 184,0, 0,'','','','');
photos[253] = new photo(602729,'37488','','gallery','DISTILLERYDANCER.jpg',491,694,'Distillery Dancer by Ann Alimi','DISTILLERYDANCER_thumb.jpg',130, 184,0, 0,'','','','');
photos[254] = new photo(647571,'37488','','gallery','Montpellier Dancer.jpg',500,468,'Montpellier dancer by Les Baker','Montpellier Dancer_thumb.jpg',130, 122,0, 0,'','','','');
photos[255] = new photo(647572,'37488','','gallery','The Artdealer.jpg',500,559,'The artdealer by Les Baker','The Artdealer_thumb.jpg',130, 145,0, 0,'','','','');
photos[256] = new photo(594859,'37488','','gallery','girlinfountain.ian trower1.jpg',500,751,'Girl in fountain by Ian Trower','girlinfountain_thumb.ian trower1.jpg',130, 195,0, 0,'','','','');
photos[257] = new photo(602749,'37488','','gallery','windyman.jpg',500,667,'Windy man by Denys Attwood','windyman_thumb.jpg',130, 173,0, 0,'','','','');
photos[258] = new photo(645302,'37488','','gallery','the clown.jpg',443,600,'The Clown by Rob Smith','the clown_thumb.jpg',130, 176,0, 0,'','','','');
photos[259] = new photo(647582,'37488','','gallery','roy.jpg',467,622,'Roy by David Meredith','roy_thumb.jpg',130, 173,0, 0,'','','','');
photos[260] = new photo(664403,'37488','','gallery','StreetTheatre.jpg',333,500,'Street theatre by Steve Nightingale','StreetTheatre_thumb.jpg',130, 195,0, 0,'','','','');
photos[261] = new photo(670026,'37488','','gallery','tigergirl.jpg',333,500,'Tiger girl by Phil Millar ','tigergirl_thumb.jpg',130, 195,0, 0,'','','','');
photos[262] = new photo(661956,'37488','','gallery','fleamarketbrussels.jpg',450,679,'Flea market - Brussels by Sarah Gilbert ','fleamarketbrussels_thumb.jpg',130, 196,0, 0,'','','','');
photos[263] = new photo(674333,'37488','','gallery','roofers Le Puy en Velay.JPG',333,500,'Roofers Le Puy en Valey by Andrew Currie ','roofers Le Puy en Velay_thumb.JPG',130, 195,0, 0,'','','','');
photos[264] = new photo(628423,'37488','','gallery','Girl without the earing.jpg',350,465,'Girl without the earing by Richard Oakland','Girl without the earing_thumb.jpg',130, 173,0, 0,'','','','');
photos[265] = new photo(674271,'37488','','gallery','cooldude.jpg',357,500,'Cool Dude by Derek McHattie','cooldude_thumb.jpg',130, 182,0, 0,'','','','');
photos[266] = new photo(636803,'37488','','gallery','BeggersMillenium.jpg',500,747,'Beggars Millenium by Neil McCrae','BeggersMillenium_thumb.jpg',130, 194,0, 0,'','','','');
photos[267] = new photo(628424,'37488','','gallery','watching and waiting urban.jpg',400,443,'Watching and waiting urban by Richard Oakland ','watching and waiting urban_thumb.jpg',130, 144,0, 0,'','','','');
photos[268] = new photo(628403,'37488','','gallery','streethang.jpg',488,500,'Street hang by Lara Wechsler','streethang_thumb.jpg',130, 133,0, 0,'','','','');
photos[269] = new photo(671188,'37488','','gallery','Marionette.jpg',500,747,'Marionette by Tony Karger ','Marionette_thumb.jpg',130, 194,0, 0,'','','','');
photos[270] = new photo(618779,'37488','','gallery','trafalgarsquare.jpg',471,500,'Trafalgar Square by Ken Hugill','trafalgarsquare_thumb.jpg',130, 138,0, 0,'','','','');
photos[271] = new photo(676753,'37488','','gallery','WorldCupFinalPenalties.jpg',500,707,'World cup final penalties by Jimmy Wilde','WorldCupFinalPenalties_thumb.jpg',130, 184,0, 0,'','','','');
photos[272] = new photo(674314,'37488','','gallery','absorbedskaterkid.jpg',500,570,'Absorbed skater kid by Andrew Lamberton ','absorbedskaterkid_thumb.jpg',130, 148,0, 0,'','','','');
photos[273] = new photo(671208,'37488','','gallery','foxyfriend.jpeg',378,500,'Foxy friend by Geoff Leedham ','foxyfriend_thumb.jpeg',130, 172,0, 0,'','','','');
photos[274] = new photo(673422,'37488','','gallery','KillingEyes.JPG',365,487,'Killing eyes by Marios Souglides','KillingEyes_thumb.JPG',130, 173,0, 0,'','','','');
photos[275] = new photo(672949,'37488','','gallery','chaoscontrol.jpg',500,878,'Chaos control by Matthew Baumgart','chaoscontrol_thumb.jpg',130, 228,0, 0,'','','','');
photos[276] = new photo(656509,'37488','','gallery','Runners.jpg',339,500,'Runners by Moelwyn Hopkins','Runners_thumb.jpg',130, 192,0, 0,'','','','');
photos[277] = new photo(594874,'37488','','gallery','culture shockpaul croke.jpg',488,500,'Culture Shock by Paul Croke','culture shockpaul croke_thumb.jpg',130, 133,0, 0,'','','','');
photos[278] = new photo(618728,'37488','','gallery','Paris.jpg',405,570,'Paris by Rosie Kelly','Paris_thumb.jpg',130, 183,0, 0,'','','','');
photos[279] = new photo(674330,'37488','','gallery','canal walkers Birmingham.jpg',388,500,'Canal Walkers - Birmingham by Andrew Currie ','canal walkers Birmingham_thumb.jpg',130, 168,0, 0,'','','','');
photos[280] = new photo(661944,'37488','','gallery','NationalMonumentAmsterdam.jpg',357,477,'National monument - Amsterdam by Philip Lawton','NationalMonumentAmsterdam_thumb.jpg',130, 174,0, 0,'','','','');
photos[281] = new photo(670060,'37488','','gallery','peopleinvenice.jpg',500,667,'People in Venice by Ameli Moebius ','peopleinvenice_thumb.jpg',130, 173,0, 0,'','','','');
photos[282] = new photo(592047,'37488','','gallery','Ganges at Dawnscottmwason.jpg',500,625,'Ganges at Dawn by Scott Mawson','Ganges at Dawnscottmwason_thumb.jpg',130, 163,0, 0,'','','','');
photos[283] = new photo(647586,'37488','','gallery','People and their shadows.jpg',320,480,'People and their shadows by Allan Marshall','People and their shadows_thumb.jpg',130, 195,0, 0,'','','','');
photos[284] = new photo(636786,'37488','','gallery','Intheshallows.jpg',500,667,'In the shallows by Jo Livesey-Kilshaw','Intheshallows_thumb.jpg',130, 173,0, 0,'','','','');
photos[285] = new photo(661955,'37488','','gallery','atthemarketnicaragua.jpg',400,638,'At the market - Nicaragua by Sarah Gilbert','atthemarketnicaragua_thumb.jpg',130, 207,0, 0,'','','','');
photos[286] = new photo(618729,'37488','','gallery','Fashionable Birmingham.jpg',500,736,'Fashionable Birmingham by Rosie Kelly','Fashionable Birmingham_thumb.jpg',130, 191,0, 0,'','','','');
photos[287] = new photo(618757,'37488','','gallery','bodyscanner.jpg',500,710,'Bodyscanner by Marjolein den Hartog ','bodyscanner_thumb.jpg',130, 185,0, 0,'','','','');
photos[288] = new photo(647623,'37488','','gallery','UrbanKnight.JPG',500,595,'Urban Knight by Catharine J Anderson','UrbanKnight_thumb.JPG',130, 155,0, 0,'','','','');
photos[289] = new photo(636813,'37488','','gallery','waiting1.jpg',500,400,'Waiting by Nigel Northwood','waiting1_thumb.jpg',130, 104,0, 0,'','','','');
photos[290] = new photo(582949,'37488','','gallery','astrollontheprombernie.jpg',195,260,'A stroll on the prom by Bernie Blackburn','astrollontheprombernie_thumb.jpg',130, 173,0, 0,'','','','');
photos[291] = new photo(602764,'37488','','gallery','Busker in Manchester.jpg',500,726,'Busker in Manchester by Selwa El-Beik','Busker in Manchester_thumb.jpg',130, 189,0, 0,'','','','');
photos[292] = new photo(652114,'37488','','gallery','urbancowboy.jpg',500,584,'Urban cowboy by Nick Blackman','urbancowboy_thumb.jpg',130, 152,0, 0,'','','','');
photos[293] = new photo(636812,'37488','','gallery','emma.jpg',384,480,'Emma by Nigel Northwood ','emma_thumb.jpg',130, 163,0, 0,'','','','');
photos[294] = new photo(670034,'37488','','gallery','vaisakhi festival.jpg',500,750,'Vaisakhi festival by Janet millard ','vaisakhi festival_thumb.jpg',130, 195,0, 0,'','','','');
photos[295] = new photo(670058,'37488','','gallery','csdinhamburg.jpg',500,750,'CSD in Hamburg by Ameli Moebius ','csdinhamburg_thumb.jpg',130, 195,0, 0,'','','','');
photos[296] = new photo(662045,'37488','','gallery','KingForADay.jpg',500,750,'King for a day by Eduard Popescu ','KingForADay_thumb.jpg',130, 195,0, 0,'','','','');
photos[297] = new photo(674097,'37488','','gallery','tommysworld.jpg',500,688,'Tommy\'s world by Nikki Hill','tommysworld_thumb.jpg',130, 179,0, 0,'','','','');
photos[298] = new photo(628405,'37488','','gallery','womaninrain.jpg',332,500,'Woman in rain by Kyle Jones','womaninrain_thumb.jpg',130, 196,0, 0,'','','','');
photos[299] = new photo(582942,'37488','','gallery','bathbuskerdaveh.jpg',500,562,'Bathbusker by Dave Hendy','bathbuskerdaveh_thumb.jpg',130, 146,0, 0,'','','','');
photos[300] = new photo(582944,'37488','','gallery','buskertripticdaveh.jpg',500,707,'Buskertriptic by Dave Hendy','buskertripticdaveh_thumb.jpg',130, 184,0, 0,'','','','');
photos[301] = new photo(670025,'37488','','gallery','thespacecowboy.jpg',374,500,'The space cowboy by Phil Millar ','thespacecowboy_thumb.jpg',130, 174,0, 0,'','','','');
photos[302] = new photo(671190,'37488','','gallery','Thinker.jpg',500,818,'Thinker by Tony Karger ','Thinker_thumb.jpg',130, 213,0, 0,'','','','');
photos[303] = new photo(672307,'37488','','gallery','Cyber Beauty.jpg',338,650,'Cyber beauty by Stephen Chung','Cyber Beauty_thumb.jpg',130, 250,0, 0,'','','','');
photos[304] = new photo(672385,'37488','','gallery','Shadow1.jpg',500,690,'Shadow by Andy Cardinal ','Shadow1_thumb.jpg',130, 179,0, 0,'','','','');
photos[305] = new photo(674269,'37488','','gallery','oldhabannero.jpg',374,500,'Old Habannero by Derek McHattie ','oldhabannero_thumb.jpg',130, 174,0, 0,'','','','');
photos[306] = new photo(674262,'37488','','gallery','Scan10227.JPG',360,503,'Surveyor by Christianne Cherry','Scan10227_thumb.JPG',130, 182,0, 0,'','','','');
photos[307] = new photo(674375,'37488','','gallery','snapping.jpg',450,600,'Snapping by Susanne Hartley ','snapping_thumb.jpg',130, 173,0, 0,'','','','');
photos[308] = new photo(676779,'37488','','gallery','thePrimeInterest.jpg',500,667,'The prime interest by Brian Lavery','thePrimeInterest_thumb.jpg',130, 173,0, 0,'','','','');
photos[309] = new photo(659129,'37488','','gallery','oranges.jpg',400,600,'Oranges! Apples! by Matthew Armitstead','oranges_thumb.jpg',130, 195,0, 0,'','','','');
photos[310] = new photo(659134,'37488','','gallery','rushhourindublin.jpg',500,750,'Rush hour in Dublin by Matthew Armitstead','rushhourindublin_thumb.jpg',130, 195,0, 0,'','','','');
photos[311] = new photo(674086,'37488','','gallery','londoncalling.jpg',500,787,'London calling by Bidisha Sinha','londoncalling_thumb.jpg',130, 205,0, 0,'','','','');
photos[312] = new photo(650553,'37488','','gallery','Waiting-1.jpg',357,413,'Waiting-1 by Diane Bayles','Waiting-1_thumb.jpg',130, 150,0, 0,'','','','');
photos[313] = new photo(650552,'37488','','gallery','upsidedownbusker.jpg',333,500,'Upsidedown busker by Dave Hogan','upsidedownbusker_thumb.jpg',130, 195,0, 0,'','','','');
photos[314] = new photo(596718,'37488','','gallery','parispride.JPG',326,500,'Paris pride by Chris Osborne','parispride_thumb.JPG',130, 199,0, 0,'','','','');
photos[315] = new photo(628408,'37488','','gallery','man powerhosing flats stairwell.jpg',332,500,'Man powerhosing flats stairwell by JB Maher','man powerhosing flats stairwell_thumb.jpg',130, 196,0, 0,'','','','');
photos[316] = new photo(659149,'37488','','gallery','TapDancer.jpg',500,704,'Tap Dancer by Angelique Snutch','TapDancer_thumb.jpg',130, 183,0, 0,'','','','');
photos[317] = new photo(672305,'37488','','gallery','Are You There.jpg',385,700,'Are you there by Stephen Chung','Are You There_thumb.jpg',130, 236,0, 0,'','','','');
photos[318] = new photo(647583,'37488','','gallery','spike.jpg',465,621,'Spike by David Meredith','spike_thumb.jpg',130, 174,0, 0,'','','','');
photos[319] = new photo(652150,'37488','','gallery','ICECOOL.jpg',250,359,'Ice cool by Fergus Smith','ICECOOL_thumb.jpg',130, 187,0, 0,'','','','');
photos[320] = new photo(645282,'37488','','gallery','New Years Parade - Warming up.jpg',354,500,'New Year\'s Parade by Terry Richer','New Years Parade - Warming up_thumb.jpg',130, 184,0, 0,'','','','');
photos[321] = new photo(647585,'37488','','gallery','People enjoying a break.jpg',320,480,'People enjoying a break by Allan Marshall','People enjoying a break_thumb.jpg',130, 195,0, 0,'','','','');
photos[322] = new photo(673429,'37488','','gallery','ThinkingInTheMall.JPG',365,487,'Thinking in the mall by Marios Souglides','ThinkingInTheMall_thumb.JPG',130, 173,0, 0,'','','','');
photos[323] = new photo(625999,'37488','','gallery','nativeinthecity.jpg',500,750,'Native in the city by Dave Cox','nativeinthecity_thumb.jpg',130, 195,0, 0,'','','','');
photos[324] = new photo(662042,'37488','','gallery','musician6.jpg',500,636,'Musician by Keith Dowling ','musician6_thumb.jpg',130, 165,0, 0,'','','','');
photos[325] = new photo(650563,'37488','','gallery','thelonesmoker.jpg',500,714,'The lone smoker by Benjamin Fenech','thelonesmoker_thumb.jpg',130, 186,0, 0,'','','','');
photos[326] = new photo(487424,'37488','','gallery','Marisa Potter Egyptian Women.jpg',400,538,'Egyptian Women by Marisa Potter','Marisa Potter Egyptian Women_thumb.jpg',130, 175,0, 0,'','','','');
photos[327] = new photo(582642,'37488','','gallery','People---Gay-Paris.jpg',495,500,'Gay Paris by Malcolm Niekirk ','People---Gay-Paris_thumb.jpg',130, 131,0, 0,'','','','');
photos[328] = new photo(487387,'37488','','gallery','hunterveryveryhotchips.jpg',406,599,'Very, very hot chips by Tony Hunter','hunterveryveryhotchips_thumb.jpg',130, 192,0, 0,'','','','');
photos[329] = new photo(582613,'37488','','gallery','asbpeopleWithgranmaShanghai.jpg',500,500,'With Grandma Shanghai by Asbjorn M. Olsen<br>\n','asbpeopleWithgranmaShanghai_thumb.jpg',130, 130,0, 0,'','','','');
photos[330] = new photo(582171,'37488','','gallery','TonyWilloughbyPeopleoldmaninbluemarrakesh.jpg',500,639,'Old man in Blue Marrakesh by Tony Willoughby ','TonyWilloughbyPeopleoldmaninbluemarrakesh_thumb.jpg',130, 166,0, 0,'','','','');
photos[331] = new photo(582172,'37488','','gallery','fruitsellerinmarrakeshmarketmorocco.jpg',450,606,'Fruit sellers in Marrakesh market by Diane Willoughby','fruitsellerinmarrakeshmarketmorocco_thumb.jpg',130, 175,0, 0,'','','','');
photos[332] = new photo(582170,'37488','','gallery','TonyWilloughbyPeoplemetalworkersinsoukmarrakesh .jpg',500,664,'Metal workers in Souk Marrakesh by Tony Willoughby','TonyWilloughbyPeoplemetalworkersinsoukmarrakesh _thumb.jpg',130, 173,0, 0,'','','','');
photos[333] = new photo(582695,'37488','','gallery','studying.jpg',500,667,'Studying by David Kivlin','studying_thumb.jpg',130, 173,0, 0,'','','','');
photos[334] = new photo(642075,'37488','','gallery','telephoneprotest.jpg',324,500,'Telephone protest by James Goldsmith','telephoneprotest_thumb.jpg',130, 201,0, 0,'','','','');
photos[335] = new photo(582402,'37488','','gallery','ASPopel24h.jpg',332,500,'24 by Anne-Sophie Olive','ASPopel24h_thumb.jpg',130, 196,0, 0,'','','','');
photos[336] = new photo(582370,'37488','','gallery','ChrisShepPeopleAlmost.jpg',296,500,'Almost by Chris Shepherd','ChrisShepPeopleAlmost_thumb.jpg',130, 220,0, 0,'','','','');
photos[337] = new photo(582401,'37488','','gallery','ASPeopleBalcony.jpg',326,500,'Balcony by Anne-Sophie Olive','ASPeopleBalcony_thumb.jpg',130, 199,0, 0,'','','','');
photos[338] = new photo(640357,'37488','','gallery','freedom.JPG',200,266,'Freedom by Urszula Majerska','freedom_thumb.JPG',130, 173,0, 0,'','','','');
photos[339] = new photo(644510,'37488','','gallery','stopsmoking.jpg',500,722,'Stop smoking by Terry Cooper','stopsmoking_thumb.jpg',130, 188,0, 0,'','','','');
photos[340] = new photo(582685,'37488','','gallery','Festival face People.jpg',425,500,'Festival Face by Peter Paterson','Festival face People_thumb.jpg',130, 153,0, 0,'','','','');
photos[341] = new photo(644497,'37488','','gallery','instep.jpg',417,500,'In step by Vince Sparks','instep_thumb.jpg',130, 156,0, 0,'','','','');
photos[342] = new photo(640356,'37488','','gallery','girls.JPG',190,285,'Girls by Urszula Majerska','girls_thumb.JPG',130, 195,0, 0,'','','','');
photos[343] = new photo(582592,'37488','','gallery','SScottPeopleDorothyInBournemouth.jpg',500,750,'Dorothy in Bournemouth by Steve Scott<br>\n','SScottPeopleDorothyInBournemouth_thumb.jpg',130, 195,0, 0,'','','','');
photos[344] = new photo(487327,'38062','','gallery','Bench.jpg',400,353,'Bench by Emma Tumman','Bench_thumb.jpg',130, 115,0, 0,'','','Emma Tumman','');
photos[345] = new photo(487345,'38062','','gallery','forrestblacknesspier.jpg',400,300,'Blackness Pier by Tom Forrest','forrestblacknesspier_thumb.jpg',130, 98,0, 0,'','','','');
photos[346] = new photo(487363,'38062','','gallery','hunterfootbridge.jpg',500,332,'Footbridge by Tony Hunter','hunterfootbridge_thumb.jpg',130, 86,0, 0,'','','','');
photos[347] = new photo(487394,'38062','','gallery','huntertennis.jpg',500,328,'Street Tennis by Tony Hunter','huntertennis_thumb.jpg',130, 85,0, 0,'','','','');
photos[348] = new photo(487448,'38062','','gallery','Modine Henley Dawn.jpg',400,291,'Henley Dawn by Mike Modine','Modine Henley Dawn_thumb.jpg',130, 95,0, 0,'','','','');
photos[349] = new photo(567870,'38062','','gallery','chrismoleopenspacesstpauls.jpg',500,375,'St Pauls by Chris Mole','chrismoleopenspacesstpauls_thumb.jpg',130, 98,0, 0,'','','','');
photos[350] = new photo(567873,'38062','','gallery','chrismoleopenspaceshaywardsheath.jpg',430,319,'Haywards Heath by Chris Mole','chrismoleopenspaceshaywardsheath_thumb.jpg',130, 96,0, 1,'','','','');
photos[351] = new photo(569376,'38062','','gallery','edmcmanusopenspacesbrightondog.jpg',450,300,'Brighton Dog by Ed McManus','edmcmanusopenspacesbrightondog_thumb.jpg',130, 87,0, 0,'','','','');
photos[352] = new photo(569377,'38062','','gallery','edmcmanusopenspacestrolley.jpg',450,301,'Trolley by Ed McManus','edmcmanusopenspacestrolley_thumb.jpg',130, 87,0, 0,'','','','');
photos[353] = new photo(575574,'38062','','gallery','RobWhealOpenSpacesRemainsofBrightonPier.jpg',500,396,'Remains of Brighton Pier by Rob Wheal','RobWhealOpenSpacesRemainsofBrightonPier_thumb.jpg',130, 103,0, 0,'','','','');
photos[354] = new photo(575581,'38062','','gallery','AnthonyBeckOpenSpacesKiteand bike.psdJPG.jpg',500,501,'Kite and Bike by Anthony Beck','AnthonyBeckOpenSpacesKiteand bike_thumb.psdJPG.jpg',130, 130,0, 0,'','','','');
photos[355] = new photo(582185,'38062','','gallery','blow torch art.jpg',500,319,'Blow torch art by Matt Collis','blow torch art_thumb.jpg',130, 83,0, 0,'','','','');
photos[356] = new photo(582186,'38062','','gallery','street music.jpg',500,500,'Street Music by Matt Collis','street music_thumb.jpg',130, 130,0, 0,'','','','');
photos[357] = new photo(582361,'38062','','gallery','Chris ShepOPenRiverPheonix.jpg',500,333,'River Phoenix by Chris Shepherd','Chris ShepOPenRiverPheonix_thumb.jpg',130, 87,0, 0,'','','','');
photos[358] = new photo(582429,'38062','','gallery','asopenspacesParvis Beaubourg.jpg',500,333,'Parvis Beaubourg by Anne-Sophie Olive','asopenspacesParvis Beaubourg_thumb.jpg',130, 87,0, 0,'','','','');
photos[359] = new photo(582600,'38062','','gallery','peterelgaropenschoosedestination.jpg',500,380,'Choose Destination by Peter Elgar','peterelgaropenschoosedestination_thumb.jpg',130, 99,0, 0,'','','','');
photos[360] = new photo(582611,'38062','','gallery','asbopenShanghaidemolation2.jpg',500,335,'Shanghai demolition 2 by Asbjorn M. Olsen','asbopenShanghaidemolation2_thumb.jpg',130, 87,0, 0,'','','','');
photos[361] = new photo(582621,'38062','','gallery','nbopenAlbufeira-Marina-Dolphins.jpg',500,327,'Dolphins Albufeira Marina by Nick Board','nbopenAlbufeira-Marina-Dolphins_thumb.jpg',130, 85,0, 0,'','','','');
photos[362] = new photo(582643,'38062','','gallery','Open-spaces - Left-Bank.jpg',500,401,'Left Bank by Malcolm Niekirk ','Open-spaces - Left-Bank_thumb.jpg',130, 104,0, 0,'','','','');
photos[363] = new photo(582709,'38062','','gallery','aldershotpark.JPG',500,375,'Aldershot Park by Eric Dennison','aldershotpark_thumb.JPG',130, 98,0, 0,'','','','');
photos[364] = new photo(582758,'38062','','gallery','londonsunsetbygarybalmer.jpg',500,334,'London Sunset by Gary Balmer','londonsunsetbygarybalmer_thumb.jpg',130, 87,0, 0,'','','','');
photos[365] = new photo(582821,'38062','','gallery','parklife2006.jpg',300,194,'Park Life 2006 by Kevin McCollum','parklife2006_thumb.jpg',130, 84,0, 0,'','','','');
photos[366] = new photo(582848,'38062','','gallery','thecommutekevmc.jpg',500,332,'The commute by Kevin McCollum','thecommutekevmc_thumb.jpg',130, 86,0, 0,'','','','');
photos[367] = new photo(582939,'38062','','gallery','TukTukceliam.jpg',500,333,'TukTuk by Celia Mannings','TukTukceliam_thumb.jpg',130, 87,0, 0,'','','','');
photos[368] = new photo(585866,'38062','','gallery','Backyard Bee Scott Mawson.jpg',500,400,'Backyard Bee by Scott Mawson','Backyard Bee Scott Mawson_thumb.jpg',130, 104,0, 0,'','','','');
photos[369] = new photo(596703,'38062','','gallery','barburyroundhousewiltshire.jpg',500,333,'Barbury round house, Wiltshire by Lynette Thomas','barburyroundhousewiltshire_thumb.jpg',130, 87,0, 0,'','','','');
photos[370] = new photo(596705,'38062','','gallery','westonbirt.jpg',500,333,'Westonbirt by Lynette Thomas','westonbirt_thumb.jpg',130, 87,0, 0,'','','','');
photos[371] = new photo(596722,'38062','','gallery','edinburghfog.JPG',500,333,'Edinburgh fog by Chris Osborne','edinburghfog_thumb.JPG',130, 87,0, 0,'','','','');
photos[372] = new photo(602747,'38062','','gallery','SUNRISEATEARLBALES PARK.jpg',500,331,'Sunrise at Earlbales park by Ann Alimi','SUNRISEATEARLBALES PARK_thumb.jpg',130, 86,0, 0,'','','','');
photos[373] = new photo(602754,'38062','','gallery','claphamcommon.jpg',500,375,'Clapham Common by Denys Attwood','claphamcommon_thumb.jpg',130, 98,0, 0,'','','','');
photos[374] = new photo(602757,'38062','','gallery','Cleethorpes Beach.jpg',500,375,'Cleethorpes beach by Selwa El-Beik','Cleethorpes Beach_thumb.jpg',130, 98,0, 0,'','','','');
photos[375] = new photo(609555,'38062','','gallery','openaircafe.jpg',500,333,'Open air cafe by Sandra Silver','openaircafe_thumb.jpg',130, 87,0, 0,'','','','');
photos[376] = new photo(609556,'38062','','gallery','flatsbridges.jpg',500,302,'Flats bridges by Sandra Silver','flatsbridges_thumb.jpg',130, 79,0, 0,'','','','');
photos[377] = new photo(618731,'38062','','gallery','The Hidden Mini.jpg',500,405,'The hidden Mini by Rosie Kelly','The Hidden Mini_thumb.jpg',130, 105,0, 0,'','','','');
photos[378] = new photo(618742,'38062','','gallery','The Shoes1.jpg',500,340,'The Shoes by Rosie Kelly ','The Shoes1_thumb.jpg',130, 88,0, 0,'','','','');
photos[379] = new photo(618749,'38062','','gallery','californiadreaming.jpg',500,345,'California dreaming by Marjolein den Hartog','californiadreaming_thumb.jpg',130, 90,0, 0,'','','','');
photos[380] = new photo(618755,'38062','','gallery','holocaustbird.jpg',500,332,'Holocaust bird by Marjolein den Hartog','holocaustbird_thumb.jpg',130, 86,0, 0,'','','','');
photos[381] = new photo(618768,'38062','','gallery','niagarafalls.jpg',500,141,'Niagra falls by Ken Hugill ','niagarafalls_thumb.jpg',130, 37,0, 0,'','','','');
photos[382] = new photo(628386,'38062','','gallery','luton.jpg',279,195,'Luton by Edward Pitcher','luton_thumb.jpg',130, 91,0, 0,'','','','');
photos[383] = new photo(628388,'38062','','gallery','Mayors Office.jpg',500,225,'Mayor\'s office by Kamal Matin ','Mayors Office_thumb.jpg',130, 59,0, 0,'','','','');
photos[384] = new photo(628389,'38062','','gallery','Tower Bridge1.jpg',500,174,'Tower bridge by Kamal Matin','Tower Bridge1_thumb.jpg',130, 45,0, 0,'','','','');
photos[385] = new photo(628400,'38062','','gallery','1amatthebeach.jpg',500,375,'1am at the beach by Alejo Cerrato','1amatthebeach_thumb.jpg',130, 98,0, 0,'','','','');
photos[386] = new photo(628412,'38062','','gallery','kid from above on bike.jpg',500,330,'Kid from above on bike by JB Maher','kid from above on bike_thumb.jpg',130, 86,0, 0,'','','','');
photos[387] = new photo(628425,'38062','','gallery','pulling power.jpg',500,356,'Pulling power by Richard Oakland','pulling power_thumb.jpg',130, 93,0, 0,'','','','');
photos[388] = new photo(628426,'38062','','gallery','watcher on the bank.jpg',500,375,'Watcher on the bank by Richard Oakland','watcher on the bank_thumb.jpg',130, 98,0, 0,'','','','');
photos[389] = new photo(636787,'38062','','gallery','LinfordWood.jpg',500,375,'Linford wood by Jo Livesey-Kilshaw','LinfordWood_thumb.jpg',130, 98,0, 0,'','','','');
photos[390] = new photo(636795,'38062','','gallery','lightshaft.jpg',500,612,'Light shaft by Neil McCrae','lightshaft_thumb.jpg',130, 159,0, 0,'','','','');
photos[391] = new photo(636818,'38062','','gallery','theonlyspace.jpg',500,306,'The only space by Diane Wiloughby','theonlyspace_thumb.jpg',130, 80,0, 0,'','','','');
photos[392] = new photo(636821,'38062','','gallery','silentnight.jpg',500,351,'Silent night by Tony Wiloughby','silentnight_thumb.jpg',130, 91,0, 0,'','','','');
photos[393] = new photo(636828,'38062','','gallery','theforbiddencity.jpg',500,271,'The forbidden city by Tony Wiloughby','theforbiddencity_thumb.jpg',130, 70,0, 0,'','','','');
photos[394] = new photo(638723,'38062','','gallery','londonatnight.jpg.jpg',103,54,'London at Night by Nathaniel Gonzales ','londonatnight_thumb.jpg.jpg',130, 68,0, 0,'','','','');
photos[395] = new photo(638724,'38062','','gallery','dramaoflife.jpg.jpg',120,101,'Drama of Life by Nathaniel Gonzales ','dramaoflife_thumb.jpg.jpg',130, 109,0, 0,'','','','');
photos[396] = new photo(638727,'38062','','gallery','FairLandBridge.jpg',500,375,'Fair Land Bridge by Jean Brookfield','FairLandBridge_thumb.jpg',130, 98,0, 0,'','','','');
photos[397] = new photo(638728,'38062','','gallery','TheLakeby.jpg',500,375,'The Lake by Jean Brookfield<br>\n','TheLakeby_thumb.jpg',130, 98,0, 0,'','','','');
photos[398] = new photo(638767,'38062','','gallery','Waiting....JPG',500,364,'Waiting by Ian Heath','Waiting_thumb....JPG',130, 95,0, 0,'','','','');
photos[399] = new photo(638768,'38062','','gallery','NightFishing.JPG',500,375,'Night Fishing by Ian Heath','NightFishing_thumb.JPG',130, 98,0, 0,'','','','');
photos[400] = new photo(638776,'38062','','gallery','mypointofview.jpg',500,397,'My point of view by Marcus Hargis','mypointofview_thumb.jpg',130, 103,0, 0,'','','','');
photos[401] = new photo(640365,'38062','','gallery','HampsteadHeath.jpg',500,333,'Hampstead Heath by Stephen Hewett','HampsteadHeath_thumb.jpg',130, 87,0, 0,'','','','');
photos[402] = new photo(640366,'38062','','gallery','Regentspark.jpg',500,378,'Regents Park','Regentspark_thumb.jpg',130, 98,0, 0,'','','','');
photos[403] = new photo(644289,'38062','','gallery','Fire.JPG',500,332,'Fire by Iain Donnelly','Fire_thumb.JPG',130, 86,0, 0,'','','','');
photos[404] = new photo(644483,'38062','','gallery','timeout.jpg',500,327,'Time out by Vince Sparks','timeout_thumb.jpg',130, 85,0, 0,'','','','');
photos[405] = new photo(645149,'38062','','gallery','Exodus.jpg',500,256,'Exodus by Fergus Sturrock','Exodus_thumb.jpg',130, 67,0, 0,'','','','');
photos[406] = new photo(645151,'38062','','gallery','Turbine.jpg',500,300,'Turbine by Fergus Sturrock','Turbine_thumb.jpg',130, 78,0, 0,'','','','');
photos[407] = new photo(645277,'38062','','gallery','chestertonmill.jpg',492,369,'Chesterton mill by David Meredith','chestertonmill_thumb.jpg',130, 98,0, 0,'','','','');
photos[408] = new photo(645278,'38062','','gallery','cottage.jpeg',500,375,'Cottage by David Meredith','cottage_thumb.jpeg',130, 98,0, 0,'','','','');
photos[409] = new photo(645293,'38062','','gallery','journeys-end.jpg',500,295,'Journey\'s-end by Rob Smith','journeys-end_thumb.jpg',130, 77,0, 0,'','','','');
photos[410] = new photo(645295,'38062','','gallery','word-on-the-street.jpg',500,362,'Word-on-the-street by Rob Smith','word-on-the-street_thumb.jpg',130, 94,0, 0,'','','','');
photos[411] = new photo(647575,'38062','','gallery','Thames Sunset.jpg',500,419,'Thames Sunset by Les Baker','Thames Sunset_thumb.jpg',130, 109,0, 0,'','','','');
photos[412] = new photo(647589,'38062','','gallery','The open beach in autumn.jpg',500,332,'The open beach in Autumn by Allan Marshall','The open beach in autumn_thumb.jpg',130, 86,0, 0,'','','','');
photos[413] = new photo(647590,'38062','','gallery','The open sea.jpg',500,329,'The open sea by Allan Marshall','The open sea_thumb.jpg',130, 86,0, 0,'','','','');
photos[414] = new photo(647593,'38062','','gallery','angelsunset.jpg',500,376,'Angel sunset by Mike Metcalfe','angelsunset_thumb.jpg',130, 98,0, 0,'','','','');
photos[415] = new photo(647595,'38062','','gallery','summerinthepark.jpg',500,502,'Summer in the park by Mike Metcalfe','summerinthepark_thumb.jpg',130, 131,0, 0,'','','','');
photos[416] = new photo(647621,'38062','','gallery','morning.jpg',500,332,'Morning by Matt Golowczynski','morning_thumb.jpg',130, 86,0, 0,'','','','');
photos[417] = new photo(650257,'38062','','gallery','drinking.JPG',500,376,'Drinking by Andrew Conroy','drinking_thumb.JPG',130, 98,0, 0,'','','','');
photos[418] = new photo(650258,'38062','','gallery','insomnia.jpg',500,376,'Insomnia by Andrew Conroy','insomnia_thumb.jpg',130, 98,0, 0,'','','','');
photos[419] = new photo(650265,'38062','','gallery','fountainswimmers.jpg',500,324,'Fountain swimmers by Lisa Tilley','fountainswimmers_thumb.jpg',130, 84,0, 0,'','','','');
photos[420] = new photo(650271,'38062','','gallery','playgroundnight.jpg',500,333,'Playground night by James Goldsmith','playgroundnight_thumb.jpg',130, 87,0, 0,'','','','');
photos[421] = new photo(650274,'38062','','gallery','tabletennis.jpg',500,333,'Tabletennis by James Goldsmith','tabletennis_thumb.jpg',130, 87,0, 0,'','','','');
photos[422] = new photo(650546,'38062','','gallery','escapism.jpg',500,333,'Escapism by Paul Mansfield','escapism_thumb.jpg',130, 87,0, 0,'','','','');
photos[423] = new photo(650547,'38062','','gallery','seaside zen.jpg',500,332,'Seaside zen by Paul Mansfield','seaside zen_thumb.jpg',130, 86,0, 0,'','','','');
photos[424] = new photo(650550,'38062','','gallery','stpeterssquare.jpg',500,105,'St Peter\'s square by Dave Hogan','stpeterssquare_thumb.jpg',130, 27,0, 0,'','','','');
photos[425] = new photo(650557,'38062','','gallery','lonesometree.jpg',500,262,'Lonesome tree by Terry Cooper','lonesometree_thumb.jpg',130, 68,0, 0,'','','','');
photos[426] = new photo(650558,'38062','','gallery','nakedrambler.jpg',500,283,'Naked rambler by Terry Cooper','nakedrambler_thumb.jpg',130, 74,0, 0,'','','','');
photos[427] = new photo(652101,'38062','','gallery','groundzero.jpg',500,357,'Ground Zero by Nick Blackman','groundzero_thumb.jpg',130, 93,0, 0,'','','','');
photos[428] = new photo(652103,'38062','','gallery','timeout1.jpg',500,371,'Time out by Nick Blackman','timeout1_thumb.jpg',130, 96,0, 0,'','','','');
photos[429] = new photo(652124,'38062','','gallery','steamlorry.jpg',400,301,'Steam lorry by Fergus Smith','steamlorry_thumb.jpg',130, 98,0, 0,'','','','');
photos[430] = new photo(653342,'38062','','gallery','lifeatalamoana.jpg',500,319,'Life at Ala Moana by Benjamin Seto','lifeatalamoana_thumb.jpg',130, 83,0, 0,'','','','');
photos[431] = new photo(656208,'38062','','gallery','Goinnorth.jpg',500,333,'Goin North by Gaetano Cecere ','Goinnorth_thumb.jpg',130, 87,0, 0,'','','','');
photos[432] = new photo(656210,'38062','','gallery','Trains.jpg',500,329,'Trains by Gaetano Cecere','Trains_thumb.jpg',130, 86,0, 0,'','','','');
photos[433] = new photo(656497,'38062','','gallery','day.jpg',500,375,'Day by Micah Dear','day_thumb.jpg',130, 98,0, 0,'','','','');
photos[434] = new photo(656498,'38062','','gallery','night.jpg',500,375,'Night by Micah Dear','night_thumb.jpg',130, 98,0, 0,'','','','');
photos[435] = new photo(659138,'38062','','gallery','CopacabanaBeach.jpg',500,290,'Copacabana Beach by Stuart Harris','CopacabanaBeach_thumb.jpg',130, 75,0, 0,'','','','');
photos[436] = new photo(659144,'38062','','gallery','CarouselFlorence.jpg',500,370,'Carousel Florence by Paul Duffield','CarouselFlorence_thumb.jpg',130, 96,0, 0,'','','','');
photos[437] = new photo(661946,'38062','','gallery','PirelliFactoryMilan.jpg',480,360,'Pirelli factory - Milan by Philip Lawton','PirelliFactoryMilan_thumb.jpg',130, 98,0, 0,'','','','');
photos[438] = new photo(661954,'38062','','gallery','essaouiracitywalls.jpg',495,328,'Essaouira - city wall by Sarah Gilbert','essaouiracitywalls_thumb.jpg',130, 86,0, 0,'','','','');
photos[439] = new photo(661957,'38062','','gallery','pier.JPG',500,375,'Pier by Steven Kinnard ','pier_thumb.JPG',130, 98,0, 0,'','','','');
photos[440] = new photo(661958,'38062','','gallery','shoreview.JPG',500,375,'Shore view by Steve Kinnard','shoreview_thumb.JPG',130, 98,0, 0,'','','','');
photos[441] = new photo(661970,'38062','','gallery','HotwellsBristol.jpg',500,373,'Hotwells Bristol by Elizabeth Restall','HotwellsBristol_thumb.jpg',130, 97,0, 0,'','','','');
photos[442] = new photo(661972,'38062','','gallery','LeisureLondonDockland.jpg',500,350,'Leisure - London Docklands by Elizabeth Restall','LeisureLondonDockland_thumb.jpg',130, 91,0, 0,'','','','');
photos[443] = new photo(662005,'38062','','gallery','Barcelona Sky.JPG',500,375,'Barcelona Sky by Michael Lilley ','Barcelona Sky_thumb.JPG',130, 98,0, 0,'','','','');
photos[444] = new photo(662006,'38062','','gallery','DLR.jpg',500,375,'DLR by Michael Lilley','DLR_thumb.jpg',130, 98,0, 0,'','','','');
photos[445] = new photo(662009,'38062','','gallery','castlefieldmanchester.jpg',500,350,'Castlefield Manchester by Michael Krynicki','castlefieldmanchester_thumb.jpg',130, 91,0, 0,'','','','');
photos[446] = new photo(662014,'38062','','gallery','colourful.jpg',500,333,'Colourful by Adrian Lourie','colourful_thumb.jpg',130, 87,0, 0,'','','','');
photos[447] = new photo(662036,'38062','','gallery','Dunquin1.jpg',500,333,'Dunquin 1 by Keith Dowling ','Dunquin1_thumb.jpg',130, 87,0, 0,'','','','');
photos[448] = new photo(662080,'38062','','gallery','park.jpg',397,264,'Park by Antonia Wozencraft','park_thumb.jpg',130, 86,0, 0,'','','','');
photos[449] = new photo(664407,'38062','','gallery','corniche.jpg',480,320,'Corniche by Clive Power','corniche_thumb.jpg',130, 87,0, 0,'','','','');
photos[450] = new photo(664409,'38062','','gallery','stratfordstation.jpg',432,480,'Stratford station by Clive Power ','stratfordstation_thumb.jpg',130, 144,0, 0,'','','','');
photos[451] = new photo(667149,'38062','','gallery','GirlAtBusStop.jpg',500,333,'Girl at bus stop by Joseph Colligan','GirlAtBusStop_thumb.jpg',130, 87,0, 0,'','','','');
photos[452] = new photo(667150,'38062','','gallery','ViewFromBus.jpg',500,333,'View from bus by Joseph Colligan','ViewFromBus_thumb.jpg',130, 87,0, 0,'','','','');
photos[453] = new photo(667156,'38062','','gallery','Rainy Day.jpg',500,375,'Rainy day by Valdis Dannenbergs','Rainy Day_thumb.jpg',130, 98,0, 0,'','','','');
photos[454] = new photo(669960,'38062','','gallery','Old TownRiga.jpg',500,375,'Old Town - Riga by Valdis Dannenbergs','Old TownRiga_thumb.jpg',130, 98,0, 0,'','','','');
photos[455] = new photo(669973,'38062','','gallery','celticcrosses.jpg',500,333,'Celtic crosses by Phil Millar ','celticcrosses_thumb.jpg',130, 87,0, 0,'','','','');
photos[456] = new photo(670030,'38062','','gallery','roukenglenpond.jpg',500,224,'Roukenglen pond by Ann-Marie Westwood ','roukenglenpond_thumb.jpg',130, 58,0, 0,'','','','');
photos[457] = new photo(670055,'38062','','gallery','hamburgstreet.jpg',500,328,'Hamburg street by Ameli Moebius ','hamburgstreet_thumb.jpg',130, 85,0, 0,'','','','');
photos[458] = new photo(670056,'38062','','gallery','waterlightmusic.jpg',500,332,'Water light music by Ameli Moebius ','waterlightmusic_thumb.jpg',130, 86,0, 0,'','','','');
photos[459] = new photo(670090,'38062','','gallery','citypark.jpg',500,375,'City park by Joy Nightingale ','citypark_thumb.jpg',130, 98,0, 0,'','','','');
photos[460] = new photo(671194,'38062','','gallery','ABreak.jpg',409,510,'A break by Alexadre Guerra ','ABreak_thumb.jpg',130, 162,0, 0,'','','','');
photos[461] = new photo(671215,'38062','','gallery','burnout.jpeg',500,332,'Burn out by Geoff Leedham ','burnout_thumb.jpeg',130, 86,0, 0,'','','','');
photos[462] = new photo(672295,'38062','','gallery','CarWash.jpg',320,240,'Car Wash by Deb Freeman ','CarWash_thumb.jpg',130, 98,0, 0,'','','','');
photos[463] = new photo(672309,'38062','','gallery','Tokyo Traffic.jpg',500,333,'Tokyo traffic by Stephen Chung ','Tokyo Traffic_thumb.jpg',130, 87,0, 0,'','','','');
photos[464] = new photo(672383,'38062','','gallery','Cricket.jpg',500,383,'Cricket by Andy Cardinal','Cricket_thumb.jpg',130, 100,0, 0,'','','','');
photos[465] = new photo(672384,'38062','','gallery','ParkGolf.jpg',500,334,'Park golf by Andy Cardinal','ParkGolf_thumb.jpg',130, 87,0, 0,'','','','');
photos[466] = new photo(672975,'38062','','gallery','auditorium.JPG',400,266,'Auditorium by Agnese Sanvito','auditorium_thumb.JPG',130, 86,0, 0,'','','','');
photos[467] = new photo(672979,'38062','','gallery','londonchathambridge.jpg',350,233,'London - Chatham bridge by Agnese Sanvito','londonchathambridge_thumb.jpg',130, 87,0, 0,'','','','');
photos[468] = new photo(673299,'38062','','gallery','montrealAtNight.jpg',500,216,'Montreal at night by Robin Windisch','montrealAtNight_thumb.jpg',130, 56,0, 0,'','','','');
photos[469] = new photo(673430,'38062','','gallery','Turbine1.JPG',487,365,'Turbine by Marios Souglides','Turbine1_thumb.JPG',130, 97,0, 0,'','','','');
photos[470] = new photo(673432,'38062','','gallery','Turbines.JPG',487,365,'Turbines by Marios Souglides','Turbines_thumb.JPG',130, 97,0, 0,'','','','');
photos[471] = new photo(673444,'38062','','gallery','jetboat.jpg',500,312,'Jet boat by Malcolm Brett ','jetboat_thumb.jpg',130, 81,0, 0,'','','','');
photos[472] = new photo(674073,'38062','','gallery','cairomosque.jpg',500,334,'Cairo Mosque by Ros Marvin','cairomosque_thumb.jpg',130, 87,0, 0,'','','','');
photos[473] = new photo(674081,'38062','','gallery','urbanlevitation.jpg',500,343,'Urban levitation by Bidisha Sinha','urbanlevitation_thumb.jpg',130, 89,0, 0,'','','','');
photos[474] = new photo(674085,'38062','','gallery','beyondrelief.jpg',499,353,'Beyond relief by Bidisha Sinha','beyondrelief_thumb.jpg',130, 92,0, 0,'','','','');
photos[475] = new photo(674096,'38062','','gallery','bignames.jpg',500,675,'Big names by Nikki Hill','bignames_thumb.jpg',130, 176,0, 0,'','','','');
photos[476] = new photo(674251,'38062','','gallery','tunnel1jpg.jpg',500,375,'Tunnel1 by Oliver Walker ','tunnel1jpg_thumb.jpg',130, 98,0, 0,'','','','');
photos[477] = new photo(674291,'38062','','gallery','allweathertenniscourts.jpg',500,407,'All-weather tennis court by Andrew Lamberton ','allweathertenniscourts_thumb.jpg',130, 106,0, 0,'','','','');
photos[478] = new photo(674349,'38062','','gallery','PowerStation.jpg',500,408,'Power Station by Katya Evdokimova','PowerStation_thumb.jpg',130, 106,0, 0,'','','','');
photos[479] = new photo(676763,'38062','','gallery','HighgateFog.jpg',500,321,'Highgate fog by Jimmy Wilde','HighgateFog_thumb.jpg',130, 83,0, 0,'','','','');
photos[480] = new photo(676788,'38062','','gallery','aHiddenCity.jpg',500,404,'A hidden city by Brian Lavery ','aHiddenCity_thumb.jpg',130, 105,0, 0,'','','','');
photos[481] = new photo(676802,'38062','','gallery','Funfair1.jpg',320,211,'Fun fair by Steve Cox ','Funfair1_thumb.jpg',130, 86,0, 0,'','','','');
photos[482] = new photo(572823,'38062','','gallery','roddylennosopenthewideworld.jpeg.jpg',500,332,'RUNNER UP: The wide world by Roddy Lennox','roddylennosopenthewideworld_thumb.jpeg.jpg',130, 86,1, 1,'','','','');
photos[483] = new photo(596724,'38062','','gallery','prestonfieldgolfcourseedinburgh.JPG',500,500,'RUNNER UP: Preston Field golf course, Edinburgh by Chris Osborne','prestonfieldgolfcourseedinburgh_thumb.JPG',130, 130,0, 0,'','','','');
photos[484] = new photo(582598,'38062','','gallery','peterelgaropensapecsleavalley.jpg',452,500,'Lea Valley by Peter Elgar','peterelgaropensapecsleavalley_thumb.jpg',130, 144,0, 0,'','','','');
photos[485] = new photo(582607,'38062','','gallery','asbopenShanghaidemolition1.jpg',500,670,'Shanghai demolition 1 by Asbjorn M. Olsen','asbopenShanghaidemolition1_thumb.jpg',130, 174,0, 0,'','','','');
photos[486] = new photo(640352,'38062','','gallery','Reflect.jpg',334,500,'Reflect by Mike Byrne','Reflect_thumb.jpg',130, 195,0, 0,'','','','');
photos[487] = new photo(582428,'38062','','gallery','asopensapecsUnder the bridge.jpg',332,500,'Under the bridge by Anne-Sophie Olive','asopensapecsUnder the bridge_thumb.jpg',130, 196,0, 0,'','','','');
photos[488] = new photo(582623,'38062','','gallery','nbopenspacesVia-Condotti-Rome.jpg',273,500,'Via Condotti Rome by Nick Board','nbopenspacesVia-Condotti-Rome_thumb.jpg',130, 238,0, 0,'','','','');
photos[489] = new photo(670088,'38062','','gallery','skyscraper.jpg',500,750,'Skyscraper by Janet Millard ','skyscraper_thumb.jpg',130, 195,0, 0,'','','','');
photos[490] = new photo(647573,'38062','','gallery','London Eye.jpg',500,714,'London Eye by Les Baker','London Eye_thumb.jpg',130, 186,0, 0,'','','','');
photos[491] = new photo(670089,'38062','','gallery','hands on approach.jpg',500,750,'Hands-on approach by Janet Millard ','hands on approach_thumb.jpg',130, 195,0, 0,'','','','');
photos[492] = new photo(602752,'38062','','gallery','thecity.jpg',500,667,'The city by Denys Attwood','thecity_thumb.jpg',130, 173,0, 0,'','','','');
photos[493] = new photo(636817,'38062','','gallery','thecontemporarygarden.jpg',500,726,'The contemporary garden by Diane Wiloughby','thecontemporarygarden_thumb.jpg',130, 189,0, 0,'','','','');
photos[494] = new photo(628387,'38062','','gallery','conesdocklands.jpg',190,284,'Cones docklands by Edward Pitcher','conesdocklands_thumb.jpg',130, 194,0, 0,'','','','');
photos[495] = new photo(672956,'38062','','gallery','millenniumpark.jpg',500,590,'Millenium park by Matthew Baumgart ','millenniumpark_thumb.jpg',130, 153,0, 0,'','','','');
photos[496] = new photo(636774,'38062','','gallery','42ndstreet.jpg',500,676,'42nd Street by Dave Cox','42ndstreet_thumb.jpg',130, 176,0, 0,'','','','');
photos[497] = new photo(636775,'38062','','gallery','praha.jpg',500,750,'Praha by Dave Cox','praha_thumb.jpg',130, 195,0, 0,'','','','');
photos[498] = new photo(674348,'38062','','gallery','CrystalPalace.jpg',460,500,'Crystal palace by Katya Evdokimova','CrystalPalace_thumb.jpg',130, 141,0, 0,'','','','');
photos[499] = new photo(661945,'38062','','gallery','BiljmerAmsterdam.jpg',288,384,'Biljmer Amsterdam by Philip Lawton','BiljmerAmsterdam_thumb.jpg',130, 173,0, 0,'','','','');
photos[500] = new photo(650248,'38062','','gallery','tulips.jpg',500,606,'Tulips by Jenny Goodfellow','tulips_thumb.jpg',130, 158,0, 0,'','','','');
photos[501] = new photo(674323,'38062','','gallery','flower beds central Birmingham.JPG',233,350,'Flower beds central Birmingham by Andrew Currie ','flower beds central Birmingham_thumb.JPG',130, 195,0, 0,'','','','');
photos[502] = new photo(662015,'38062','','gallery','paradise.jpg',423,600,'Paradise by Adrian Lourie','paradise_thumb.jpg',130, 184,0, 0,'','','','');
photos[503] = new photo(656507,'38062','','gallery','EnjoyingTheUrbanside.jpg',333,500,'Enjoying the urban side by Moelwyn Hopkins','EnjoyingTheUrbanside_thumb.jpg',130, 195,0, 0,'','','','');
photos[504] = new photo(650268,'38062','','gallery','handfountain.jpg',329,500,'Hand fountain by Lisa Tilley','handfountain_thumb.jpg',130, 198,0, 0,'','','','');
photos[505] = new photo(582960,'38062','','gallery','manandmoonbernie.jpg',195,260,'Man and moon by Bernie Blackburn','manandmoonbernie_thumb.jpg',130, 173,0, 0,'','','','');
photos[506] = new photo(628430,'38062','','gallery','bruntsfield.jpg',500,623,'Brunts field by Robbie Graham','bruntsfield_thumb.jpg',130, 162,0, 0,'','','','');
photos[507] = new photo(672308,'38062','','gallery','Its a Great Day.jpg',500,788,'It\'s a great day by Stephen Chung ','Its a Great Day_thumb.jpg',130, 205,0, 0,'','','','');
photos[508] = new photo(674095,'38062','','gallery','blackpooltramlines.jpg',500,750,'Blackpool tramlines by Nikki Hill','blackpooltramlines_thumb.jpg',130, 195,0, 0,'','','','');
photos[509] = new photo(662010,'38062','','gallery','portlandbasinashtonunderlyne.jpg',350,500,'Portland basin - Ashton under Lyne by Michael Krynicki','portlandbasinashtonunderlyne_thumb.jpg',130, 186,0, 0,'','','','');
photos[510] = new photo(647620,'38062','','gallery','bliss.jpg',266,400,'Bliss by Matt Golowczynski','bliss_thumb.jpg',130, 195,0, 0,'','','','');
photos[511] = new photo(662067,'38062','','gallery','PrimroseHill.jpg',334,500,'Primrose Hill by Vanessa Lockett','PrimroseHill_thumb.jpg',130, 195,0, 0,'','','','');
photos[512] = new photo(662081,'38062','','gallery','slide.jpg',377,481,'Slide by Antonia Wozencraft ','slide_thumb.jpg',130, 166,0, 0,'','','','');
photos[513] = new photo(665454,'38062','','gallery','onitskeel.jpg',333,500,'On its keel by Geoff Sutton ','onitskeel_thumb.jpg',130, 195,0, 0,'','','','');
photos[514] = new photo(672313,'38062','','gallery','apennyforthem.jpg',320,480,'A penny for them by Mike Henthorn ','apennyforthem_thumb.jpg',130, 195,0, 0,'','','','');
photos[515] = new photo(602759,'38062','','gallery','Piccadilly Manchester.jpg',500,879,'Piccadilly Manchester by Selwa El-Beik','Piccadilly Manchester_thumb.jpg',130, 229,0, 0,'','','','');
photos[516] = new photo(674253,'38062','','gallery','tunnel2.jpg.jpg',500,667,'Tunnel2 by Oliver Walker','tunnel2_thumb.jpg.jpg',130, 173,0, 0,'','','','');
photos[517] = new photo(656506,'38062','','gallery','BeerGarden.jpg',333,500,'Beer garden by Moelwyn Hopkins','BeerGarden_thumb.jpg',130, 195,0, 0,'','','','');
photos[518] = new photo(628428,'38062','','gallery','BotanicSquirrel.jpg',500,522,'Botanic squirrel by Robbie Graham','BotanicSquirrel_thumb.jpg',130, 136,0, 0,'','','','');
photos[519] = new photo(659164,'38062','','gallery','TrainToNowhere.jpg',366,490,'Train to nowhere by Angelique Snutch','TrainToNowhere_thumb.jpg',130, 174,0, 0,'','','','');
photos[520] = new photo(582687,'38062','','gallery','Blasket Centre open spaces.jpg',380,500,'Blasket Centre by Peter Paterson','Blasket Centre open spaces_thumb.jpg',130, 171,0, 0,'','','','');
photos[521] = new photo(641517,'38062','','gallery','poolsidecat.jpeg',500,750,'Pool side cat by David Taylor','poolsidecat_thumb.jpeg',130, 195,0, 0,'','','','');
photos[522] = new photo(582644,'38062','','gallery','Open-spaces--Eiffel-tower.jpg',497,500,'Eiffel Tower by Malcolm Niekirk ','Open-spaces--Eiffel-tower_thumb.jpg',130, 131,0, 0,'','','','');
photos[523] = new photo(575572,'38062','','gallery','RobWhealOPenSpacesGiverny.jpg',450,675,'Giverny by Rob Wheal','RobWhealOPenSpacesGiverny_thumb.jpg',130, 195,0, 0,'','','','');
photos[524] = new photo(641518,'38062','','gallery','restingplace.jpeg',500,750,'Resting Place by David Taylor','restingplace_thumb.jpeg',130, 195,0, 0,'','','','');
photos[525] = new photo(487334,'38063','','gallery','Everitt_STPAuls.jpg',500,188,'St Paul\'s Cathedral by Steve Everitt','Everitt_STPAuls_thumb.jpg',130, 49,0, 0,'','','Steve Everitt','');
photos[526] = new photo(487338,'38063','','gallery','Everittlondonskyline.jpg',500,278,'London Skyline by Steve Everitt','Everittlondonskyline_thumb.jpg',130, 72,0, 0,'','','','');
photos[527] = new photo(487348,'38063','','gallery','forrestCottrell-Building.jpg',500,365,'Cottrell Building by Tom Forrest','forrestCottrell-Building_thumb.jpg',130, 95,0, 0,'','','','');
photos[528] = new photo(487352,'38063','','gallery','forrestrangemouthrefinery.jpg',400,257,'Grangemouth Finery by Tom Forrest','forrestrangemouthrefinery_thumb.jpg',130, 84,0, 0,'','','','');
photos[529] = new photo(487372,'38063','','gallery','hunterliverpoolcathedral.jpg',500,333,'Liverpool Cathedral by Tony Hunter','hunterliverpoolcathedral_thumb.jpg',130, 87,0, 0,'','','','');
photos[530] = new photo(487429,'38063','','gallery','Marisa Potter Old and New.jpg',500,378,'Old and New by Marisa Potter','Marisa Potter Old and New_thumb.jpg',130, 98,0, 0,'','','','');
photos[531] = new photo(487462,'38063','','gallery','sandalloperhouse.jpg',400,275,'Opera House by Tim Sandall','sandalloperhouse_thumb.jpg',130, 89,0, 0,'','','','');
photos[532] = new photo(498085,'38063','','gallery','Scotia Forth Rail Bridge.jpg',400,281,'Forth Rail Bridge by Sarah Adams','Scotia Forth Rail Bridge_thumb.jpg',130, 91,0, 1,'','','','');
photos[533] = new photo(498091,'38063','','gallery','ScotiaFalkirkMileniumWheel.jpg',400,305,'Falkirk Millenium Wheel by Sarah Adams','ScotiaFalkirkMileniumWheel_thumb.jpg',130, 99,0, 0,'','','','');
photos[534] = new photo(566437,'38063','','gallery','yorkwheel.jpg',500,375,'York Wheel by James Iles','yorkwheel_thumb.jpg',130, 98,0, 0,'','','','');
photos[535] = new photo(567876,'38063','','gallery','chrismolearchrome.jpg',500,348,'Rome by Chris Mole','chrismolearchrome_thumb.jpg',130, 90,0, 0,'','','','');
photos[536] = new photo(567877,'38063','','gallery','chrismolearchromanbuilding.jpg',500,324,'Roman building by Chris Mole','chrismolearchromanbuilding_thumb.jpg',130, 84,0, 0,'','','','');
photos[537] = new photo(569374,'38063','','gallery','edmcmanusarchbrighton.jpg',450,301,'Brighton by Ed McManus','edmcmanusarchbrighton_thumb.jpg',130, 87,0, 0,'','','','');
photos[538] = new photo(572822,'38063','','gallery','ottomehesarchlanchid.jpg',500,344,'Lanchid by Otto Mehes','ottomehesarchlanchid_thumb.jpg',130, 89,0, 0,'','','','');
photos[539] = new photo(582179,'38063','','gallery','JCObservatory1.jpg',500,333,'Observatory by John Courtney','JCObservatory1_thumb.jpg',130, 87,0, 1,'','','','');
photos[540] = new photo(582334,'38063','','gallery','ChrisShepherdArchCitypoint.jpg',500,333,'City point by Chris Shepherd','ChrisShepherdArchCitypoint_thumb.jpg',130, 87,0, 0,'','','','');
photos[541] = new photo(582422,'38063','','gallery','miekarchitectureLowerytheatre.jpg',500,350,'Lowery Theatre by Mike Krynicki','miekarchitectureLowerytheatre_thumb.jpg',130, 91,0, 0,'','','','');
photos[542] = new photo(582426,'38063','','gallery','mikekarchitecthotelSalfordQuays.jpg',500,350,'Salford Quays by Mike Krynicki','mikekarchitecthotelSalfordQuays_thumb.jpg',130, 91,0, 0,'','','','');
photos[543] = new photo(582516,'38063','','gallery','dennisaarchnewlondon.jpg',500,375,'New London by Denys Attwood','dennisaarchnewlondon_thumb.jpg',130, 98,0, 0,'','','','');
photos[544] = new photo(582591,'38063','','gallery','IanCArchgreenwichcanarywharf.jpg',500,375,'Canary Wharf by Ian Cameron','IanCArchgreenwichcanarywharf_thumb.jpg',130, 98,0, 0,'','','','');
photos[545] = new photo(582603,'38063','','gallery','asbarchPinkbankJakarta.jpg',500,500,'Pinkbank Jakarta by Asbjorn M. Olsen<br>\n','asbarchPinkbankJakarta_thumb.jpg',130, 130,0, 0,'','','','');
photos[546] = new photo(582605,'38063','','gallery','asbarchTongkananhouseRantepao.jpg',500,334,'Tongkanan House by Asbjorn M. Olsen','asbarchTongkananhouseRantepao_thumb.jpg',130, 87,0, 0,'','','','');
photos[547] = new photo(582637,'38063','','gallery','Architecture - Louvre pyramid.jpg',500,375,'Louvre Pyramid by Malcolm Niekirk ','Architecture - Louvre pyramid_thumb.jpg',130, 98,0, 0,'','','','');
photos[548] = new photo(582665,'38063','','gallery','glasgowarmadillo.jpg',500,333,'Glasgow Armadillo by Stuart MacLaren','glasgowarmadillo_thumb.jpg',130, 87,0, 1,'','','','');
photos[549] = new photo(582699,'38063','','gallery','framed.jpg',500,375,'Framed by David Kivlin','framed_thumb.jpg',130, 98,0, 0,'','','','');
photos[550] = new photo(582828,'38063','','gallery','meonthebridgekevmc.jpg',500,332,'Me on the bridge by Kevin McCollum','meonthebridgekevmc_thumb.jpg',130, 86,0, 0,'','','','');
photos[551] = new photo(582836,'38063','','gallery','lecturehallkevmc.jpg',500,332,'Lecture Hall by Kevin McCollum','lecturehallkevmc_thumb.jpg',130, 86,0, 0,'','','','');
photos[552] = new photo(582927,'38063','','gallery','StupaSriLankaceliam.jpg',500,333,'StupaSriLanka by Celia Mannings','StupaSriLankaceliam_thumb.jpg',130, 87,0, 0,'','','','');
photos[553] = new photo(585924,'38063','','gallery','tower1 gary balmer.jpg',500,334,'Tower1 by Gary Balmer','tower1 gary balmer_thumb.jpg',130, 87,0, 0,'','','','');
photos[554] = new photo(592053,'38063','','gallery','moderndayarchitecturemichaelking.jpg',480,286,'Modern day architecture by Michael KIng','moderndayarchitecturemichaelking_thumb.jpg',130, 77,0, 0,'','','','');
photos[555] = new photo(592055,'38063','','gallery','citydwellingsmichaelking.jpg',480,319,'City dwellings by Michael King','citydwellingsmichaelking_thumb.jpg',130, 86,0, 0,'','','','');
photos[556] = new photo(594879,'38063','','gallery','roofjohnpilling.jpg',500,375,'Roof by John Pilling','roofjohnpilling_thumb.jpg',130, 98,0, 0,'','','','');
photos[557] = new photo(596695,'38063','','gallery','VioletVilla.jpg',500,353,'Violet Villa by Anthony Beck','VioletVilla_thumb.jpg',130, 92,0, 0,'','','','');
photos[558] = new photo(596707,'38063','','gallery','penapalaceportugal.jpg',500,333,'Pena Palace, Portugal by Lynette Thomas','penapalaceportugal_thumb.jpg',130, 87,0, 0,'','','','');
photos[559] = new photo(596709,'38063','','gallery','gargoylepenapalaceportugal.jpg',500,333,'Gargoyle. Pena Palace, Portugal by Lynette Thomas','gargoylepenapalaceportugal_thumb.jpg',130, 87,0, 0,'','','','');
photos[560] = new photo(596727,'38063','','gallery','glasgowroyalconcerthall.JPG',500,333,'Glasgow Royal Concert Hall by Chris Osborne','glasgowroyalconcerthall_thumb.JPG',130, 87,0, 0,'','','','');
photos[561] = new photo(596738,'38063','','gallery','EdinburghsDisgrace.JPG',500,331,'Edinburgh\'s disgrace by Craig Marren','EdinburghsDisgrace_thumb.JPG',130, 86,0, 0,'','','','');
photos[562] = new photo(602725,'38063','','gallery','FINANCIALDISTRICT.jpg',500,311,'Financial District by Ann Alimi','FINANCIALDISTRICT_thumb.jpg',130, 81,0, 0,'','','','');
photos[563] = new photo(602763,'38063','','gallery','Whitworth Art Gallery Manchester.jpg',500,396,'Whitworth art gallery, Manchester by Selwa El-Beik','Whitworth Art Gallery Manchester_thumb.jpg',130, 103,0, 0,'','','','');
photos[564] = new photo(609548,'38063','','gallery','Blue Room.jpg',500,347,'Blue room by Peter Paterson','Blue Room_thumb.jpg',130, 90,0, 0,'','','','');
photos[565] = new photo(609550,'38063','','gallery','Doors.jpg',500,364,'Doors by Peter Paterson','Doors_thumb.jpg',130, 95,0, 0,'','','','');
photos[566] = new photo(609551,'38063','','gallery','bridgeandbanking.jpg',500,340,'Bridge and Banking by Sandra Silver','bridgeandbanking_thumb.jpg',130, 88,0, 0,'','','','');
photos[567] = new photo(609552,'38063','','gallery','clevelandurbanplant.jpg',500,375,'Cleveland urban plant by Sandra Silver','clevelandurbanplant_thumb.jpg',130, 98,0, 0,'','','','');
photos[568] = new photo(609570,'38063','','gallery','Aya Sophia - Istanbul.jpg',500,333,'Aya Sophia - Istanbul by Kamal Matin','Aya Sophia - Istanbul_thumb.jpg',130, 87,0, 0,'','','','');
photos[569] = new photo(609572,'38063','','gallery','Inside Aya Sophia - Istanbul.jpg',500,333,'Inside Aya Sophia - Istanbul by Kamal Matin','Inside Aya Sophia - Istanbul_thumb.jpg',130, 87,0, 0,'','','','');
photos[570] = new photo(609574,'38063','','gallery','the light.jpg',500,334,'The light by Gary Balmer','the light_thumb.jpg',130, 87,0, 0,'','','','');
photos[571] = new photo(609588,'38063','','gallery','boshamchurch.jpg',500,333,'Bosham church by Neil Monery','boshamchurch_thumb.jpg',130, 87,0, 0,'','','','');
photos[572] = new photo(618725,'38063','','gallery','ifc2.jpeg.jpg',500,333,'IFC2 by Ian Trower','ifc2_thumb.jpeg.jpg',130, 87,0, 0,'','','','');
photos[573] = new photo(618734,'38063','','gallery','Birmingham Selfridges Bullring.jpg',500,334,'Birmingham,Selfridges Bullring by Rosie Kelly','Birmingham Selfridges Bullring_thumb.jpg',130, 87,0, 0,'','','','');
photos[574] = new photo(618746,'38063','','gallery','reichstag.jpg',500,345,'Reichstag by Marjolein den Hartog','reichstag_thumb.jpg',130, 90,0, 0,'','','','');
photos[575] = new photo(618748,'38063','','gallery','nightshift.jpg',500,344,'Nightshift by Marjolein den Hartog','nightshift_thumb.jpg',130, 89,0, 0,'','','','');
photos[576] = new photo(618782,'38063','','gallery','bilbao1.jpg',500,312,'Bilbao 1 by Ken Hugill','bilbao1_thumb.jpg',130, 81,0, 0,'','','','');
photos[577] = new photo(618787,'38063','','gallery','Edinburgh Christmas Skyline.jpg',500,175,'Edinburgh Christmas skyline by Domhnall Dods','Edinburgh Christmas Skyline_thumb.jpg',130, 46,0, 0,'','','','');
photos[578] = new photo(625966,'38063','','gallery','Blaak.jpg',500,375,'Blaak by Cor Boers','Blaak_thumb.jpg',130, 98,0, 0,'','','','');
photos[579] = new photo(625991,'38063','','gallery','gla1.jpg',500,276,'gla1 by Michael Silver','gla1_thumb.jpg',130, 72,0, 0,'','','','');
photos[580] = new photo(626006,'38063','','gallery','operahouse.jpg',500,333,'Opera house by Dave Cox','operahouse_thumb.jpg',130, 87,0, 0,'','','','');
photos[581] = new photo(626008,'38063','','gallery','shanghai1.jpg',500,333,'Shanghi by Dave Cox','shanghai1_thumb.jpg',130, 87,0, 0,'','','','');
photos[582] = new photo(626011,'38063','','gallery','on the road.jpg',500,332,'On the road by Alejo Cerrato.','on the road_thumb.jpg',130, 86,0, 0,'','','','');
photos[583] = new photo(628390,'38063','','gallery','urbanwalk.jpg',284,190,'Urban walk by Edward Pitcher','urbanwalk_thumb.jpg',130, 87,0, 0,'','','','');
photos[584] = new photo(628391,'38063','','gallery','newyork.jpg',269,202,'New york by Edward Pitcher','newyork_thumb.jpg',130, 98,0, 0,'','','','');
photos[585] = new photo(628392,'38063','','gallery','stpauls.jpg',500,500,'St. Pauls by Shaun Hodge','stpauls_thumb.jpg',130, 130,0, 0,'','','','');
photos[586] = new photo(628413,'38063','','gallery','from completion to model.jpg',500,328,'From completion to model by Richard Oakland','from completion to model_thumb.jpg',130, 85,0, 0,'','','','');
photos[587] = new photo(628414,'38063','','gallery','floating support.jpg',500,375,'Floating support by Richard Oakland','floating support_thumb.jpg',130, 98,0, 0,'','','','');
photos[588] = new photo(628433,'38063','','gallery','floors.jpg',500,333,'Floors by Chris','floors_thumb.jpg',130, 87,0, 0,'','','','');
photos[589] = new photo(628435,'38063','','gallery','windows.jpg',270,180,'Windows by Chris','windows_thumb.jpg',130, 87,0, 0,'','','','');
photos[590] = new photo(636780,'38063','','gallery','Empire.jpg',500,375,'Empire by Jo Livesey-Kilshaw','Empire_thumb.jpg',130, 98,0, 0,'','','','');
photos[591] = new photo(636781,'38063','','gallery','Neon.jpg',500,375,'Neon by Jo Livesey-Kilshaw','Neon_thumb.jpg',130, 98,0, 0,'','','','');
photos[592] = new photo(636805,'38063','','gallery','Vanishingpoint.jpg',500,397,'Vanishing point by Neil McCrae','Vanishingpoint_thumb.jpg',130, 103,0, 0,'','','','');
photos[593] = new photo(636810,'38063','','gallery','moderngateshead.jpg',500,359,'Modern Gateshead','moderngateshead_thumb.jpg',130, 93,0, 0,'','','','');
photos[594] = new photo(636811,'38063','','gallery','newcastlequayside.jpeg',500,369,'Newcastle Quayside by Mike Metcalfe','newcastlequayside_thumb.jpeg',130, 96,0, 0,'','','','');
photos[595] = new photo(636814,'38063','','gallery','stmary.jpg',500,333,'St Mary by Nikolay Nikolov','stmary_thumb.jpg',130, 87,0, 0,'','','','');
photos[596] = new photo(636815,'38063','','gallery','windmillsmykonos.jpg',500,345,'Windmills my konos by Nikolay Nikolov','windmillsmykonos_thumb.jpg',130, 90,0, 0,'','','','');
photos[597] = new photo(637064,'38063','','gallery','pragueroofs.jpg',500,376,'Prague Roofs by Stevie Clarke','pragueroofs_thumb.jpg',130, 98,0, 0,'','','','');
photos[598] = new photo(637065,'38063','','gallery','praguesquare.jpg',500,376,'Prague Square by Stevie Clarke','praguesquare_thumb.jpg',130, 98,0, 0,'','','','');
photos[599] = new photo(637068,'38063','','gallery','esplande.jpg',500,373,'Esplande by Robert Ksyniuk<br><br>\n','esplande_thumb.jpg',130, 97,0, 0,'','','','');
photos[600] = new photo(638719,'38063','','gallery','rivernightlight.jpg.jpg',103,50,'River Night Life by Nathaniel Gonzales ','rivernightlight_thumb.jpg.jpg',130, 63,0, 0,'','','','');
photos[601] = new photo(638720,'38063','','gallery','nighteye.jpg.jpg',120,180,'Night Eye by Nathaniel Gonzales ','nighteye_thumb.jpg.jpg',130, 195,0, 0,'','','','');
photos[602] = new photo(638750,'38063','','gallery','TunnelVent.JPG',500,375,'Tunnel Vent by Ian Heath','TunnelVent_thumb.JPG',130, 98,0, 0,'','','','');
photos[603] = new photo(638766,'38063','','gallery','ConcreteBlocks.JPG',500,375,'Concrete Blocks by Ian Heath','ConcreteBlocks_thumb.JPG',130, 98,0, 0,'','','','');
photos[604] = new photo(638773,'38063','','gallery','BuildingwithinanhotelLasVegas.jpg',500,361,'Building within a hotel Las Vegas by Edward Wheeler','BuildingwithinanhotelLasVegas_thumb.jpg',130, 94,0, 0,'','','','');
photos[605] = new photo(638774,'38063','','gallery','GuggenheimMuseum.jpg',500,458,'Guggenheim Museum by Edward Wheeler','GuggenheimMuseum_thumb.jpg',130, 119,0, 0,'','','','');
photos[606] = new photo(640355,'38063','','gallery','Macba.jpg',500,333,'Macba by Mike Byrne','Macba_thumb.jpg',130, 87,0, 0,'','','','');
photos[607] = new photo(640363,'38063','','gallery','Steps.jpg',500,331,'Steps by Stephen Hewett','Steps_thumb.jpg',130, 86,0, 0,'','','','');
photos[608] = new photo(640364,'38063','','gallery','Tower.jpg',500,372,'Tower by Stephen Hewett','Tower_thumb.jpg',130, 97,0, 0,'','','','');
photos[609] = new photo(640372,'38063','','gallery','sagradafamiliabarcelona.JPG',300,200,'Sagrada Familia Barcelona by Julia Kendell','sagradafamiliabarcelona_thumb.JPG',130, 87,0, 0,'','','','');
photos[610] = new photo(642074,'38063','','gallery','glasshouse.jpg',500,333,'Glass house by Gaetano Cecere','glasshouse_thumb.jpg',130, 87,0, 0,'','','','');
photos[611] = new photo(644300,'38063','','gallery','Valencia.JPG',500,332,'Valencia by Iain Donnelly','Valencia_thumb.JPG',130, 86,0, 0,'','','','');
photos[612] = new photo(644303,'38063','','gallery','Hoover.JPG',500,326,'Hoover by Iain Donnelly','Hoover_thumb.JPG',130, 85,0, 0,'','','','');
photos[613] = new photo(644499,'38063','','gallery','Bluebuild.JPG',500,375,'Blue build by Donald Ross','Bluebuild_thumb.JPG',130, 98,0, 0,'','','','');
photos[614] = new photo(644501,'38063','','gallery','Whitechapel.JPG',500,375,'Whitechapel by Donald Ross','Whitechapel_thumb.JPG',130, 98,0, 0,'','','','');
photos[615] = new photo(645135,'38063','','gallery','Louvre.jpg',500,341,'Louvre by Fergus Sturrock','Louvre_thumb.jpg',130, 89,0, 0,'','','','');
photos[616] = new photo(645269,'38063','','gallery','leamingtonspa.jpg',500,202,'Leamington spa by David Meredith','leamingtonspa_thumb.jpg',130, 53,0, 0,'','','','');
photos[617] = new photo(645271,'38063','','gallery','horseguards.jpg',500,154,'Horseguards by David Meredith','horseguards_thumb.jpg',130, 40,0, 0,'','','','');
photos[618] = new photo(645285,'38063','','gallery','Tower Bridge at Night.jpg',500,354,'Tower bridge at night by Terry Richer','Tower Bridge at Night_thumb.jpg',130, 92,0, 0,'','','','');
photos[619] = new photo(645560,'38063','','gallery','Across to stpauls.jpg',500,333,'Across to St Pauls Allan Marshall','Across to stpauls_thumb.jpg',130, 87,0, 0,'','','','');
photos[620] = new photo(645561,'38063','','gallery','New desgins  bt the thames barrier.jpg',500,333,'New designs at the Thames Barrier','New desgins  bt the thames barrier_thumb.jpg',130, 87,0, 0,'','','','');
photos[621] = new photo(650549,'38063','','gallery','spiral_staircase.jpg',500,333,'Spiral staircase by Paul Mansfield','spiral_staircase_thumb.jpg',130, 87,0, 0,'','','','');
photos[622] = new photo(652092,'38063','','gallery','Lourvepyramid .jpg',298,448,'Louvre pyramid by Jonathan Clarke<br><br>\n','Lourvepyramid _thumb.jpg',130, 195,0, 0,'','','','');
photos[623] = new photo(652095,'38063','','gallery','straightlines.jpg',500,325,'Straight lines by Nick Blackman','straightlines_thumb.jpg',130, 85,0, 0,'','','','');
photos[624] = new photo(652116,'38063','','gallery','elgincathedral.jpg',350,251,'Elgin Cathedral by Fergus Smith','elgincathedral_thumb.jpg',130, 93,0, 0,'','','','');
photos[625] = new photo(652119,'38063','','gallery','italianchurch.jpg',350,233,'Italian Church by Fergus Smith','italianchurch_thumb.jpg',130, 87,0, 0,'','','','');
photos[626] = new photo(653350,'38063','','gallery','conservatorymolding.jpg',404,258,'Conservatory moulding by Benjamin Seto','conservatorymolding_thumb.jpg',130, 83,0, 0,'','','','');
photos[627] = new photo(653371,'38063','','gallery','BridgeValencia.jpg',431,289,'Bridge - Valencia by Fred Shively','BridgeValencia_thumb.jpg',130, 87,0, 0,'','','','');
photos[628] = new photo(653374,'38063','','gallery','ArtsSciencesParkValencia.jpg',288,192,'Arts sciences park - Valencia by Fred Shively','ArtsSciencesParkValencia_thumb.jpg',130, 87,0, 0,'','','','');
photos[629] = new photo(656496,'38063','','gallery','bridge.jpg',500,338,'Bridge by Micah Dear','bridge_thumb.jpg',130, 88,0, 0,'','','','');
photos[630] = new photo(656513,'38063','','gallery','Technium.jpg',500,333,'Technium by Moelwyn Hopkins','Technium_thumb.jpg',130, 87,0, 0,'','','','');
photos[631] = new photo(659136,'38063','','gallery','thewindow.jpg',500,324,'The window by Matthew Armitstead','thewindow_thumb.jpg',130, 84,0, 0,'','','','');
photos[632] = new photo(659137,'38063','','gallery','upagainstthewall.jpg',500,299,'Up against the wall by Matthew Armitstead','upagainstthewall_thumb.jpg',130, 78,0, 0,'','','','');
photos[633] = new photo(659141,'38063','','gallery','COLUSEUM.jpg',500,320,'Coluseum by Paul Duffield','COLUSEUM_thumb.jpg',130, 83,0, 0,'','','','');
photos[634] = new photo(659142,'38063','','gallery','PisaReflection.jpg',500,466,'Pisa Reflection by Paul Duffield','PisaReflection_thumb.jpg',130, 121,0, 0,'','','','');
photos[635] = new photo(661961,'38063','','gallery','Alhambra.jpg',500,375,'Alhambra by Kamal Uddin','Alhambra_thumb.jpg',130, 98,0, 0,'','','','');
photos[636] = new photo(661963,'38063','','gallery','LondonDockland.jpg',500,324,'London Dockland by Elizabeth Restall','LondonDockland_thumb.jpg',130, 84,0, 0,'','','','');
photos[637] = new photo(662007,'38063','','gallery','Work in Progress.JPG',500,441,'Work in progress by Michael Lilley','Work in Progress_thumb.JPG',130, 115,0, 0,'','','','');
photos[638] = new photo(662008,'38063','','gallery','VA.JPG',500,332,'V&A by Michael Lilley','VA_thumb.JPG',130, 86,0, 0,'','','','');
photos[639] = new photo(662012,'38063','','gallery','getcarter.jpg',500,343,'Get Carter by Adrian Lourie ','getcarter_thumb.jpg',130, 89,0, 0,'','','','');
photos[640] = new photo(662013,'38063','','gallery','barrowmoonlight.jpg',500,361,'Barrow moonlight by Adrian Lourie ','barrowmoonlight_thumb.jpg',130, 94,0, 0,'','','','');
photos[641] = new photo(662024,'38063','','gallery','thebuildingthatwasntthere.jpg',500,333,'The building that wasn\'t there by Dave Hogan','thebuildingthatwasntthere_thumb.jpg',130, 87,0, 0,'','','','');
photos[642] = new photo(662028,'38063','','gallery','Cathedral 1.jpg',500,333,'Cathedral 1 by Keith Dowling ','Cathedral 1_thumb.jpg',130, 87,0, 0,'','','','');
photos[643] = new photo(662030,'38063','','gallery','Romanesque 1.jpg',500,332,'Romanesque 1 by Keith Dowling','Romanesque 1_thumb.jpg',130, 86,0, 0,'','','','');
photos[644] = new photo(662069,'38063','','gallery','RollerCoaster.jpg',500,333,'Roller Coaster by Vanessa Lockett ','RollerCoaster_thumb.jpg',130, 87,0, 0,'','','','');
photos[645] = new photo(662075,'38063','','gallery','caerphillycastle.JPG',498,374,'Caerphilly Castle by Steven Kinnard ','caerphillycastle_thumb.JPG',130, 98,0, 0,'','','','');
photos[646] = new photo(662076,'38063','','gallery','cityhall.JPG',500,324,'City hall by Steven Kinnard ','cityhall_thumb.JPG',130, 84,0, 0,'','','','');
photos[647] = new photo(662083,'38063','','gallery','bristolreflection.jpg',400,266,'Bristol reflection by Antonia Wozencraft','bristolreflection_thumb.jpg',130, 86,0, 0,'','','','');
photos[648] = new photo(664394,'38063','','gallery','NextStopKualaLumpur.jpg',500,337,'Next stop Kuala Lumpur by Steve Nightingale','NextStopKualaLumpur_thumb.jpg',130, 88,0, 0,'','','','');
photos[649] = new photo(664411,'38063','','gallery','boxesoflight.jpg',480,321,'Boxes of light by Clive Power ','boxesoflight_thumb.jpg',130, 87,0, 0,'','','','');
photos[650] = new photo(664413,'38063','','gallery','lloydsbuilding.jpg',480,318,'Lloyds building by Clive Power','lloydsbuilding_thumb.jpg',130, 86,0, 0,'','','','');
photos[651] = new photo(665445,'38063','','gallery','BridgeToDawn.jpg',281,188,'Bridge to dawn by Stuart Coulson ','BridgeToDawn_thumb.jpg',130, 87,0, 0,'','','','');
photos[652] = new photo(665474,'38063','','gallery','HulmefromAquariusBridge.jpg',500,337,'Hulme from Aquarius Bridge by Marcus Hargis','HulmefromAquariusBridge_thumb.jpg',130, 88,0, 0,'','','','');
photos[653] = new photo(665479,'38063','','gallery','walkway.jpg',500,333,'Walkway by Geoff Sutton ','walkway_thumb.jpg',130, 87,0, 0,'','','','');
photos[654] = new photo(667146,'38063','','gallery','EdinburghCastleFromBus.jpg',500,333,'Edinburgh Castle from bus by Joseph Colligan ','EdinburghCastleFromBus_thumb.jpg',130, 87,0, 0,'','','','');
photos[655] = new photo(667147,'38063','','gallery','EdinburghCastleFromPrincessSt.jpg',500,333,'Edinburgh Castle from Princess st by Joseph Colligan','EdinburghCastleFromPrincessSt_thumb.jpg',130, 87,0, 0,'','','','');
photos[656] = new photo(669966,'38063','','gallery','praguecathedral.jpg',500,333,'Prague Cathedral by Ann-Marie Westwood','praguecathedral_thumb.jpg',130, 87,0, 0,'','','','');
photos[657] = new photo(669967,'38063','','gallery','praguerooftops.jpg',500,333,'Prague rooftops by Ann-Marie Westwood ','praguerooftops_thumb.jpg',130, 87,0, 0,'','','','');
photos[658] = new photo(669970,'38063','','gallery','davidhumetower.jpg',500,333,'David Hume tower by Phil Millar ','davidhumetower_thumb.jpg',130, 87,0, 0,'','','','');
photos[659] = new photo(669971,'38063','','gallery','glasgowtower.jpg',500,333,'Glasgow tower by Phil Millar ','glasgowtower_thumb.jpg',130, 87,0, 0,'','','','');
photos[660] = new photo(670037,'38063','','gallery','clouded vision.jpg',500,333,'Clouded vision by Janet Millard ','clouded vision_thumb.jpg',130, 87,0, 0,'','','','');
photos[661] = new photo(670049,'38063','','gallery','modernparis.jpg',500,333,'Modern Paris by Ameli Moebius','modernparis_thumb.jpg',130, 87,0, 0,'','','','');
photos[662] = new photo(671181,'38063','','gallery','P1010700.jpg',320,240,'City high flyers by Deb Freeman','P1010700_thumb.jpg',130, 98,0, 0,'','','','');
photos[663] = new photo(671186,'38063','','gallery','reflection1.jpg',500,171,'Reflection by Simon Armitage ','reflection1_thumb.jpg',130, 44,0, 0,'','','','');
photos[664] = new photo(671198,'38063','','gallery','TheGates.jpg',500,350,'The gates by Alexandre Guerra','TheGates_thumb.jpg',130, 91,0, 0,'','','','');
photos[665] = new photo(671213,'38063','','gallery','capitaleye.jpeg',500,327,'Capital eye by Geoff Leedham ','capitaleye_thumb.jpeg',130, 85,0, 0,'','','','');
photos[666] = new photo(671214,'38063','','gallery','whichway.jpeg',500,332,'Which way by Geoff Leedham','whichway_thumb.jpeg',130, 86,0, 0,'','','','');
photos[667] = new photo(672298,'38063','','gallery','P1010941.jpg',320,240,'Your call\'s in a queue by Deb Freeman','P1010941_thumb.jpg',130, 98,0, 0,'','','','');
photos[668] = new photo(672321,'38063','','gallery','fountainKL3.jpg',500,375,'FountainKL by Joy Nightingale ','fountainKL3_thumb.jpg',130, 98,0, 0,'','','','');
photos[669] = new photo(672362,'38063','','gallery','haslingden.jpg',432,288,'Haslingden by Mike Henthorn','haslingden_thumb.jpg',130, 87,0, 0,'','','','');
photos[670] = new photo(672366,'38063','','gallery','glasgowreflect.jpg',500,438,'Glasgow reflect by Scott Murray','glasgowreflect_thumb.jpg',130, 114,0, 0,'','','','');
photos[671] = new photo(672377,'38063','','gallery','City.jpg',500,372,'City by Andy Cardinal','City_thumb.jpg',130, 97,0, 0,'','','','');
photos[672] = new photo(672382,'38063','','gallery','Halmor.jpg',500,309,'Halmor by Andy Cardinal','Halmor_thumb.jpg',130, 80,0, 0,'','','','');
photos[673] = new photo(672938,'38063','','gallery','washingtonharbour.jpg',500,382,'Washington harbour by Matthew Baumgart ','washingtonharbour_thumb.jpg',130, 99,0, 0,'','','','');
photos[674] = new photo(672973,'38063','','gallery','batterseapowerstation.jpg',350,233,'Battersea power station by Agnese Sanvito','batterseapowerstation_thumb.jpg',130, 87,0, 0,'','','','');
photos[675] = new photo(673300,'38063','','gallery','MontrealBiosphereAtNight.jpg',500,333,'Montreal biosphere at night by Robin Windisch','MontrealBiosphereAtNight_thumb.jpg',130, 87,0, 0,'','','','');
photos[676] = new photo(673399,'38063','','gallery','Magicmushrooms.jpg',408,294,'Magic mushrooms by Margaret Hart ','Magicmushrooms_thumb.jpg',130, 94,0, 0,'','','','');
photos[677] = new photo(673433,'38063','','gallery','TheWall.JPG',487,365,'The wall by Marios Souglides ','TheWall_thumb.JPG',130, 97,0, 0,'','','','');
photos[678] = new photo(673436,'38063','','gallery','Agora.JPG',487,365,'Agora by Marios Souglides ','Agora_thumb.JPG',130, 97,0, 0,'','','','');
photos[679] = new photo(673451,'38063','','gallery','Friction.jpg',425,306,'Friction by Stephen Chung ','Friction_thumb.jpg',130, 94,0, 0,'','','','');
photos[680] = new photo(674057,'38063','','gallery','Linesandcurves.jpg',500,324,'Lines and curves by Richard Webster','Linesandcurves_thumb.jpg',130, 84,0, 0,'','','','');
photos[681] = new photo(674089,'38063','','gallery','Hurlinghamatnight.jpg',500,313,'Hurling ham at night by Nikki Hill','Hurlinghamatnight_thumb.jpg',130, 81,0, 0,'','','','');
photos[682] = new photo(674090,'38063','','gallery','cheltenhamcollege.jpg',500,360,'Cheltenham college by Nikki Hill','cheltenhamcollege_thumb.jpg',130, 94,0, 0,'','','','');
photos[683] = new photo(674239,'38063','','gallery','Paris Arch.jpg',499,334,'Paris arch by Philip Rogan ','Paris Arch_thumb.jpg',130, 87,0, 0,'','','','');
photos[684] = new photo(674255,'38063','','gallery','Scan10223.JPG',433,283,'Church by Christianne Cherry ','Scan10223_thumb.JPG',130, 85,0, 0,'','','','');
photos[685] = new photo(674258,'38063','','gallery','Scan10224.JPG',427,284,'Cathedral by Christianne Cherry ','Scan10224_thumb.JPG',130, 86,0, 0,'','','','');
photos[686] = new photo(674286,'38063','','gallery','reichstagdomewalkway.jpg',500,383,'Reichstag Dome Walkway by Andrew Lamberton ','reichstagdomewalkway_thumb.jpg',130, 100,0, 0,'','','','');
photos[687] = new photo(674298,'38063','','gallery','accidental art boarded up building Liverpool.JPG',370,246,'Accidental art - boarded up building Liverpool by Andrew Currie','accidental art boarded up building Liverpool_thumb.JPG',130, 86,0, 0,'','','','');
photos[688] = new photo(674303,'38063','','gallery','three centuries Birmingham.JPG',500,333,'Three centuries - Birmingham by Andrew Currie','three centuries Birmingham_thumb.JPG',130, 87,0, 0,'','','','');
photos[689] = new photo(674341,'38063','','gallery','City1.jpg',500,500,'City by Katya Evdokimova','City1_thumb.jpg',130, 130,0, 0,'','','','');
photos[690] = new photo(674342,'38063','','gallery','HomeParking.jpg',500,351,'Home parking by Katya Evdokimova ','HomeParking_thumb.jpg',130, 91,0, 0,'','','','');
photos[691] = new photo(676798,'38063','','gallery','Canary-Wharf.jpg',500,316,'Canary Wharf by Linda Simmonds','Canary-Wharf_thumb.jpg',130, 82,0, 0,'','','','');
photos[692] = new photo(676805,'38063','','gallery','Bridge1.jpg',320,211,'Bridge by Steve Cox ','Bridge1_thumb.jpg',130, 86,0, 0,'','','','');
photos[693] = new photo(582677,'38063','','gallery','calatravafullmoon.jpg',500,333,'2ND PLACE: Calatrava Full moon by Neil Rongstad','calatravafullmoon_thumb.jpg',130, 87,0, 0,'This stunning shot earned Neil a Canon IXUS 900. Originally entered under the Architecture category.','','','');
photos[694] = new photo(582616,'38063','','gallery','nbAlbufeira-Apartments.jpg',328,500,'Albufeira Appartments by Nick Board','nbAlbufeira-Apartments_thumb.jpg',130, 198,0, 0,'','','','');
photos[695] = new photo(504807,'38063','','gallery','TinMineArchitecture.jpg',400,550,'Tin Mine by Mike Modine','TinMineArchitecture_thumb.jpg',130, 179,0, 0,'','','','');
photos[696] = new photo(569375,'38063','','gallery','edmcmanusarchparisstatfine.jpg',450,675,'Paris Statue by Ed McManus<br>\n','edmcmanusarchparisstatfine_thumb.jpg',130, 195,0, 0,'','','','');
photos[697] = new photo(640354,'38063','','gallery','Gaudi.jpg',273,500,'Gaudi by Mike Byrne','Gaudi_thumb.jpg',130, 238,0, 0,'','','','');
photos[698] = new photo(582515,'38063','','gallery','dennisaarchallisblue.jpg',450,600,'Allis Blue by Denys Attwood','dennisaarchallisblue_thumb.jpg',130, 173,0, 0,'','','','');
photos[699] = new photo(676761,'38063','','gallery','TateModern1.jpg',500,704,'Tate Modern by Jimmy Wilde ','TateModern1_thumb.jpg',130, 183,0, 0,'','','','');
photos[700] = new photo(602726,'38063','','gallery','ROYALBANKBUILDING.jpg',480,719,'Royal Bank Building by Ann Alimi','ROYALBANKBUILDING_thumb.jpg',130, 195,0, 0,'','','','');
photos[701] = new photo(671185,'38063','','gallery','Docklands.jpg',500,811,'Docklands by Simon Armitage ','Docklands_thumb.jpg',130, 211,0, 0,'','','','');
photos[702] = new photo(670048,'38063','','gallery','convergence.jpg',500,750,'Convergence by Janet Millard ','convergence_thumb.jpg',130, 195,0, 0,'','','','');
photos[703] = new photo(656220,'38063','','gallery','Colours.jpg',500,625,'Colours by Terry Cooper','Colours_thumb.jpg',130, 163,0, 0,'','','','');
photos[704] = new photo(636837,'38063','','gallery','abbeys-129a.jpg',388,500,'Jedburg abbey by Fiona Brims','abbeys-129a_thumb.jpg',130, 168,0, 0,'','','','');
photos[705] = new photo(636839,'38063','','gallery','Jedburgh.jpg',484,500,'Jedburg by Fiona Brims','Jedburgh_thumb.jpg',130, 134,0, 0,'','','','');
photos[706] = new photo(582965,'38063','','gallery','thecomingstormbernie.jpg',195,260,'The coming storm by Bernie Blackburn','thecomingstormbernie_thumb.jpg',130, 173,0, 0,'','','','');
photos[707] = new photo(618723,'38063','','gallery','ifc.jpeg.jpg',500,751,'IFC by Ian Trower','ifc_thumb.jpeg.jpg',130, 195,0, 0,'','','','');
photos[708] = new photo(661947,'38063','','gallery','LawnRoadFlats.jpg',360,480,'Lawn road flats by Philip Lawton','LawnRoadFlats_thumb.jpg',130, 173,0, 0,'','','','');
photos[709] = new photo(656512,'38063','','gallery','Stadium.jpg',333,500,'Stadium by Moelwyn Hopkins','Stadium_thumb.jpg',130, 195,0, 0,'','','','');
photos[710] = new photo(652098,'38063','','gallery','totalconfusion.jpg',500,546,'Total confusion by Nick Blackman','totalconfusion_thumb.jpg',130, 142,0, 0,'','','','');
photos[711] = new photo(596739,'38063','','gallery','Dropball.JPG',500,754,'Drop ball by Craig Marren','Dropball_thumb.JPG',130, 196,0, 0,'','','','');
photos[712] = new photo(674241,'38063','','gallery','towers nyc.jpg',391,499,'Towers NYC by Philip Rogan ','towers nyc_thumb.jpg',130, 166,0, 0,'','','','');
photos[713] = new photo(673397,'38063','','gallery','1906meets2006.jpg',307,409,'1906 meets 2006 by Margaret Hart ','1906meets2006_thumb.jpg',130, 173,0, 0,'','','','');
photos[714] = new photo(656514,'38063','','gallery','porte-verte.jpg',500,712,'Porte-verte by Rob Smith','porte-verte_thumb.jpg',130, 185,0, 0,'','','','');
photos[715] = new photo(665480,'38063','','gallery','greenshutters.jpg',334,500,'Green shutters by Geoff Sutton ','greenshutters_thumb.jpg',130, 195,0, 0,'','','','');
photos[716] = new photo(670050,'38063','','gallery','stmarkssquarevenice.jpg',500,714,'St. Mark\'s square - Venice by Ameli Moebius','stmarkssquarevenice_thumb.jpg',130, 186,0, 0,'','','','');
photos[717] = new photo(671200,'38063','','gallery','DropBy.jpg',390,520,'Drop by by Alexandre Guerra ','DropBy_thumb.jpg',130, 173,0, 0,'','','','');
photos[718] = new photo(636822,'38063','','gallery','greendoormarrakesh.jpg',500,777,'Green door - Marakesh by Tony Wiloughby','greendoormarrakesh_thumb.jpg',130, 202,0, 0,'','','','');
photos[719] = new photo(674074,'38063','','gallery','staticmotion.jpg',425,604,'Static motion by Bidisha Sinha','staticmotion_thumb.jpg',130, 185,0, 0,'','','','');
photos[720] = new photo(673450,'38063','','gallery','Its High Up There.jpg',500,707,'It\'s high up there by Stephen Chung ','Its High Up There_thumb.jpg',130, 184,0, 0,'','','','');
photos[721] = new photo(596726,'38063','','gallery','berlinu-bahnstation.JPG',346,500,'Berlin U-bahn station by Chris Osborne','berlinu-bahnstation_thumb.JPG',130, 188,0, 0,'','','','');
photos[722] = new photo(645288,'38063','','gallery','British Museum.jpg',333,500,'British Museum by Terry Richer','British Museum_thumb.jpg',130, 195,0, 0,'','','','');
photos[723] = new photo(625969,'38063','','gallery','Deutschebank.jpg',281,375,'Deutsche bank by Cor Boers','Deutschebank_thumb.jpg',130, 173,0, 0,'','','','');
photos[724] = new photo(636823,'38063','','gallery','aubergeilsderoche.jpg',500,637,'Auberge ils Deroche by Tony Wiloughby','aubergeilsderoche_thumb.jpg',130, 166,0, 0,'','','','');
photos[725] = new photo(618781,'38063','','gallery','toronto1.jpg',354,500,'Toronto 1 by Ken Hugill','toronto1_thumb.jpg',130, 184,0, 0,'','','','');
photos[726] = new photo(582964,'38063','','gallery','studyinblueandwhitebernie.jpg',195,260,'Study in blue and white by Bernie Blackburn','studyinblueandwhitebernie_thumb.jpg',130, 173,0, 0,'','','','');
photos[727] = new photo(636806,'38063','','gallery','nightscapeMoorfields.jpg',500,667,'Nightscape Moorfields by Neil McCrae','nightscapeMoorfields_thumb.jpg',130, 173,0, 0,'','','','');
photos[728] = new photo(665471,'38063','','gallery','Window.jpg',500,879,'Window by Marcus Hargis','Window_thumb.jpg',130, 229,0, 0,'','','','');
photos[729] = new photo(673447,'38063','','gallery','southend.jpg',500,751,'Southend by Malcolm Brett','southend_thumb.jpg',130, 195,0, 0,'','','','');
photos[730] = new photo(618784,'38063','','gallery','head.jpg',374,500,'Head by Ken Smith','head_thumb.jpg',130, 174,0, 0,'','','','');
photos[731] = new photo(609586,'38063','','gallery','toweringabove.jpg',500,749,'Towering above by Neil Monery','toweringabove_thumb.jpg',130, 195,0, 0,'','','','');
photos[732] = new photo(661962,'38063','','gallery','OpenWindowLacock.jpg',326,500,'Open window - Laycock by Elizabeth Restall','OpenWindowLacock_thumb.jpg',130, 199,0, 0,'','','','');
photos[733] = new photo(602760,'38063','','gallery','Office Boxes.jpg',500,667,'Office boxes by Selwa El-Beik','Office Boxes_thumb.jpg',130, 173,0, 0,'','','','');
photos[734] = new photo(676801,'38063','','gallery','Canary-Wharf1.jpg',500,667,'Canary Wharf1 by Linda Simmonds ','Canary-Wharf1_thumb.jpg',130, 173,0, 0,'','','','');
photos[735] = new photo(664396,'38063','','gallery','NightInKualaLumpur.jpg',500,616,'Night in Kuala Lumpur by Steve Nightingale','NightInKualaLumpur_thumb.jpg',130, 160,0, 0,'','','','');
photos[736] = new photo(596691,'38063','','gallery','CityofLondontoday.jpg',500,742,'City of London today by Anthony Beck','CityofLondontoday_thumb.jpg',130, 193,0, 0,'','','','');
photos[737] = new photo(609546,'38063','','gallery','northamhighrisesouthampton.jpg',333,500,'Northam highrise, Southampton by James Jagger','northamhighrisesouthampton_thumb.jpg',130, 195,0, 0,'','','','');
photos[738] = new photo(647570,'38063','','gallery','StPauls1.jpg',500,568,'St.Pauls by Les Baker','StPauls1_thumb.jpg',130, 148,0, 0,'','','','');
photos[739] = new photo(662025,'38063','','gallery','mirroredcathedral.jpg',336,450,'Mirrored Cathedral by Dave Hogan','mirroredcathedral_thumb.jpg',130, 174,0, 0,'','','','');
photos[740] = new photo(647614,'38063','','gallery','centredpoint.jpg',500,333,'Centred Point by Matt Golowczynski','centredpoint_thumb.jpg',130, 87,0, 0,'','','','');
photos[741] = new photo(674335,'38063','','gallery','aRedFace.jpg',500,667,'A red face by Brian Lavery ','aRedFace_thumb.jpg',130, 173,0, 0,'','','','');
photos[742] = new photo(676758,'38063','','gallery','CorridorOfUncertainty.jpg',500,704,'Corridor of uncertainty by Jimmy Wilde ','CorridorOfUncertainty_thumb.jpg',130, 183,0, 0,'','','','');
photos[743] = new photo(645140,'38063','','gallery','SouthBank.jpg',500,747,'South Bank by Fergus Sturrock','SouthBank_thumb.jpg',130, 194,0, 0,'','','','');
photos[744] = new photo(609547,'38063','','gallery','northamshoppingparadesouthampton.jpg',384,500,'Notham shopping parade, Southampton by James Jagger','northamshoppingparadesouthampton_thumb.jpg',130, 169,0, 0,'','','','');
photos[745] = new photo(674367,'38063','','gallery','marinewaybridge.jpg',450,600,'Marineway bridge by Susanne Hartley ','marinewaybridge_thumb.jpg',130, 173,0, 0,'','','','');
photos[746] = new photo(674076,'38063','','gallery','urbanrelief.jpg',375,500,'Urban relief by Bidisha Sinha','urbanrelief_thumb.jpg',130, 173,0, 0,'','','','');
photos[747] = new photo(674264,'38063','','gallery','toweringreflections.JPG',500,625,'Towering reflections by James Kileen ','toweringreflections_thumb.JPG',130, 163,0, 0,'','','','');
photos[748] = new photo(672365,'38063','','gallery','Dumbchimnys.jpg',333,500,'Dumb chimnys by Scott Murray','Dumbchimnys_thumb.jpg',130, 195,0, 0,'','','','');
photos[749] = new photo(662056,'38063','','gallery','StPauls2.jpg',500,750,'St Pauls by Eduard Popescu','StPauls2_thumb.jpg',130, 195,0, 0,'','','','');
photos[750] = new photo(647611,'38063','','gallery','two.jpg',332,500,'Two by Matt Golowczynski','two_thumb.jpg',130, 196,0, 0,'','','','');
photos[751] = new photo(665447,'38063','','gallery','TheOldAndTheNewTheFastAndTheSlow2.jpg',375,562,'The old and the new, the fast and the slow 2 by Stuart Coulson','TheOldAndTheNewTheFastAndTheSlow2_thumb.jpg',130, 195,0, 0,'','','','');
photos[752] = new photo(674383,'38063','','gallery','aReflectedGlory.jpg',500,667,'A reflected glory by Brian Lavery ','aReflectedGlory_thumb.jpg',130, 173,0, 0,'','','','');
photos[753] = new photo(662057,'38063','','gallery','TateModern.jpg',500,750,'Tate Modern by Eduard Popescu','TateModern_thumb.jpg',130, 195,0, 0,'','','','');
photos[754] = new photo(618732,'38063','','gallery','Eiffel Tower.jpg',500,686,'Eiffel Tower by Rosie Kelly','Eiffel Tower_thumb.jpg',130, 178,0, 0,'','','','');
photos[755] = new photo(592043,'38063','','gallery','Quaymarisapotter.jpg',500,651,'Quay by Marisa Potter','Quaymarisapotter_thumb.jpg',130, 169,0, 0,'','','','');
photos[756] = new photo(661948,'38063','','gallery','TrellickTower.jpg',357,477,'Trellick tower by Philip Lawton','TrellickTower_thumb.jpg',130, 174,0, 0,'','','','');
photos[757] = new photo(672942,'38063','','gallery','mallceiling.jpg',500,719,'Mall ceiling by Matthew Baumgart','mallceiling_thumb.jpg',130, 187,0, 0,'','','','');
photos[758] = new photo(650548,'38063','','gallery','nocturnal_pavilion.jpg',335,500,'Nocturnal pavilion by Paul Mansfield','nocturnal_pavilion_thumb.jpg',130, 194,0, 0,'','','','');
photos[759] = new photo(656218,'38063','','gallery','belfastblitz.jpg',500,723,'Belfast Blitz by Terry Cooper','belfastblitz_thumb.jpg',130, 188,0, 0,'','','','');
photos[760] = new photo(672971,'38063','','gallery','cityhall1.jpg',233,350,'City hall by Agnese Sanvito ','cityhall1_thumb.jpg',130, 195,0, 0,'','','','');
photos[761] = new photo(659153,'38063','','gallery','OttawaParliamentReflection.jpg',358,500,'Ottawa parliament reflection by Angelique Snutch','OttawaParliamentReflection_thumb.jpg',130, 182,0, 0,'','','','');
photos[762] = new photo(667162,'38063','','gallery','Guinness StorehouseDublin..jpg',334,440,'Guinness storehouse - Dublin by Valdis Dannenbergs','Guinness StorehouseDublin_thumb..jpg',130, 171,0, 0,'','','','');
photos[763] = new photo(662082,'38063','','gallery','industrialmuseum.jpg',266,400,'Industrial museum by Antonia Wozencraft','industrialmuseum_thumb.jpg',130, 195,0, 0,'','','','');
photos[764] = new photo(653394,'38063','','gallery','mundoolinchurch.jpg',400,500,'Mundoolin church by Ann Van Breemen','mundoolinchurch_thumb.jpg',130, 163,0, 0,'','','','');
photos[765] = new photo(628427,'38063','','gallery','fettes.jpg',500,734,'Fettes by Robbie Graham','fettes_thumb.jpg',130, 191,0, 0,'','','','');
photos[766] = new photo(674058,'38063','','gallery','Victoriasquare.jpg',500,681,'Victoria square by Richard Webster','Victoriasquare_thumb.jpg',130, 177,0, 0,'','','','');
photos[767] = new photo(676804,'38063','','gallery','Beetham.jpg',158,240,'Beetham by Steve Cox ','Beetham_thumb.jpg',130, 197,0, 0,'','','','');
photos[768] = new photo(628434,'38063','','gallery','stainless.jpg',300,450,'Stainless by Chris','stainless_thumb.jpg',130, 195,0, 0,'','','','');
photos[769] = new photo(647567,'38063','','gallery','Glass Block.jpg',500,414,'Glass Block by Les Baker','Glass Block_thumb.jpg',130, 108,0, 0,'','','','');
photos[770] = new photo(575570,'38063','','gallery','RobWhealArchLloydsBuildingandSwissRe.jpg',450,507,'Lloyds Building and Swiss Re by Rob Wheal','RobWhealArchLloydsBuildingandSwissRe_thumb.jpg',130, 146,0, 0,'','','','');
photos[771] = new photo(575589,'38063','','gallery','MikeGreenArchsangimignano.jpg',500,707,'Sangimignano by Mike Green','MikeGreenArchsangimignano_thumb.jpg',130, 184,0, 0,'','','','');
photos[772] = new photo(582619,'38063','','gallery','nbregents-park-mosque.jpg',330,500,'Regents Park Mosque by Nick Board','nbregents-park-mosque_thumb.jpg',130, 197,0, 0,'','','','');
photos[773] = new photo(582177,'38063','','gallery','opendoor.jpg',500,727,'Open door by Diane Willoughby','opendoor_thumb.jpg',130, 189,0, 0,'','','','');
photos[774] = new photo(582396,'38063','','gallery','ASArchSky 2.jpg',332,500,'Sky by Anne-Sophie Olive','ASArchSky 2_thumb.jpg',130, 196,0, 0,'','','','');
photos[775] = new photo(582667,'38063','','gallery','glasgowimax.jpg',500,750,'Glasgow Imax by Stuart Maclaren','glasgowimax_thumb.jpg',130, 195,0, 0,'','','','');
photos[776] = new photo(582176,'38063','','gallery','Bizarre.jpg',480,745,'Bizarre by Diane Willoughby','Bizarre_thumb.jpg',130, 202,0, 0,'','','','');
photos[777] = new photo(487368,'38063','','gallery','huntersalfordquays.jpg',399,600,'Salford Quays by Tony Hunter','huntersalfordquays_thumb.jpg',130, 195,0, 0,'','','','');
photos[778] = new photo(487452,'38063','','gallery','Modine St Pauls.jpg',400,550,'St Paul\'s by Mike Modine','Modine St Pauls_thumb.jpg',130, 179,0, 0,'','','','');
photos[779] = new photo(582232,'38063','','gallery','ChrisShepherArchLeftOf-LLoyds.jpg',321,500,'Left of Lloyds by Chris Shepherd<br>\n','ChrisShepherArchLeftOf-LLoyds_thumb.jpg',130, 202,0, 0,'','','','');
photos[780] = new photo(582638,'38063','','gallery','Architecture - Paris skyline.jpg',375,500,'Paris Skyline by Malcolm Niekirk ','Architecture - Paris skyline_thumb.jpg',130, 173,0, 0,'','','','');
photos[781] = new photo(640373,'38063','','gallery','milochimneybarcelona.JPG',350,562,'Milo Chimney Barcelona by Julia Kendell','milochimneybarcelona_thumb.JPG',130, 209,0, 0,'','','','');
photos[782] = new photo(582180,'38063','','gallery','Embankment1.jpg',425,638,'Embankment by John Courtney','Embankment1_thumb.jpg',130, 195,0, 0,'','','','');
photos[783] = new photo(582394,'38063','','gallery','ASArch30 ST Mary Axe 1.jpg',332,500,'St Mary Axe 1 by Anne-Sophie Olive','ASArch30 ST Mary Axe 1_thumb.jpg',130, 196,0, 0,'','','','');
photos[784] = new photo(575571,'38063','','gallery','RobWhealArchMillenniumBridge.jpg',500,750,'Millenium Bridge by Rob Wheal','RobWhealArchMillenniumBridge_thumb.jpg',130, 195,0, 0,'','','','');
photos[785] = new photo(582701,'38063','','gallery','ALBERTCLOCK.jpg',375,500,'Albert Clock by Harry Gilliland','ALBERTCLOCK_thumb.jpg',130, 173,0, 0,'','','','');
photos[786] = new photo(642073,'38063','','gallery','birdinthesky.jpg',333,500,'Bird in the sky by Gaetano Cecere','birdinthesky_thumb.jpg',130, 195,0, 0,'','','','');
photos[787] = new photo(644486,'38063','','gallery','Reflections.jpg',327,500,'Reflections by Vince Sparks','Reflections_thumb.jpg',130, 199,0, 0,'','','','');
photos[788] = new photo(644488,'38063','','gallery','viewinglounge.jpg',333,500,'Viewing lounge by Vince Sparks','viewinglounge_thumb.jpg',130, 195,0, 0,'','','','');
photos[789] = new photo(582698,'38063','','gallery','streets_of_london.jpg',500,548,'Streets of London by David Kivlin','streets_of_london_thumb.jpg',130, 142,0, 0,'','','','');
photos[790] = new photo(487412,'38064','','gallery','hunterthreeglobes.jpg',500,332,'Three Globes by Tony Hunter','hunterthreeglobes_thumb.jpg',130, 86,0, 0,'','','','');
photos[791] = new photo(487433,'38064','','gallery','Masrisa Potter Spiral staircase.jpg',500,596,'Spiral Staircase by Marisa Potter','Masrisa Potter Spiral staircase_thumb.jpg',130, 155,0, 0,'','','','');
photos[792] = new photo(487441,'38064','','gallery','Modine Angkor Wat Sunrise.jpg',400,291,'Angkor Wat Sunrise (Cambodia) by Mike Modine','Modine Angkor Wat Sunrise_thumb.jpg',130, 95,0, 0,'','','','');
photos[793] = new photo(487444,'38064','','gallery','Modine Dali Skyline.jpg',400,291,'Dali Skyline by Mike Modine','Modine Dali Skyline_thumb.jpg',130, 95,0, 0,'','','','');
photos[794] = new photo(487450,'38064','','gallery','Modine Spanish reflections.jpg',400,291,'Spanish Reflections by Mike Modine','Modine Spanish reflections_thumb.jpg',130, 95,0, 1,'','','','');
photos[795] = new photo(487457,'38064','','gallery','ModineVietnemenseLanternworkshop.jpg',400,291,'Vietnemese Lantern Shop by Mike Modine','ModineVietnemenseLanternworkshop_thumb.jpg',130, 95,1, 0,'','','','');
photos[796] = new photo(498092,'38064','','gallery','Washingline.jpg',400,278,'Washing line by Peter Paterson','Washingline_thumb.jpg',130, 90,0, 0,'','','','');
photos[797] = new photo(567880,'38064','','gallery','chrismoleabstractbrighton.jpg',500,433,'Brighton by Chris Mole','chrismoleabstractbrighton_thumb.jpg',130, 113,0, 0,'','','','');
photos[798] = new photo(569373,'38064','','gallery','edmcmanusabstractgreendoor.jpg',450,290,'Green door by Ed McManus','edmcmanusabstractgreendoor_thumb.jpg',130, 84,0, 0,'','','','');
photos[799] = new photo(581891,'38064','','gallery','Catch that trainJPG.jpg',500,332,'Catch that train.... by Anthony Beck<br>\n','Catch that trainJPG_thumb.jpg',130, 86,0, 0,'','','','');
photos[800] = new photo(582168,'38064','','gallery','AnthonyBeckAbstractcircularseatsJPG.jpg',500,554,'Circular Seats by Anthony Beck','AnthonyBeckAbstractcircularseatsJPG_thumb.jpg',130, 144,0, 0,'','','','');
photos[801] = new photo(582174,'38064','','gallery','greenjarbluewall.jpg',490,342,'Green jar blue wall by Diane Willoughby','greenjarbluewall_thumb.jpg',130, 91,0, 0,'','','','');
photos[802] = new photo(582178,'38064','','gallery','basingstoke.jpg',500,375,'Basingstoke by Matthew Denison','basingstoke_thumb.jpg',130, 98,0, 0,'','','','');
photos[803] = new photo(582367,'38064','','gallery','ChrisShepAbstractTowerBridge.jpg',500,350,'Tower Bridge by Chris Shepherd','ChrisShepAbstractTowerBridge_thumb.jpg',130, 91,0, 0,'','','','');
photos[804] = new photo(582419,'38064','','gallery','celiamanningsabstractBluebench.jpg',500,333,'Blue bench by Celia Mannings','celiamanningsabstractBluebench_thumb.jpg',130, 87,0, 0,'','','','');
photos[805] = new photo(582423,'38064','','gallery','mikekabstractSpiderswebingarage.jpg',500,350,'Spider\'s web in garage by Mike Krynicki','mikekabstractSpiderswebingarage_thumb.jpg',130, 91,0, 0,'','','','');
photos[806] = new photo(582511,'38064','','gallery','michalebassteabstractWiremesh.jpg',425,245,'Wire mesh by Michael basset','michalebassteabstractWiremesh_thumb.jpg',130, 75,0, 0,'','','','');
photos[807] = new photo(582513,'38064','','gallery','drw 049.jpg',196,129,'Caernarfon Castle by W Sharon','drw 049_thumb.jpg',130, 86,0, 0,'','','','');
photos[808] = new photo(582514,'38064','','gallery','drw 121.jpg',423,282,'Caernarfon Castle son et lumier by W Sharon','drw 121_thumb.jpg',130, 87,0, 0,'','','','');
photos[809] = new photo(582631,'38064','','gallery','bbabstractlondonjeans.jpg',500,334,'London Jeans by Bogdan Banescu','bbabstractlondonjeans_thumb.jpg',130, 87,0, 0,'','','','');
photos[810] = new photo(582639,'38064','','gallery','Abstract - Light and dark.jpg',500,356,'Light and dark by Malcolm Niekirk ','Abstract - Light and dark_thumb.jpg',130, 93,0, 0,'','','','');
photos[811] = new photo(582676,'38064','','gallery','glasgowfootbridge.jpg',500,423,'Glasgow Footbridge by Stuart Maclaren','glasgowfootbridge_thumb.jpg',130, 110,0, 0,'','','','');
photos[812] = new photo(582692,'38064','','gallery','Fish Painting Abstract.jpg',500,335,'Fish Painting by Peter Paterson','Fish Painting Abstract_thumb.jpg',130, 87,0, 0,'','','','');
photos[813] = new photo(582704,'38064','','gallery','lisa3.jpg',500,400,'Lisa 3 by Lisa Aldersley','lisa3_thumb.jpg',130, 104,0, 0,'','','','');
photos[814] = new photo(582933,'38064','','gallery','Barefootmonksceliam.jpg',500,327,'Barefootmonk by Celia Mannings','Barefootmonksceliam_thumb.jpg',130, 85,0, 0,'','','','');
photos[815] = new photo(585904,'38064','','gallery','Creek Leaf scott mawson.jpg',500,354,'Creek Leaf by Scott Mawson','Creek Leaf scott mawson_thumb.jpg',130, 92,0, 0,'','','','');
photos[816] = new photo(585907,'38064','','gallery','Sunken Leaf scott mawson.jpg',500,400,'Sunken Leaf by Scott Mawson','Sunken Leaf scott mawson_thumb.jpg',130, 104,0, 0,'','','','');
photos[817] = new photo(585913,'38064','','gallery','lanterns Ian trower.jpg',500,326,'Lanterns by Ian Trower','lanterns Ian trower_thumb.jpg',130, 85,0, 0,'','','','');
photos[818] = new photo(585926,'38064','','gallery','fightercommand gary balmer.jpg',500,334,'Fighter command by Gary Balmer','fightercommand gary balmer_thumb.jpg',130, 87,0, 0,'','','','');
photos[819] = new photo(588350,'38064','','gallery','leafkevmc.jpg',500,333,'Leaf#1 by Kevin  McCollum ','leafkevmc_thumb.jpg',130, 87,0, 0,'','','','');
photos[820] = new photo(592045,'38064','','gallery','Spin Spinmarisapotter.jpg',500,375,'Spin Spin by Marisa Potter','Spin Spinmarisapotter_thumb.jpg',130, 98,0, 0,'','','','');
photos[821] = new photo(596675,'38064','','gallery','ststephensplaceedinburghchrisosbourne.jpg',500,333,'St. Stephens place - Edinburgh by Chris Osbborne','ststephensplaceedinburghchrisosbourne_thumb.jpg',130, 87,0, 0,'','','','');
photos[822] = new photo(596682,'38064','','gallery','westerfieldwhiskybondsedinburghchrisosbourne.jpg',500,333,'Westerfield whisky bonds Edinburgh by Chris Osborne','westerfieldwhiskybondsedinburghchrisosbourne_thumb.jpg',130, 87,0, 0,'','','','');
photos[823] = new photo(596686,'38064','','gallery','Commutermotion.jpg',500,335,'Commuter motion by Ben Fillmore','Commutermotion_thumb.jpg',130, 87,0, 0,'','','','');
photos[824] = new photo(596710,'38064','','gallery','graffititram.jpg',500,333,'Graffiti tram by Lynette Thomas','graffititram_thumb.jpg',130, 87,0, 0,'','','','');
photos[825] = new photo(596711,'38064','','gallery','funfair.jpg',500,333,'Fun Fair by Lynette Thomas','funfair_thumb.jpg',130, 87,0, 0,'','','','');
photos[826] = new photo(609553,'38064','','gallery','25thstwallwine.jpg',500,330,'25th street wall wine by Sanrdra Silver','25thstwallwine_thumb.jpg',130, 86,0, 0,'','','','');
photos[827] = new photo(609565,'38064','','gallery','Lanterns.jpg',500,333,'Lanterns by Kamal Matin ','Lanterns_thumb.jpg',130, 87,0, 0,'','','','');
photos[828] = new photo(609567,'38064','','gallery','Open Shutters.jpg',500,333,'Open shutters by Kamal Matin','Open Shutters_thumb.jpg',130, 87,0, 0,'','','','');
photos[829] = new photo(609576,'38064','','gallery','the joker.jpg',500,334,'The joker by Gary Balmer','the joker_thumb.jpg',130, 87,0, 0,'','','','');
photos[830] = new photo(609579,'38064','','gallery','boathousedetail.jpg',500,332,'Boathouse detail by Neil Monery','boathousedetail_thumb.jpg',130, 86,0, 0,'','','','');
photos[831] = new photo(609581,'38064','','gallery','churchflagstones.jpg',500,332,'Church flagstones by Neil Monery','churchflagstones_thumb.jpg',130, 86,0, 0,'','','','');
photos[832] = new photo(618718,'38064','','gallery','deedahdeedah.jpg',500,226,'Dee Dah Dee Dah by Alan Saunders','deedahdeedah_thumb.jpg',130, 59,0, 0,'','','','');
photos[833] = new photo(618738,'38064','','gallery','vacantlot.jpg',500,328,'Vacant lot by Marjolein den Hartog','vacantlot_thumb.jpg',130, 85,0, 0,'','','','');
photos[834] = new photo(618739,'38064','','gallery','scaffolding.jpg',500,332,'Scaffolding by Marjolein den Hartog','scaffolding_thumb.jpg',130, 86,0, 0,'','','','');
photos[835] = new photo(625959,'38064','','gallery','Flyingobject.jpg',500,375,'Flying object by Cor Boers','Flyingobject_thumb.jpg',130, 98,0, 0,'','','','');
photos[836] = new photo(628394,'38064','','gallery','milleniumbridge.jpg',500,333,'Millenium bridge by Shaun Hodge','milleniumbridge_thumb.jpg',130, 87,0, 0,'','','','');
photos[837] = new photo(628398,'38064','','gallery','redwhiteandblue.jpg',500,333,'Red, white and blue by Lara Wechsler','redwhiteandblue_thumb.jpg',130, 87,0, 0,'','','','');
photos[838] = new photo(628399,'38064','','gallery','strippedhat.jpg',500,323,'Stripped hat by Lara Wechsler','strippedhat_thumb.jpg',130, 84,0, 0,'','','','');
photos[839] = new photo(628407,'38064','','gallery','concrete and wood.jpg',500,332,'Concrete and wood by JB Maher','concrete and wood_thumb.jpg',130, 86,0, 0,'','','','');
photos[840] = new photo(628421,'38064','','gallery','fleeting fame.jpg',450,338,'Fleeting fame by Richard Oakland','fleeting fame_thumb.jpg',130, 98,0, 0,'','','','');
photos[841] = new photo(636773,'38064','','gallery','traffic.jpg',500,370,'Traffic by Dave Cox','traffic_thumb.jpg',130, 96,0, 0,'','','','');
photos[842] = new photo(636776,'38064','','gallery','ViewFromtheBridgeofSighs.jpg',500,375,'View from the bridge of sighs by Jo Livesey-Kilshaw','ViewFromtheBridgeofSighs_thumb.jpg',130, 98,0, 0,'','','','');
photos[843] = new photo(636778,'38064','','gallery','Liberty.jpg',500,375,'Liberty by Jo Livesey-Kilshaw','Liberty_thumb.jpg',130, 98,0, 0,'','','','');
photos[844] = new photo(636794,'38064','','gallery','CafeMetallic.jpg',500,375,'Cafe Metalic by Neil McCrae','CafeMetallic_thumb.jpg',130, 98,0, 0,'','','','');
photos[845] = new photo(636820,'38064','','gallery','parked.jpg',500,610,'Parked by Tony Wiloughby','parked_thumb.jpg',130, 159,0, 0,'','','','');
photos[846] = new photo(637066,'38064','','gallery','Chinatownatnight.jpg',500,588,'China Town at Night by Robert Ksyniuk','Chinatownatnight_thumb.jpg',130, 153,0, 0,'','','','');
photos[847] = new photo(638716,'38064','','gallery','aseatinthesun1.jpg',500,348,'A seat in the sun by Tony Willoughby','aseatinthesun1_thumb.jpg',130, 90,0, 0,'','','','');
photos[848] = new photo(638734,'38064','','gallery','imax.jpg',500,375,'imax by Jean Brookfield','imax_thumb.jpg',130, 98,0, 0,'','','','');
photos[849] = new photo(638735,'38064','','gallery','ClosedTavern.jpg',500,375,'Closed Tavern by Jean Brookfield','ClosedTavern_thumb.jpg',130, 98,0, 0,'','','','');
photos[850] = new photo(638738,'38064','','gallery','YellowFlood.JPG',500,375,'Yellow Flood by Ian Heath','YellowFlood_thumb.JPG',130, 98,0, 0,'','','','');
photos[851] = new photo(638740,'38064','','gallery','Greenday.JPG',500,375,'Green Day by Ian Heath','Greenday_thumb.JPG',130, 98,0, 0,'','','','');
photos[852] = new photo(638771,'38064','','gallery','Cranedrive.jpg',500,446,'Crane Drive by Edward Wheeler','Cranedrive_thumb.jpg',130, 116,0, 0,'','','','');
photos[853] = new photo(640358,'38064','','gallery','exhoustpipes.JPG',500,333,'Exhaust pipes by Urszula Majerska','exhoustpipes_thumb.JPG',130, 87,0, 0,'','','','');
photos[854] = new photo(640359,'38064','','gallery','Sunnydayonthewall.jpg',500,333,'Sunday on the wall by Cabbell','Sunnydayonthewall_thumb.jpg',130, 87,0, 0,'','','','');
photos[855] = new photo(640361,'38064','','gallery','BarbedWire.jpg',500,276,'Barbed Wire by Stephen Hewett','BarbedWire_thumb.jpg',130, 72,0, 0,'','','','');
photos[856] = new photo(640369,'38064','','gallery','bindingthecity.jpg',500,333,'Binding the city by Sabine van Gameren','bindingthecity_thumb.jpg',130, 87,0, 0,'','','','');
photos[857] = new photo(640371,'38064','','gallery','aceofspades.jpg',500,335,'Ace of Spades by Maddie Kendell','aceofspades_thumb.jpg',130, 87,0, 0,'','','','');
photos[858] = new photo(641520,'38064','','gallery','horseracing.jpeg',500,332,'Horse racing by David Taylor','horseracing_thumb.jpeg',130, 86,0, 0,'','','','');
photos[859] = new photo(642067,'38064','','gallery','forestoflights.jpg',500,346,'Forest of lights by Mike Metcalfe','forestoflights_thumb.jpg',130, 90,0, 0,'','','','');
photos[860] = new photo(642071,'38064','','gallery','underground.jpg',500,333,'Underground by Gaetano Cecere','underground_thumb.jpg',130, 87,0, 0,'','','','');
photos[861] = new photo(642072,'38064','','gallery','graffiti.jpg',500,325,'Graffiti by Gaetano Cecere','graffiti_thumb.jpg',130, 85,0, 0,'','','','');
photos[862] = new photo(644317,'38064','','gallery','Formula 1.jpg',500,332,'Formula 1 by Iain Donnelly','Formula 1_thumb.jpg',130, 86,0, 0,'','','','');
photos[863] = new photo(644318,'38064','','gallery','Radio Colon.JPG',500,500,'Radio Colon by Iain Donnelly','Radio Colon_thumb.JPG',130, 130,0, 0,'','','','');
photos[864] = new photo(644493,'38064','','gallery','lightandshandow.jpg',500,333,'Light & shadow by Vince Sparks','lightandshandow_thumb.jpg',130, 87,0, 0,'','','','');
photos[865] = new photo(644503,'38064','','gallery','Wandsworth.JPG',500,375,'Wandsworth by Donald Ross','Wandsworth_thumb.JPG',130, 98,0, 0,'','','','');
photos[866] = new photo(644504,'38064','','gallery','web.JPG',500,375,'Web by Donald Ross','web_thumb.JPG',130, 98,0, 0,'','','','');
photos[867] = new photo(645142,'38064','','gallery','TakingaPounding.jpg',500,254,'Taking a pounding by Fergus Sturrock','TakingaPounding_thumb.jpg',130, 66,0, 0,'','','','');
photos[868] = new photo(645264,'38064','','gallery','rubbish.jpg',500,362,'Rubbish by David Meredith','rubbish_thumb.jpg',130, 94,0, 0,'','','','');
photos[869] = new photo(645290,'38064','','gallery','Passion Flower.jpg',500,333,'Passion Flower by Terry Richer','Passion Flower_thumb.jpg',130, 87,0, 0,'','','','');
photos[870] = new photo(645291,'38064','','gallery','St Pauls.jpg',500,321,'St.Paul\'s by Terry Richer','St Pauls_thumb.jpg',130, 83,0, 0,'','','','');
photos[871] = new photo(645562,'38064','','gallery','nowhereeverywhere.jpg',468,328,'No where everywhere by Benjamin Seto','nowhereeverywhere_thumb.jpg',130, 91,0, 0,'','','','');
photos[872] = new photo(645563,'38064','','gallery','streaking.jpg',468,310,'Streaking  by Benjamin Seto','streaking_thumb.jpg',130, 86,0, 0,'','','','');
photos[873] = new photo(647577,'38064','','gallery','Building detail1.jpg',500,375,'Building detail 1 by Les Baker','Building detail1_thumb.jpg',130, 98,0, 0,'','','','');
photos[874] = new photo(647580,'38064','','gallery','Building detail2.jpg',500,375,'Building detail 2 by Les Baker','Building detail2_thumb.jpg',130, 98,0, 0,'','','','');
photos[875] = new photo(647602,'38064','','gallery','thelight.jpg',500,333,'The light by Matt Golowczynski','thelight_thumb.jpg',130, 87,0, 0,'','','','');
photos[876] = new photo(650243,'38064','','gallery','dustyshutters.jpg',500,369,'Dustyshutters by Jenny Goodfellow','dustyshutters_thumb.jpg',130, 96,0, 0,'','','','');
photos[877] = new photo(650260,'38064','','gallery','bridgeclouds.jpg',500,376,'Bridgeclouds by Andrew Conroy','bridgeclouds_thumb.jpg',130, 98,0, 0,'','','','');
photos[878] = new photo(652089,'38064','','gallery','organic-metal.jpg',500,332,'Organic metal by Rob Smith','organic-metal_thumb.jpg',130, 86,0, 0,'','','','');
photos[879] = new photo(652106,'38064','','gallery','remenbrance.jpg',500,424,'Remembrance by Nick Blackman','remenbrance_thumb.jpg',130, 110,0, 0,'','','','');
photos[880] = new photo(652110,'38064','','gallery','ripples.JPG',500,339,'Ripples by Nick Blackman','ripples_thumb.JPG',130, 88,0, 0,'','','','');
photos[881] = new photo(653383,'38064','','gallery','riverabstract.jpg',500,332,'River by ann Van Breemen','riverabstract_thumb.jpg',130, 86,0, 0,'','','','');
photos[882] = new photo(656213,'38064','','gallery','CMKreflections6.jpg',500,184,'CMK reflections6 by Tony Humphreys','CMKreflections6_thumb.jpg',130, 48,0, 0,'','','','');
photos[883] = new photo(656215,'38064','','gallery','lines.jpg',500,346,'Lines by Terry Cooper','lines_thumb.jpg',130, 90,0, 0,'','','','');
photos[884] = new photo(656499,'38064','','gallery','bridgeatnight.jpg',500,375,'Bridge at night by Micah Dear ','bridgeatnight_thumb.jpg',130, 98,0, 0,'','','','');
photos[885] = new photo(656500,'38064','','gallery','dance.jpg',500,375,'Dance by Micah Dear','dance_thumb.jpg',130, 98,0, 0,'','','','');
photos[886] = new photo(656511,'38064','','gallery','WallLights.jpg',500,333,'Wall lights by Moelwyn Hopkins','WallLights_thumb.jpg',130, 87,0, 0,'','','','');
photos[887] = new photo(659146,'38064','','gallery','TramLightsAmsterdam.jpg',500,367,'Tram Lights - Amsterdam by Paul Duffield','TramLightsAmsterdam_thumb.jpg',130, 95,0, 0,'','','','');
photos[888] = new photo(659158,'38064','','gallery','WarMemorial.jpg',500,340,'War Memorial by Angelique Snutch','WarMemorial_thumb.jpg',130, 88,0, 0,'','','','');
photos[889] = new photo(661949,'38064','','gallery','BiljmerMetroStationAmsterdam.jpg',480,360,'Biljmer Metro station - Amsterdam by Philip Lawton','BiljmerMetroStationAmsterdam_thumb.jpg',130, 98,0, 0,'','','','');
photos[890] = new photo(661951,'38064','','gallery','DublinHoarding.jpg',480,360,'Dublin Hoarding by Philip Lawton ','DublinHoarding_thumb.jpg',130, 98,0, 0,'','','','');
photos[891] = new photo(661953,'38064','','gallery','cubanfruitstall.jpg',470,337,'Cuban fruit stall by Sarah Gilbert','cubanfruitstall_thumb.jpg',130, 93,0, 0,'','','','');
photos[892] = new photo(661967,'38064','','gallery','UrbanFlotsam.jpg',500,411,'Urban flotsam by Elizabeth Restall','UrbanFlotsam_thumb.jpg',130, 107,0, 0,'','','','');
photos[893] = new photo(661994,'38064','','gallery','Eye Tourists.JPG',500,332,'Eye tourists by Michael Lilley ','Eye Tourists_thumb.JPG',130, 86,0, 0,'','','','');
photos[894] = new photo(661996,'38064','','gallery','Barcelona Buskers.JPG',500,324,'Barcelona Buskers by Michael Lilley ','Barcelona Buskers_thumb.JPG',130, 84,0, 0,'','','','');
photos[895] = new photo(662026,'38064','','gallery','itslonelyonthewaydown.jpg',450,335,'It\'s lonely on the way down by Dave Hogan','itslonelyonthewaydown_thumb.jpg',130, 97,0, 0,'','','','');
photos[896] = new photo(662027,'38064','','gallery','musicalballoons.jpg',471,500,'Musical balloons by Dave Hogan','musicalballoons_thumb.jpg',130, 138,0, 0,'','','','');
photos[897] = new photo(662032,'38064','','gallery','Dor in Co Clare.jpg',500,332,'Door in co.Clare by Keith dowling','Dor in Co Clare_thumb.jpg',130, 86,0, 0,'','','','');
photos[898] = new photo(662035,'38064','','gallery','Coldplay.jpg',500,332,'Coldplay by Keith Dowling','Coldplay_thumb.jpg',130, 86,0, 0,'','','','');
photos[899] = new photo(662060,'38064','','gallery','AfterHours.jpg',500,500,'After Hours by Eduard Popescu ','AfterHours_thumb.jpg',130, 130,0, 0,'','','','');
photos[900] = new photo(662063,'38064','','gallery','GentlemanWithBlackUmbrella.jpg',500,500,'Gentleman with black umbrella','GentlemanWithBlackUmbrella_thumb.jpg',130, 130,0, 0,'','','','');
photos[901] = new photo(662072,'38064','','gallery','fortyfivespinspin.JPG',500,385,'Fourtyfive spin spin by Steven Kinnard ','fortyfivespinspin_thumb.JPG',130, 100,0, 0,'','','','');
photos[902] = new photo(662078,'38064','','gallery','scottishparliament.jpg',500,375,'Scottish Parliament by Ian Cameron ','scottishparliament_thumb.jpg',130, 98,0, 0,'','','','');
photos[903] = new photo(662085,'38064','','gallery','curb.jpg',383,254,'Curb by Antonia Wozencraft ','curb_thumb.jpg',130, 86,0, 0,'','','','');
photos[904] = new photo(664378,'38064','','gallery','shoppingtrolley.jpg',500,354,'Shopping trolley by Phil Carpenter','shoppingtrolley_thumb.jpg',130, 92,0, 0,'','','','');
photos[905] = new photo(664380,'38064','','gallery','thenumber21bus.jpg',500,375,'The number 21 bus by Phil Carpenter','thenumber21bus_thumb.jpg',130, 98,0, 0,'','','','');
photos[906] = new photo(664388,'38064','','gallery','TempleDome.JPG',500,375,'Temple dome by Steve Nightingale','TempleDome_thumb.JPG',130, 98,0, 0,'','','','');
photos[907] = new photo(665457,'38064','','gallery','vents.jpg',500,232,'Vents by Geoff Sutton','vents_thumb.jpg',130, 60,0, 0,'','','','');
photos[908] = new photo(665459,'38064','','gallery','openingmoves.jpg',500,361,'Opening moves by Geoff Sutton','openingmoves_thumb.jpg',130, 94,0, 0,'','','','');
photos[909] = new photo(667151,'38064','','gallery','BabyBusRide.jpg',500,333,'Baby bus ride by Joseph Colligan','BabyBusRide_thumb.jpg',130, 87,0, 0,'','','','');
photos[910] = new photo(667153,'38064','','gallery','PostRainBusStop.jpg',500,333,'Post rain bus stop by Joseph Colligan ','PostRainBusStop_thumb.jpg',130, 87,0, 0,'','','','');
photos[911] = new photo(669957,'38064','','gallery','generation_gap.jpg',500,333,'Generation gap by Paul Mansfield','generation_gap_thumb.jpg',130, 87,0, 0,'','','','');
photos[912] = new photo(669964,'38064','','gallery','windows1.jpg',500,333,'Windows by Ann-Marie Westwood ','windows1_thumb.jpg',130, 87,0, 0,'','','','');
photos[913] = new photo(669968,'38064','','gallery','chevron.jpg',500,323,'Chevron by Phil Millar ','chevron_thumb.jpg',130, 84,0, 0,'','','','');
photos[914] = new photo(669969,'38064','','gallery','honeycomb.jpg',500,342,'Honeycomb by Phil Millar ','honeycomb_thumb.jpg',130, 89,0, 0,'','','','');
photos[915] = new photo(670032,'38064','','gallery','trolley.jpeg',500,333,'Trolley by Mark Clancy ','trolley_thumb.jpeg',130, 87,0, 0,'','','','');
photos[916] = new photo(670036,'38064','','gallery','undercurrent.jpg',500,333,'Undercurrent by Janet Millard ','undercurrent_thumb.jpg',130, 87,0, 0,'','','','');
photos[917] = new photo(670052,'38064','','gallery','railwayworkshop.jpg',500,203,'Railway workshop by Ameli Moebius','railwayworkshop_thumb.jpg',130, 53,0, 0,'','','','');
photos[918] = new photo(670061,'38064','','gallery','DOME1.jpg',300,225,'Dome1 by Claire AH Stephens ','DOME1_thumb.jpg',130, 98,0, 0,'','','','');
photos[919] = new photo(670062,'38064','','gallery','dome2.jpg',300,225,'Dome2 by Claire AH Stephens ','dome2_thumb.jpg',130, 98,0, 0,'','','','');
photos[920] = new photo(670093,'38064','','gallery','streetcafe.jpg',500,200,'Street cafe by Joy Nightingale ','streetcafe_thumb.jpg',130, 52,0, 0,'','','','');
photos[921] = new photo(671203,'38064','','gallery','Zebra.jpg',500,375,'Zebra by Alexandre Guerra ','Zebra_thumb.jpg',130, 98,0, 0,'','','','');
photos[922] = new photo(671204,'38064','','gallery','SnailingDown.jpg',500,375,'Snailing down by Alexandre Guerra ','SnailingDown_thumb.jpg',130, 98,0, 0,'','','','');
photos[923] = new photo(671207,'38064','','gallery','hub.jpeg',500,408,'Hub by Geoff Leedham','hub_thumb.jpeg',130, 106,0, 0,'','','','');
photos[924] = new photo(672296,'38064','','gallery','InaSpin.jpg',254,240,'In a spin by Deb Freeman','InaSpin_thumb.jpg',130, 123,0, 0,'','','','');
photos[925] = new photo(672318,'38064','','gallery','tcups.jpg',480,320,'T-cups by Mike Henthorn ','tcups_thumb.jpg',130, 87,0, 0,'','','','');
photos[926] = new photo(672319,'38064','','gallery','wheelandmoon.jpg',432,432,'Wheel and moon by Mike Henthorn ','wheelandmoon_thumb.jpg',130, 130,0, 0,'','','','');
photos[927] = new photo(672374,'38064','','gallery','Face.jpg',500,375,'Face by Andy Cardinal','Face_thumb.jpg',130, 98,0, 0,'','','','');
photos[928] = new photo(672952,'38064','','gallery','appealingpaint.jpg',500,375,'Appealing paint by Matthew Baumgart','appealingpaint_thumb.jpg',130, 98,0, 0,'','','','');
photos[929] = new photo(672962,'38064','','gallery','aspirationbridge.jpg',400,266,'Aspiration bridge by Agnese Sanvito','aspirationbridge_thumb.jpg',130, 86,0, 0,'','','','');
photos[930] = new photo(672966,'38064','','gallery','lecce.jpg',461,307,'Lecce by Agnese Sanvito','lecce_thumb.jpg',130, 87,0, 0,'','','','');
photos[931] = new photo(673308,'38064','','gallery','oceanOfGraffiti.jpg',500,333,'Ocean of graffiti by Robin Windisch','oceanOfGraffiti_thumb.jpg',130, 87,0, 0,'','','','');
photos[932] = new photo(673314,'38064','','gallery','LostMyBestFriend.jpg',500,332,'Lost my best friend by Robin Windisch','LostMyBestFriend_thumb.jpg',130, 86,0, 0,'','','','');
photos[933] = new photo(673401,'38064','','gallery','Bringmesunshine.jpg',409,307,'Bring me sunshine by Margaret Hart ','Bringmesunshine_thumb.jpg',130, 98,0, 0,'','','','');
photos[934] = new photo(673405,'38064','','gallery','grid.jpg',432,464,'Grid by Robert Lang ','grid_thumb.jpg',130, 140,0, 0,'','','','');
photos[935] = new photo(673409,'38064','','gallery','projection.jpg',490,505,'Projection by  Robert Lang ','projection_thumb.jpg',130, 134,0, 0,'','','','');
photos[936] = new photo(673437,'38064','','gallery','Metro.JPG',487,365,'Metro by Marios Souglides ','Metro_thumb.JPG',130, 97,0, 0,'','','','');
photos[937] = new photo(674061,'38064','','gallery','lips.jpg',500,253,'Lips by Richard Webster','lips_thumb.jpg',130, 66,0, 0,'','','','');
photos[938] = new photo(674066,'38064','','gallery','Familia-door.jpg',500,332,'Familia-door by Richard Webster','Familia-door_thumb.jpg',130, 86,0, 0,'','','','');
photos[939] = new photo(674071,'38064','','gallery','citycobweb.jpg',500,447,'City cobweb by Ros Marvin ','citycobweb_thumb.jpg',130, 116,0, 0,'','','','');
photos[940] = new photo(674078,'38064','','gallery','liquified.jpg',424,368,'Liquified by Bidisha Sinha','liquified_thumb.jpg',130, 113,0, 0,'','','','');
photos[941] = new photo(674088,'38064','','gallery','Spirals at the London Eye.jpg',500,342,'Spirals at the London eye by Stephen Chung','Spirals at the London Eye_thumb.jpg',130, 89,0, 0,'','','','');
photos[942] = new photo(674093,'38064','','gallery','industrialart.jpg',500,332,'Industrial art by Nikki Hill','industrialart_thumb.jpg',130, 86,0, 0,'','','','');
photos[943] = new photo(674094,'38064','','gallery','subwaystreetboys.jpg',500,332,'Subway street boys by Nikki Hill','subwaystreetboys_thumb.jpg',130, 86,0, 0,'','','','');
photos[944] = new photo(674244,'38064','','gallery','pillar Rome.jpg',450,296,'Pillar - Rome by Philip Rogan ','pillar Rome_thumb.jpg',130, 86,0, 0,'','','','');
photos[945] = new photo(674245,'38064','','gallery','reflections nyc.jpg',442,300,'Reflections NYC by Philip Rogan ','reflections nyc_thumb.jpg',130, 88,0, 0,'','','','');
photos[946] = new photo(674247,'38064','','gallery','street1.jpg',500,375,'Street1 by Oliver Walker ','street1_thumb.jpg',130, 98,0, 0,'','','','');
photos[947] = new photo(674250,'38064','','gallery','street2.jpg',500,375,'Street2 by Oliver Walker ','street2_thumb.jpg',130, 98,0, 0,'','','','');
photos[948] = new photo(674261,'38064','','gallery','Scan10226.JPG',426,281,'Concrete and wires by Christianne CHerry','Scan10226_thumb.JPG',130, 86,0, 0,'','','','');
photos[949] = new photo(674263,'38064','','gallery','Scan10228.JPG',500,356,'Hermes by Christianne Cherry ','Scan10228_thumb.JPG',130, 93,0, 0,'','','','');
photos[950] = new photo(674268,'38064','','gallery','oldhavanna.jpg',479,333,'Old Havanna by Derek McHattie','oldhavanna_thumb.jpg',130, 90,0, 0,'','','','');
photos[951] = new photo(674274,'38064','','gallery','streetlamprainbow.JPG',500,375,'Streetlamp rainbow by Andrew Lamberton ','streetlamprainbow_thumb.JPG',130, 98,0, 0,'','','','');
photos[952] = new photo(674279,'38064','','gallery','thicklayeredyellowline.JPG',500,394,'Thick layered yellow line by Andrew Lamberton','thicklayeredyellowline_thumb.JPG',130, 102,0, 0,'','','','');
photos[953] = new photo(674310,'38064','','gallery','street lights.JPG',500,333,'Street lights by Andrew Currie ','street lights_thumb.JPG',130, 87,0, 0,'','','','');
photos[954] = new photo(674357,'38064','','gallery','Southbank2.jpg',500,407,'Southbank by Katya Evdokimova ','Southbank2_thumb.jpg',130, 106,0, 0,'','','','');
photos[955] = new photo(674374,'38064','','gallery','markings.jpg',500,375,'Markings by Susanne Hartley ','markings_thumb.jpg',130, 98,0, 0,'','','','');
photos[956] = new photo(676769,'38064','','gallery','ShadesOfLondon.jpg',500,357,'Shades of London by Jimmy Wilde','ShadesOfLondon_thumb.jpg',130, 93,0, 0,'','','','');
photos[957] = new photo(676771,'38064','','gallery','TheLostCityOfAtlantis.jpg',500,354,'The lost city of Atlantis by Jimmy Wilde','TheLostCityOfAtlantis_thumb.jpg',130, 92,0, 0,'','','','');
photos[958] = new photo(676781,'38064','','gallery','theCentrePointCenter.jpg',500,375,'The center point center by Brian Lavery ','theCentrePointCenter_thumb.jpg',130, 98,0, 0,'','','','');
photos[959] = new photo(676793,'38064','','gallery','Broken-Boat.jpg',500,375,'Broken-boat by Linda Simmonds','Broken-Boat_thumb.jpg',130, 98,0, 0,'','','','');
photos[960] = new photo(676807,'38064','','gallery','Arndale.jpg',320,211,'Arndale by Steve Cox','Arndale_thumb.jpg',130, 86,0, 0,'','','','');
photos[961] = new photo(638725,'38064','','gallery','colors.jpg.jpg',103,121,'Colours by Nathaniel Gonzales ','colors_thumb.jpg.jpg',130, 153,0, 0,'','','','');
photos[962] = new photo(487421,'38064','','gallery','Marisa POtter Bosham Quay.jpg',400,521,'Bosham Quay by Marisa Potter','Marisa POtter Bosham Quay_thumb.jpg',130, 169,0, 0,'','','','');
photos[963] = new photo(575568,'38064','','gallery','RobWhealAbstractVeniceGlassMuseum.jpg',500,779,'Venice glass museum by Rob Wheal','RobWhealAbstractVeniceGlassMuseum_thumb.jpg',130, 203,0, 0,'','','','');
photos[964] = new photo(638775,'38064','','gallery','hulmeparkbench.jpg',500,795,'Hulme Park Bench by Marcus Hargis','hulmeparkbench_thumb.jpg',130, 207,0, 0,'','','','');
photos[965] = new photo(575567,'38064','','gallery','RobWhealABstractSmithfieldmarketgrille.jpg',500,750,'Smithfield Market Grille by Rob Wheal','RobWhealABstractSmithfieldmarketgrille_thumb.jpg',130, 195,0, 0,'','','','');
photos[966] = new photo(572824,'38064','','gallery','roddylennoxabstra twintershadows.jpg',500,753,'Winter Shadow by Roddy Lennox','roddylennoxabstra twintershadows_thumb.jpg',130, 196,0, 0,'','','','');
photos[967] = new photo(572825,'38064','','gallery','roddylennoxabstractcityreflections.jpg',500,752,'City reflections by Roddy Lennox','roddylennoxabstractcityreflections_thumb.jpg',130, 196,0, 0,'','','','');
photos[968] = new photo(582946,'38064','','gallery','demolition.jpg',195,260,'Demolition by Bernie Blackburn','demolition_thumb.jpg',130, 173,0, 0,'','','','');
photos[969] = new photo(585917,'38064','','gallery','lighttrails ian trower.jpg',500,751,'Lighttrails by Ian Trower','lighttrails ian trower_thumb.jpg',130, 195,0, 0,'','','','');
photos[970] = new photo(661988,'38064','','gallery','Inside La Pedera.JPG',375,500,'Inside la Perdera by Michael Lilley','Inside La Pedera_thumb.JPG',130, 173,0, 0,'','','','');
photos[971] = new photo(659155,'38064','','gallery','StatueInFog.jpg',339,500,'Statue in fog by Angelique Snutch','StatueInFog_thumb.jpg',130, 192,0, 0,'','','','');
photos[972] = new photo(670053,'38064','','gallery','reflection.jpg',500,750,'Reflection by Ameli Moebius','reflection_thumb.jpg',130, 195,0, 0,'','','','');
photos[973] = new photo(636772,'38064','','gallery','brooklyn.jpg',500,692,'Brooklyn by Dave Cox','brooklyn_thumb.jpg',130, 180,0, 0,'','','','');
photos[974] = new photo(661964,'38064','','gallery','WindowsLondonDockland.jpg',413,500,'Windows - London Docklands by Elizabeth Restall','WindowsLondonDockland_thumb.jpg',130, 157,0, 0,'','','','');
photos[975] = new photo(592062,'38064','','gallery','disorientatedolliecook.jpg',500,634,'Disorientated by Ollie Cook','disorientatedolliecook_thumb.jpg',130, 165,0, 0,'','','','');
photos[976] = new photo(674265,'38064','','gallery','generalseating.jpg',500,625,'General seating by James Kileen ','generalseating_thumb.jpg',130, 163,0, 0,'','','','');
photos[977] = new photo(656510,'38064','','gallery','PinkPillars.jpg',333,500,'Pink pillars by Moelwyn Hopkins','PinkPillars_thumb.jpg',130, 195,0, 0,'','','','');
photos[978] = new photo(672986,'38064','','gallery','AGallonGone.jpg',180,240,'A gallon gone by Deb Freeman ','AGallonGone_thumb.jpg',130, 173,0, 0,'','','','');
photos[979] = new photo(671187,'38064','','gallery','Jazzman.jpg',500,748,'Jazzman by Tony Karger','Jazzman_thumb.jpg',130, 194,0, 0,'','','','');
photos[980] = new photo(628418,'38064','','gallery','clarity of information.jpg',400,417,'Clarity of information by Richard Oakland ','clarity of information_thumb.jpg',130, 136,0, 0,'','','','');
photos[981] = new photo(636792,'38064','','gallery','MilleniumB.jpg',500,747,'MilleniumB by Neil McCrae','MilleniumB_thumb.jpg',130, 194,0, 0,'','','','');
photos[982] = new photo(673403,'38064','','gallery','Shadowsofpastandpresent.jpg',307,409,'Shadows of past and present by Margaret Hart ','Shadowsofpastandpresent_thumb.jpg',130, 173,0, 0,'','','','');
photos[983] = new photo(582948,'38064','','gallery','derelictdoorwaybernie.jpg',195,260,'Derelict doorway by Bernie Blackburn','derelictdoorwaybernie_thumb.jpg',130, 173,0, 0,'','','','');
photos[984] = new photo(628385,'38064','','gallery','iraqprotest.jpg',190,284,'Iraq protest by Edward Pitcher','iraqprotest_thumb.jpg',130, 194,0, 0,'','','','');
photos[985] = new photo(672311,'38064','','gallery','Mirror Mirror.jpg',500,655,'Mirror Mirror by Stephen Chung','Mirror Mirror_thumb.jpg',130, 170,0, 0,'','','','');
photos[986] = new photo(670031,'38064','','gallery','graffiti.jpeg',375,500,'Graffiti by Mark Clancy','graffiti_thumb.jpeg',130, 173,0, 0,'','','','');
photos[987] = new photo(592063,'38064','','gallery','transparent buildingolliecook.jpg',500,650,'Transparent building by Ollie Cook','transparent buildingolliecook_thumb.jpg',130, 169,0, 0,'','','','');
photos[988] = new photo(670035,'38064','','gallery','bike stand.jpg',200,300,'Bike stand by Janet Millard ','bike stand_thumb.jpg',130, 195,0, 0,'','','','');
photos[989] = new photo(645145,'38064','','gallery','OutOfTheBlue.jpg',500,667,'Out of the blue by Fergus Sturrock','OutOfTheBlue_thumb.jpg',130, 173,0, 0,'','','','');
photos[990] = new photo(650245,'38064','','gallery','flecksandstripes.jpg',500,669,'Flecks and stripes by Jenny Goodfellow','flecksandstripes_thumb.jpg',130, 174,0, 0,'','','','');
photos[991] = new photo(669959,'38064','','gallery','parking sign.jpg',500,632,'Parking sign by Nathaniel Gonzales','parking sign_thumb.jpg',130, 164,0, 0,'','','','');
photos[992] = new photo(645266,'38064','','gallery','babe.jpg',369,421,'Babe by David Meredith','babe_thumb.jpg',130, 148,0, 0,'','','','');
photos[993] = new photo(625961,'38064','','gallery','Shadow.jpg',281,375,'Shadow by Cor Boers','Shadow_thumb.jpg',130, 173,0, 0,'','','','');
photos[994] = new photo(581897,'38064','','gallery','circular seatsJPG.jpg',500,554,'Circular Seats by Anthony Beck','circular seatsJPG_thumb.jpg',130, 144,0, 0,'','','','');
photos[995] = new photo(582809,'38064','','gallery','rushhourkevmc.jpg',200,301,'Rush hour by Kevin McCollum','rushhourkevmc_thumb.jpg',130, 196,0, 0,'','','','');
photos[996] = new photo(625989,'38064','','gallery','RAINBOW.jpg',393,480,'Rainbow by Michael King','RAINBOW_thumb.jpg',130, 159,0, 0,'','','','');
photos[997] = new photo(661952,'38064','','gallery','brokenheart.jpg',450,675,'Broken heart by Sarah Gilbert','brokenheart_thumb.jpg',130, 195,0, 0,'','','','');
photos[998] = new photo(618772,'38064','','gallery','toronto2.jpg',500,444,'Toronto 2 by Ken Hugill','toronto2_thumb.jpg',130, 115,0, 0,'','','','');
photos[999] = new photo(661991,'38064','','gallery','Under the Gherkin.jpg',500,409,'Under the Gherkin by Michael Lilley','Under the Gherkin_thumb.jpg',130, 106,0, 0,'','','','');
photos[1000] = new photo(618736,'38064','','gallery','circleoflight.JPG',500,592,'Circle of flight by Craig Marren','circleoflight_thumb.JPG',130, 154,0, 0,'','','','');
photos[1001] = new photo(674266,'38064','','gallery','lostandfound.jpg',500,674,'Lost and found by James Kileen ','lostandfound_thumb.jpg',130, 175,0, 0,'','','','');
photos[1002] = new photo(674079,'38064','','gallery','texturepixels.jpg',402,676,'Texture pixels by Bidisha Sinha','texturepixels_thumb.jpg',130, 219,0, 0,'','','','');
photos[1003] = new photo(674358,'38064','','gallery','StIsaacs.jpg',348,500,'St. Isaacs by Katya Evdokimova','StIsaacs_thumb.jpg',130, 187,0, 0,'','','','');
photos[1004] = new photo(662021,'38064','','gallery','rustyfence.jpg',424,600,'Rusty fence by Adrian Lourie','rustyfence_thumb.jpg',130, 184,0, 0,'','','','');
photos[1005] = new photo(656216,'38064','','gallery','shells.jpg',500,606,'Shells by Terry Cooper','shells_thumb.jpg',130, 158,0, 0,'','','','');
photos[1006] = new photo(662073,'38064','','gallery','semblance.JPG',375,500,'Semblance by Steven Kinnard ','semblance_thumb.JPG',130, 173,0, 0,'','','','');
photos[1007] = new photo(669958,'38064','','gallery','guiding_neon.jpg',333,500,'Guiding neon by Paul Mansfield','guiding_neon_thumb.jpg',130, 195,0, 0,'','','','');
photos[1008] = new photo(647605,'38064','','gallery','curve.jpg',332,500,'Curve by Mike Golowczynski','curve_thumb.jpg',130, 196,0, 0,'','','','');
photos[1009] = new photo(674306,'38064','','gallery','car mirror.JPG',316,475,'Car mirror by Andrew Currie ','car mirror_thumb.JPG',130, 195,0, 0,'','','','');
photos[1010] = new photo(618774,'38064','','gallery','newport.jpg',375,500,'Newport by Ken Hugill','newport_thumb.jpg',130, 173,0, 0,'','','','');
photos[1011] = new photo(628384,'38064','','gallery','iraqdemo.jpg',190,284,'Iraq demo by Edward Pitcher','iraqdemo_thumb.jpg',130, 194,0, 0,'','','','');
photos[1012] = new photo(602731,'38064','','gallery','BUILDINGABSTRACT.jpg',378,567,'Building - abstract by Ann Alimi','BUILDINGABSTRACT_thumb.jpg',130, 195,0, 0,'','','','');
photos[1013] = new photo(664386,'38064','','gallery','PaintedPalm.jpg',500,524,'Painted palm by Steve Nightingale','PaintedPalm_thumb.jpg',130, 136,0, 0,'','','','');
photos[1014] = new photo(602732,'38064','','gallery','BUILDINGREFLECTIONS.jpg',452,678,'Building - reflections by Ann Alimi','BUILDINGREFLECTIONS_thumb.jpg',130, 195,0, 0,'','','','');
photos[1015] = new photo(609554,'38064','','gallery','artistichydrant.jpg',500,666,'Artistic hydrant by Sandra Silver','artistichydrant_thumb.jpg',130, 173,0, 0,'','','','');
photos[1016] = new photo(596736,'38064','','gallery','giraffe.JPG',500,754,'Giraffe by Craig Marren','giraffe_thumb.JPG',130, 196,0, 0,'','','','');
photos[1017] = new photo(669965,'38064','','gallery','rooflights.jpg',500,752,'Rooflights by Ann-Marie Westwood','rooflights_thumb.jpg',130, 196,0, 0,'','','','');
photos[1018] = new photo(672380,'38064','','gallery','TwinTowersreflected.jpg',500,752,'Twin towers reflected by Andy Cardinal','TwinTowersreflected_thumb.jpg',130, 196,0, 0,'','','','');
photos[1019] = new photo(656212,'38064','','gallery','CMKabstract1.jpg',500,618,'CMK abstract1 by Tony Humphreys','CMKabstract1_thumb.jpg',130, 161,0, 0,'','','','');
photos[1020] = new photo(672370,'38064','','gallery','Escalators bw.jpg',353,500,'Escalators b&w by Scott Murray ','Escalators bw_thumb.jpg',130, 184,0, 0,'','','','');
photos[1021] = new photo(504802,'38064','','gallery','HanoiLakeAbstract.jpg',400,550,'Hanoi Lake by Mike Modine','HanoiLakeAbstract_thumb.jpg',130, 179,0, 0,'','','','');
photos[1022] = new photo(582424,'38064','','gallery','mikekabstractStairwcaseofficeblock.jpg',350,500,'Office block staircase by Mike Krynicki','mikekabstractStairwcaseofficeblock_thumb.jpg',130, 186,0, 0,'','','','');
photos[1023] = new photo(487358,'38064','','gallery','hunterbirminghamselfridges.jpg',398,600,'Selfridges at Birmingham by Tony Hunter','hunterbirminghamselfridges_thumb.jpg',130, 196,0, 0,'','','','');
photos[1024] = new photo(582175,'38064','','gallery','dyedanddried.jpg',480,641,'Dyed and dried by Diane Willoughby','dyedanddried_thumb.jpg',130, 174,0, 0,'','','','');
photos[1025] = new photo(582183,'38064','','gallery','Mattcollis Abstract takeoffyourshoes.jpg',500,776,'Take off your shoes by Matt Collis','Mattcollis Abstract takeoffyourshoes_thumb.jpg',130, 202,0, 0,'','','','');
photos[1026] = new photo(582675,'38064','','gallery','edinburghcastle.jpg',500,500,'Edinburgh Castle by Stuart Maclaren','edinburghcastle_thumb.jpg',130, 130,0, 0,'','','','');
photos[1027] = new photo(641519,'38064','','gallery','streetlamp.jpeg',500,750,'Street lamp by David Taylor','streetlamp_thumb.jpeg',130, 195,0, 0,'','','','');
photos[1028] = new photo(582368,'38064','','gallery','ChrisShepAbstractTreads.jpg',263,500,'Treads by Chris Shepherd','ChrisShepAbstractTreads_thumb.jpg',130, 247,0, 0,'','','','');
photos[1029] = new photo(582628,'38064','','gallery','nbabstractButterfly-purple-Shutters-S.jpg',375,500,'Purple butterly by Nick Board','nbabstractButterfly-purple-Shutters-S_thumb.jpg',130, 173,0, 0,'','','','');
photos[1030] = new photo(582373,'38064','','gallery','AnnSopAbstractNY windows.jpg',320,500,'NY Windows by Anne-Sophie Olive','AnnSopAbstractNY windows_thumb.jpg',130, 203,0, 0,'','','','');
photos[1031] = new photo(582372,'38064','','gallery','AnneSophoieAbstrctStreet lamp.jpg',332,500,'Street lamp by Anne-Sophie Olive','AnneSophoieAbstrctStreet lamp_thumb.jpg',130, 196,0, 0,'','','','');
photos[1032] = new photo(582184,'38064','','gallery','MattCollisAbstractbackstreetdecay.jpg',464,720,'Back street  decay by Matt Collis','MattCollisAbstractbackstreetdecay_thumb.jpg',130, 202,0, 0,'','','','');
photos[1033] = new photo(640370,'38064','','gallery','urbanlunch.jpg',450,675,'Urban Lunch by Maddie Kendell','urbanlunch_thumb.jpg',130, 195,0, 0,'','','','');
photos[1034] = new photo(582626,'38064','','gallery','nbabstractStateland-Sign-Singapore.jpg',329,500,'Stateland Sign Singapore by Nick Board','nbabstractStateland-Sign-Singapore_thumb.jpg',130, 198,0, 0,'','','','');
photos[1035] = new photo(582640,'38064','','gallery','Abstract - Seine-embankment.jpg',500,585,'Seine Embankment by Malcolm Niekirk ','Abstract - Seine-embankment_thumb.jpg',130, 152,0, 0,'','','','');
photos[1036] = new photo(640362,'38064','','gallery','Shadowman.jpg',500,818,'Shadowman by Stephen Hewett','Shadowman_thumb.jpg',130, 213,0, 0,'','','','');
photos[1037] = new photo(642068,'38064','','gallery','stairway.jpg',500,662,'Stairway by Mike Metcalfe','stairway_thumb.jpg',130, 172,0, 0,'','','','');
photos[1038] = new photo(644495,'38064','','gallery','theoffice.jpg',375,500,'The office by Vince Sparks','theoffice_thumb.jpg',130, 173,0, 0,'','','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(38382,'676797,676795,676794,676790,676774,676765,676746,674366,674321,674292','Misc','gallery');
galleries[1] = new gallery(62607,'567878','THE WINNERS','gallery');
galleries[2] = new gallery(37488,'487461','PEOPLE','gallery');
galleries[3] = new gallery(38062,'572823,567873','OPEN SPACES','gallery');
galleries[4] = new gallery(38063,'582665,582179,498085','ARCHITECTURE','gallery');
galleries[5] = new gallery(38064,'487450','ABSTRACT','gallery');

