/***************************************************************************
* Create a photo object                                                    *
***************************************************************************/
function photo(id, galleries_id, photo_ref, section_code, src, width, height, caption, thumbnail, thumbnail_width, thumbnail_height, home, gallery, description, takendate, photographer, location, item_price, purchase_instruction) {
	this.id = id;
	this.galleries_id = galleries_id;
	this.photo_ref = photo_ref;
	this.section_code = section_code;
	this.src = src;
	this.width = width;
	this.height = height;
	this.caption = caption;
	this.thumbnail = thumbnail;
	this.thumbnail_width = thumbnail_width;
	this.thumbnail_height = thumbnail_height;
	this.home = home;
	this.gallery = gallery;
	this.description = description;
	this.takendate = takendate;
	this.photographer = photographer;
	this.location = location;
	this.item_price = item_price;
	this.purchase_instruction = purchase_instruction;
}
/***************************************************************************
* Create a gallery object                                                  *
***************************************************************************/

function gallery(id,featured_images,title,section_code) {
	this.id = id;
	this.featured_images = featured_images;
	this.title = title;
	this.section_code = section_code;}

/***************************************************************************
* Select a random value from a comma separated list                        *
***************************************************************************/
function randomListVal(list) {
	arrayVals = list.split(',');
	pos = Math.round(Math.random() * (arrayVals.length - 1));
	debug('Returning ' + arrayVals[pos] + ' as random image');
	return arrayVals[pos];
}

/***************************************************************************
* img = reference to image object in which to show image                   *
***************************************************************************/
function showHomeImage(img) {

	imageID = randomListVal('469102,469101,469100,460166,460163,460160,460155,460154,460147,460146,460135,131695,131688,131677,131666,131664,131663,131662,131649,103019,102330,101659,98968,98924');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			if (!basic) {
			img.src = photos[j].src;
			img.width = photos[j].width;
			img.height = photos[j].height;
			}
			else {
				newImage = new Image(photos[j].width,photos[j].height);
				newImage.src = photos[j].src;
				document.images[img.name] = newImage;
				debug(newImage.src);
			}
			break;
		}
	}
}

/***************************************************************************
* Show a random image on home page from featured images                    *
***************************************************************************/
function showHomeImageInline() {
	
	imageID = randomListVal('469102,469101,469100,460166,460163,460160,460155,460154,460147,460146,460135,131695,131688,131677,131666,131664,131663,131662,131649,103019,102330,101659,98968,98924');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			if ('gallery' != '') {
						if (photos[j].galleries_id != '') {
						document.write('<a href="' + photos[j].section_code + '_' + photos[j].galleries_id + '.html">');
						}
						else {
						document.write('<a href="gallery.html">');
						}
			}
			document.write('<img src="' + photos[j].src + '" width="' + photos[j].width + '" height="' + photos[j].height + '" class="mainhomepageimage" id="mainSample" name="mainSample" alt="' + photos[j].caption  + '" border="0">');
			if ('gallery' != '') {
				document.write('</a>');
			}
			break;
		}
	}
	
}

/***************************************************************************
* Show the next image in a gallery.  field = hidden field containing       *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function next(field,img) {

	debug('IN next');
	imageID = field.value;
	
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k= j + 1;
	while (nextImg < 0) {
		for (; k < photos.length; k++) {
			debug('testing image ' + k + ': gallery = ' + photos[k].galleries_id + '(existing: ' + photos[j].galleries_id + ')');
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				debug('setting  nextImg = ' + k);
				break;
			}
		}
		if (nextImg == -1) {
			k = 0;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);
	}


}


/***************************************************************************
* Set a new image on the gallery detail page given its array position      *
***************************************************************************/
function updateImage (nextImg, field,img) {
	debug('Updating image');
	if (!basic && !((1) || (0))) {
		debug('In updateImage');
		debug('setting  img src = ' + photos[nextImg].src);
		
					
			document.getElementById('imagePhoto').innerHTML = '<img class="mainphoto" src="' + photos[nextImg].src + ' " id="mainPic" name="mainPic" width="' + photos[nextImg].width + '" height="' + photos[nextImg].height + '" alt="' + photos[nextImg].caption + '">';
						field.value = photos[nextImg].id;
			document.getElementById('imageTitle').innerHTML = photos[nextImg].caption;
									document.title = 'ugart: ' + photos[nextImg].caption;
										/* apply 'blank' classname to element where */			if ( photos[nextImg].caption == '') {
				document.getElementById('imageTitle').style.className = 'blank';
			}
			else {
				document.getElementById('imageTitle').style.className = 'normal';
			}
						temp = '';
			if (photos[nextImg].description != '') {
				temp = temp +  '<p id="imageDescription">' + photos[nextImg].description + '</p>';
			}
						if (photos[nextImg].photo_ref != '') {
				temp = temp + '<p class="imageinfo" id="imageRef"><strong>Ref: </strong>' + photos[nextImg].photo_ref + '</p>';
			}
						if (photos[nextImg].takendate != '') {
				debug('Resetting taken date');
				temp = temp + '<p class="imageinfo" id="imageDate"><strong>Date: </strong>' + photos[nextImg].takendate + '</p>';
			}
			
			if (photos[nextImg].location != '') {
				debug('Resetting location');
				temp = temp + '<p class="imageinfo" id="imageLocation"><strong>Location: </strong>' +  photos[nextImg].location + '</p>';
			}
			
			if (photos[nextImg].photographer != '') {
				debug('Resetting photographer');
				temp = temp + '<p class="imageinfo" id="imagePhotographer"><strong>Photographer: </strong>' + photos[nextImg].photographer + '</p>';
			}
			if (temp != '') {				temp = temp + '<div class="spacer"></div>';			}					if (temp == '') {
			document.getElementById('imageDetails').style.display = 'none';
		}
		else {
			document.getElementById('imageDetails').style.display = 'block';
		}
		document.getElementById('imageDetails').innerHTML =temp;	
		
	}
	else {
		debug('Redirecting to id ' + photos[nextImg].id);
		window.location = 'photo_' + photos[nextImg].id + '.html';
	}
}

/***************************************************************************
* Show the previous image for a gallery. field = hidden field containing   *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function previous(field,img) {


	imageID = field.value;
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k = j -1;
	while (nextImg < 0) {
		for (; k >= 0; k--) {
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				break;
			}
		}
		if (nextImg == -1) {
			k = photos.length -1;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);	
	}
}

/***************************************************************************
* Pick a photo at random from the featured images of a gallery.
        *
* Gallery_id = id of gallery to choose                                     *
* 
 img = reference to html image                                       *
* in which to show image                                                   *
***************************************************************************/
function showGalleryImage(gallery_id, img) {
	debug('Gallery = ' + gallery_id);
	for (i = 0; i < galleries.length; i++) {
		if (galleries[i].id == gallery_id) {
			imageID = randomListVal(galleries[i].featured_images);
				for (j = 0; j < photos.length; j++) {
					if (photos[j].id == imageID) {
						
						img.src = photos[j].thumbnail;
						img.width = photos[j].thumbnail_width;
						img.height = photos[j].thumbnail_height;
						
						break;
					}
				}
			break;
		}
	} 
	}

/***************************************************************************
* If we have dynamic HTML                                                  *
*  replace the galleries link with a list that                             *
* doesn't include the current gallery                                      *
***************************************************************************/
function showGalleries(gallery_id) {
	debug('Showing links for gallery ' + gallery_id);
	
	if (!basic) {
		temp = '';
		for (i = 0; i < galleries.length; i++) {
			debug('Testing gallery ' + galleries[i].id);
			
			if (galleries[i].id != gallery_id) {
				debug('Adding link');
				if (temp != '') {
					temp = temp + ' | ';
				}
				temp = temp + '<a href="gallery_' + galleries[i].id + '.html">' + galleries[i].title + '</a>';
			}
		}
		document.all.galleryLinks.innerHTML = 'Other galleries: ' + temp;
	}
}
/***************************************************************************
* Create the array of Photo objects                                        *
***************************************************************************/
photos = new Array();
photos[0] = new photo(460143,'9265','','gallery','http://www1.clikpic.com/gerrystone/images/271312b.jpg',400,291,'271312b','http://www1.clikpic.com/gerrystone/images/271312b_thumb.jpg',130, 95,0, 0,'','June 2006','','Valencia','','');
photos[1] = new photo(460146,'9265','','gallery','http://www1.clikpic.com/gerrystone/images/2714052.jpg',400,133,'271405','http://www1.clikpic.com/gerrystone/images/2714052_thumb.jpg',130, 43,1, 1,'Museo de las Ciencias.','June 2006','','Valencia','','');
photos[2] = new photo(460147,'9265','','gallery','http://www1.clikpic.com/gerrystone/images/271408d.jpg',400,214,'271408d','http://www1.clikpic.com/gerrystone/images/271408d_thumb.jpg',130, 70,1, 1,'Museo de las Ciencias.','June 2006','','Valencia','','');
photos[3] = new photo(460154,'9265','','gallery','http://www1.clikpic.com/gerrystone/images/271501a2.jpg',400,147,'271501a','http://www1.clikpic.com/gerrystone/images/271501a2_thumb.jpg',130, 48,1, 1,'L\'Umbracle','June 2006','','Valencia','','');
photos[4] = new photo(460155,'9265','','gallery','http://www1.clikpic.com/gerrystone/images/271501b.jpg',400,147,'271501b','http://www1.clikpic.com/gerrystone/images/271501b_thumb.jpg',130, 48,1, 1,'L\'Umbracle','June 2006','','Valencia','','');
photos[5] = new photo(460160,'9265','','gallery','http://www1.clikpic.com/gerrystone/images/271503b2.jpg',400,160,'271503b','http://www1.clikpic.com/gerrystone/images/271503b2_thumb.jpg',130, 52,1, 1,'Museo de las Ciencias.','June 2006','','Valencia','','');
photos[6] = new photo(460163,'9265','','gallery','http://www1.clikpic.com/gerrystone/images/271503d.jpg',400,160,'271503d','http://www1.clikpic.com/gerrystone/images/271503d_thumb.jpg',130, 52,1, 1,'Museo de las Ciencias.','June 2006','','Valencia','','');
photos[7] = new photo(460166,'9265','','gallery','http://www1.clikpic.com/gerrystone/images/2715072.jpg',400,142,'271507','http://www1.clikpic.com/gerrystone/images/2715072_thumb.jpg',130, 46,1, 1,'Museo de las Ciencias.','June 2006','','Valencia','','');
photos[8] = new photo(101367,'9265','','gallery','http://www1.clikpic.com/gerrystone/images/250401c.jpg',317,400,'250401c','http://www1.clikpic.com/gerrystone/images/250401c_thumb.jpg',130, 164,0, 1,'Shout 1','May 2004','','La Cartuja Spain','','');
photos[9] = new photo(101368,'9265','','gallery','http://www1.clikpic.com/gerrystone/images/250801b.jpg',293,400,'250801b','http://www1.clikpic.com/gerrystone/images/250801b_thumb.jpg',130, 177,0, 0,'Shout 3','May 2004','','La Cartuja Spain','','');
photos[10] = new photo(101369,'9265','','gallery','http://www1.clikpic.com/gerrystone/images/250801c.jpg',293,400,'250801c','http://www1.clikpic.com/gerrystone/images/250801c_thumb.jpg',130, 177,0, 0,'Shout 2','May 2004','','La Cartuja Spain','','');
photos[11] = new photo(105812,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/266204.jpg',400,390,'266204','http://www1.clikpic.com/gerrystone/images/266204_thumb.jpg',130, 127,0, 0,'Rotorua Thermal geyser 1.','March 2005','','North Island NZ','','');
photos[12] = new photo(105816,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/266206b.jpg',376,400,'266206b','http://www1.clikpic.com/gerrystone/images/266206b_thumb.jpg',130, 138,0, 0,'Rotorua Thermal Geysers 2.','March 2005','','North Island NZ','','');
photos[13] = new photo(99075,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/2626011.jpg',400,181,'263402a','http://www1.clikpic.com/gerrystone/images/2626011_thumb.jpg',130, 59,0, 0,'','March 2005','','SI New Zealand','','');
photos[14] = new photo(99069,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/262907.jpg',400,153,'262907','http://www1.clikpic.com/gerrystone/images/262907_thumb.jpg',130, 50,0, 0,'Doubtful Sound 1','March 2005','','SI','','');
photos[15] = new photo(99073,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/2624021.jpg',398,400,'262402','http://www1.clikpic.com/gerrystone/images/2624021_thumb.jpg',130, 131,0, 0,'Tree bark 1, Te Aneau.','March 2005','','SI','','');
photos[16] = new photo(99074,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/2624031.jpg',312,400,'262403','http://www1.clikpic.com/gerrystone/images/2624031_thumb.jpg',130, 167,0, 0,'Tree bark 2, Te Aneau.','March 2005','','SI','','');
photos[17] = new photo(98964,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/261505.jpg',395,400,'261505','http://www1.clikpic.com/gerrystone/images/261505_thumb.jpg',130, 132,0, 0,'Near Milford Sound 6','March 2005','','SI','','');
photos[18] = new photo(98965,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/261607.jpg',369,400,'261607','http://www1.clikpic.com/gerrystone/images/261607_thumb.jpg',130, 141,0, 0,'Near Milford Sound 5','March 2005','','SI','','');
photos[19] = new photo(98966,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/261610.jpg',400,306,'261610','http://www1.clikpic.com/gerrystone/images/261610_thumb.jpg',130, 99,0, 0,'Near Milford Sound 7','March 2005','','SI','','');
photos[20] = new photo(98967,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/261611.jpg',400,399,'261611','http://www1.clikpic.com/gerrystone/images/261611_thumb.jpg',130, 130,0, 0,'Near Milford Sound 8','March 2005','','SI','','');
photos[21] = new photo(98968,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/261701.jpg',400,192,'261701','http://www1.clikpic.com/gerrystone/images/261701_thumb.jpg',130, 62,1, 1,'Milford Sound 1','March 2005','','SI','','');
photos[22] = new photo(98969,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/261807.jpg',293,400,'261807','http://www1.clikpic.com/gerrystone/images/261807_thumb.jpg',130, 177,0, 1,'Milford Sound 2','March 2005','','','','');
photos[23] = new photo(98970,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/262001.jpg',400,194,'262001','http://www1.clikpic.com/gerrystone/images/262001_thumb.jpg',130, 63,0, 0,'Milford Sound 2','March 2005','','SI','','');
photos[24] = new photo(98972,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/262301b.jpg',400,237,'262301b','http://www1.clikpic.com/gerrystone/images/262301b_thumb.jpg',130, 77,0, 0,'Milford Sound 8','March 2005','','SI','','');
photos[25] = new photo(99070,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/262309desat1.jpg',400,237,'262309desat','http://www1.clikpic.com/gerrystone/images/262309desat1_thumb.jpg',130, 77,0, 0,'Nr Milford Sound 5','March 2005','','SI','','');
photos[26] = new photo(99071,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/2623101.jpg',397,400,'262310','http://www1.clikpic.com/gerrystone/images/2623101_thumb.jpg',130, 131,0, 0,'Nr Milford Sound 6','March 2005','','SI','','');
photos[27] = new photo(99283,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/261401b.jpg',400,158,'261401b','http://www1.clikpic.com/gerrystone/images/261401b_thumb.jpg',130, 51,0, 0,'Near Milford Sound 2','March 2005','','SI','','');
photos[28] = new photo(99284,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/261402.jpg',400,193,'261402','http://www1.clikpic.com/gerrystone/images/261402_thumb.jpg',130, 63,0, 0,'Near Milford Sound 3','March 2005','','SI','','');
photos[29] = new photo(99285,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/261412.jpg',395,400,'261412','http://www1.clikpic.com/gerrystone/images/261412_thumb.jpg',130, 132,0, 0,'Near Milford Sound 4','March 2005','','SI','','');
photos[30] = new photo(99278,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/260811.jpg',400,150,'260811','http://www1.clikpic.com/gerrystone/images/260811_thumb.jpg',130, 49,0, 0,'','March 2005','','SI','','');
photos[31] = new photo(99280,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/261005.jpg',400,257,'261005','http://www1.clikpic.com/gerrystone/images/261005_thumb.jpg',130, 84,0, 0,'Lake Te Aneau','March 2005','','SI','','');
photos[32] = new photo(99282,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/261401a.jpg',400,229,'261401a','http://www1.clikpic.com/gerrystone/images/261401a_thumb.jpg',130, 74,0, 0,'Near Milford Sound 1','March 2005','','SI','','');
photos[33] = new photo(99274,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/260307.jpg',400,268,'260307','http://www1.clikpic.com/gerrystone/images/260307_thumb.jpg',130, 87,0, 0,'Nr Queenstown','March 2005','','SI','','');
photos[34] = new photo(99275,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/260308.jpg',400,223,'260308','http://www1.clikpic.com/gerrystone/images/260308_thumb.jpg',130, 72,0, 0,'Nr Queenstown 2','March 2005','','SI','','');
photos[35] = new photo(99269,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/260201.jpg',400,298,'260201','http://www1.clikpic.com/gerrystone/images/260201_thumb.jpg',130, 97,0, 0,'Lake Te Aneau 2','March 2005','','SI','','');
photos[36] = new photo(99270,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/260202.jpg',400,125,'260202','http://www1.clikpic.com/gerrystone/images/260202_thumb.jpg',130, 41,0, 0,'Lake Te Aneau 3','March 2005','','SI','','');
photos[37] = new photo(99271,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/260203.jpg',400,228,'260203','http://www1.clikpic.com/gerrystone/images/260203_thumb.jpg',130, 74,0, 0,'Lake Te Aneau 4','March 2005','','SI','','');
photos[38] = new photo(99272,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/260212.jpg',400,378,'260212','http://www1.clikpic.com/gerrystone/images/260212_thumb.jpg',130, 123,0, 0,'Lake Te Aneau 4','March 2005','','SI','','');
photos[39] = new photo(99246,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/259006.jpg',400,234,'259006','http://www1.clikpic.com/gerrystone/images/259006_thumb.jpg',130, 76,0, 0,'','March 2005','','','','');
photos[40] = new photo(99248,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/259212.jpg',395,400,'259212','http://www1.clikpic.com/gerrystone/images/259212_thumb.jpg',130, 132,0, 0,'Rosies House of Ill Repute','March 2005','','Shanty Town nr Greymouth SI','','');
photos[41] = new photo(99250,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/259302.jpg',398,400,'259302','http://www1.clikpic.com/gerrystone/images/259302_thumb.jpg',130, 131,0, 0,'Rosies House of Ill Repute Veranda.','March 2005','','Shanty Town nr Greymouth SI','','');
photos[42] = new photo(99251,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/259303.jpg',400,312,'259303','http://www1.clikpic.com/gerrystone/images/259303_thumb.jpg',130, 101,0, 0,'Micks Place','March 2005','','Shanty Town nr Greymouth SI','','');
photos[43] = new photo(99254,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/259304.jpg',349,400,'259304','http://www1.clikpic.com/gerrystone/images/259304_thumb.jpg',130, 149,0, 0,'Shack','March 2005','','Shanty Town nr Greymouth SI','','');
photos[44] = new photo(99257,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/259404.jpg',400,383,'259404','http://www1.clikpic.com/gerrystone/images/259404_thumb.jpg',130, 124,0, 0,'\'Kaitangata\' at Shantytown 3','March 2005','','Near Greymouth SI','','');
photos[45] = new photo(99262,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/2594061.jpg',315,400,'259406','http://www1.clikpic.com/gerrystone/images/2594061_thumb.jpg',130, 165,0, 0,'\'Kaitangata\' at Shantytown 1','March 2005','','Near Greymouth SI','','');
photos[46] = new photo(99264,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/259501.jpg',400,248,'259501','http://www1.clikpic.com/gerrystone/images/259501_thumb.jpg',130, 81,0, 0,'\'Kaitangata\' at Shantytown 2','March 2005','','Near Greymouth SI','','');
photos[47] = new photo(99266,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/259504.jpg',400,267,'259504','http://www1.clikpic.com/gerrystone/images/259504_thumb.jpg',130, 87,0, 0,'Diner, Shanty Town','March 2005','','Shanty Town nr Greymouth SI','','');
photos[48] = new photo(99238,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/258405.jpg',400,168,'258405','http://www1.clikpic.com/gerrystone/images/258405_thumb.jpg',130, 55,0, 0,'Castle Hill','March 2005','','SI New Zealand','','');
photos[49] = new photo(99240,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/258501.jpg',400,287,'258501','http://www1.clikpic.com/gerrystone/images/258501_thumb.jpg',130, 93,0, 0,'Castle Hill','March 2005','','SI New Zealand','','');
photos[50] = new photo(99241,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/258502.jpg',400,214,'258502','http://www1.clikpic.com/gerrystone/images/258502_thumb.jpg',130, 70,0, 0,'Castle Hill','March 2005','','SI New Zealand','','');
photos[51] = new photo(99242,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/258503.jpg',400,175,'258503','http://www1.clikpic.com/gerrystone/images/258503_thumb.jpg',130, 57,0, 0,'Castle Hill','March 2005','','SI New Zealand','','');
photos[52] = new photo(99243,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/258504g.jpg',400,189,'258504g','http://www1.clikpic.com/gerrystone/images/258504g_thumb.jpg',130, 61,0, 0,'Castle Hill','March 2005','','SI New Zealand','','');
photos[53] = new photo(99244,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/258610.jpg',400,375,'258610','http://www1.clikpic.com/gerrystone/images/258610_thumb.jpg',130, 122,0, 0,'Otira Viaduct','March 2005','','SI New Zealand','','');
photos[54] = new photo(99235,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/257911a.jpg',400,345,'257911a','http://www1.clikpic.com/gerrystone/images/257911a_thumb.jpg',130, 112,0, 0,'Akaroa view 1','March 2005','','SI New Zealand','','');
photos[55] = new photo(99236,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/258206a.jpg',400,239,'258206a','http://www1.clikpic.com/gerrystone/images/258206a_thumb.jpg',130, 78,0, 0,'Whaling settlement Akaroa','March 2005','','SI New Zealand','','');
photos[56] = new photo(99237,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/258308.jpg',352,400,'258308','http://www1.clikpic.com/gerrystone/images/258308_thumb.jpg',130, 148,0, 0,'Steam Tug Littelton<br>\r\nBuilt Glasgow<br>\r\nat Akaroa','March 2005','','Akaroa SI New Zealand','','');
photos[57] = new photo(99231,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/257809a.jpg',400,308,'257809a','http://www1.clikpic.com/gerrystone/images/257809a_thumb.jpg',130, 100,0, 0,'City tram Christchurch','March 2005','','Christchurch NZ','','');
photos[58] = new photo(99232,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/257901a.jpg',400,330,'257901a','http://www1.clikpic.com/gerrystone/images/257901a_thumb.jpg',130, 107,0, 0,'Christchurch Art Gallery, Te Puna o Waiwhetu.','March 2005','','Christchurch NZ.','','');
photos[59] = new photo(99233,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/257903a.jpg',400,365,'257903a','http://www1.clikpic.com/gerrystone/images/257903a_thumb.jpg',130, 119,0, 0,'Christchurch Art Gallery, Te Puna o Waiwhetu','March 2005','','Christchurch NZ','','');
photos[60] = new photo(99234,'9263','','gallery','http://www1.clikpic.com/gerrystone/images/257910a.jpg',400,329,'257910a','http://www1.clikpic.com/gerrystone/images/257910a_thumb.jpg',130, 107,0, 0,'Christchurch Art Gallery, Te Puna o Waiwhetu','March 2005','','Christchurch NZ','','');
photos[61] = new photo(103038,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/256809a.jpg',400,265,'256809a','http://www1.clikpic.com/gerrystone/images/256809a_thumb.jpg',130, 86,0, 0,'Cherubs','February 2005','','Thailand','','');
photos[62] = new photo(102499,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/256107n.jpg',400,306,'256107n','http://www1.clikpic.com/gerrystone/images/256107n_thumb.jpg',130, 99,0, 0,'Dusk at Sam Roi Yot','October 2004','','Sam Roi Yot National Park Thailand','','');
photos[63] = new photo(131677,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/255912.jpg',200,86,'255912','http://www1.clikpic.com/gerrystone/images/255912_thumb.jpg',130, 56,1, 0,'Hut by canal Sam Roi Yot','October 2004','','Sam Roi Yot Thailand','','');
photos[64] = new photo(131680,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/256012.jpg',200,81,'256012','http://www1.clikpic.com/gerrystone/images/256012_thumb.jpg',130, 53,0, 0,'Canal at dusk Sam Roi Yot','October 2004','','Sam Roi Yot Thailand','','');
photos[65] = new photo(131681,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/256109.jpg',200,107,'256109','http://www1.clikpic.com/gerrystone/images/256109_thumb.jpg',130, 70,0, 0,'Sunset Sam Roi Yot','October 2004','','Sam Roi Yot Thailand','','');
photos[66] = new photo(160470,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/254706.jpg',400,309,'254706','http://www1.clikpic.com/gerrystone/images/254706_thumb.jpg',130, 100,0, 0,'Boat at Sam Roi Yot','October 2004','','Thailand','','');
photos[67] = new photo(103037,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/254310C.jpg',400,371,'254310C','http://www1.clikpic.com/gerrystone/images/254310C_thumb.jpg',130, 121,0, 0,'Dragon','July 2004','','Thailand','','');
photos[68] = new photo(103029,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/253709g.jpg',239,400,'253709g','http://www1.clikpic.com/gerrystone/images/253709g_thumb.jpg',130, 218,0, 0,'Chinese Character, Wine seller','June 2004','','Thailand','','');
photos[69] = new photo(103030,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/253712g.jpg',344,400,'253712g','http://www1.clikpic.com/gerrystone/images/253712g_thumb.jpg',130, 151,0, 0,'Chinese Character, Batman','June 2004','','Thailand','','');
photos[70] = new photo(103031,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/253808g.jpg',299,400,'253808g','http://www1.clikpic.com/gerrystone/images/253808g_thumb.jpg',130, 174,0, 0,'Chinese Character, Laughing man','June 2004','','Thailand','','');
photos[71] = new photo(103032,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/253811g.jpg',400,348,'253811g','http://www1.clikpic.com/gerrystone/images/253811g_thumb.jpg',130, 113,0, 0,'Chinese character, Man with Tortoise','June 2004','','Thailand','','');
photos[72] = new photo(103033,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/253906Cb.jpg',290,400,'254105Cb','http://www1.clikpic.com/gerrystone/images/253906Cb_thumb.jpg',130, 179,0, 0,'Chinese Character, Wine bottle.','June 2004','','Thailand','','');
photos[73] = new photo(103034,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/254107C.jpg',400,269,'254107C','http://www1.clikpic.com/gerrystone/images/254107C_thumb.jpg',130, 87,0, 0,'Lion and Buddah Image','June 2004','','Thailand','','');
photos[74] = new photo(103035,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/254202C.jpg',384,400,'254202C','http://www1.clikpic.com/gerrystone/images/254202C_thumb.jpg',130, 135,0, 0,'Dragon tail and Buddah Image','June 2004','','Thailand','','');
photos[75] = new photo(103036,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/254212C.jpg',271,400,'254212C','http://www1.clikpic.com/gerrystone/images/254212C_thumb.jpg',130, 192,0, 0,'Golden Girl','June 2004','','Thailand','','');
photos[76] = new photo(103016,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/227201b.jpg',395,400,'227201b','http://www1.clikpic.com/gerrystone/images/227201b_thumb.jpg',130, 132,0, 0,'Ayutayah 1','September 2000','','Ayutayah Thailand','','');
photos[77] = new photo(103019,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/227204.jpg',400,382,'227204','http://www1.clikpic.com/gerrystone/images/227204_thumb.jpg',130, 124,1, 1,'Ayutayah 2','September 2000','','Ayutayah Thailand','','');
photos[78] = new photo(103021,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/227210a.jpg',360,400,'227210a','http://www1.clikpic.com/gerrystone/images/227210a_thumb.jpg',130, 144,0, 0,'Ayutayah 3','September 2000','','Ayutayah Thailand','','');
photos[79] = new photo(103024,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/227302.jpg',353,400,'227302','http://www1.clikpic.com/gerrystone/images/227302_thumb.jpg',130, 147,0, 0,'Ayutayah 4','September 2000','','Ayutayah Thailand','','');
photos[80] = new photo(103027,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/227805B.jpg',400,230,'227805b','http://www1.clikpic.com/gerrystone/images/227805B_thumb.jpg',130, 75,0, 0,'Ayutayah 6','September 2000','','Ayutayah Thailand','','');
photos[81] = new photo(103012,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/223607d.jpg',274,400,'223607d','http://www1.clikpic.com/gerrystone/images/223607d_thumb.jpg',130, 190,0, 1,'Reclining Buddah through window','August 2000','','Bangkok Thailand','','');
photos[82] = new photo(103013,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/223611a.jpg',306,400,'223611a','http://www1.clikpic.com/gerrystone/images/223611a_thumb.jpg',130, 170,0, 0,'','August 2000','','Bangkok Thailand','','');
photos[83] = new photo(103028,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/253707g.jpg',378,400,'223707g','http://www1.clikpic.com/gerrystone/images/253707g_thumb.jpg',130, 138,0, 0,'Chinese Character, Chequers player','August 2000','','Thailand','','');
photos[84] = new photo(103011,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/215102a.jpg',346,400,'215102a','http://www1.clikpic.com/gerrystone/images/215102a_thumb.jpg',130, 150,0, 0,'Chinese Character, gourd 1','July 2000','','','','');
photos[85] = new photo(103010,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/214107c.jpg',400,158,'214107c','http://www1.clikpic.com/gerrystone/images/214107c_thumb.jpg',130, 51,0, 0,'Bang Sabay fishing boat 1','July 2000','','Bang Sabay Thailand','','');
photos[86] = new photo(98924,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/256902a.jpg',363,400,'','http://www1.clikpic.com/gerrystone/images/256902a_thumb.jpg',130, 143,1, 0,'','','','','','');
photos[87] = new photo(98925,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/256904a.jpg',386,400,'','http://www1.clikpic.com/gerrystone/images/256904a_thumb.jpg',130, 135,0, 0,'','','','','','');
photos[88] = new photo(98926,'9261','','gallery','http://www1.clikpic.com/gerrystone/images/256912a.jpg',286,400,'','http://www1.clikpic.com/gerrystone/images/256912a_thumb.jpg',130, 182,0, 0,'','','','','','');
photos[89] = new photo(131642,'9260','','gallery','http://www1.clikpic.com/gerrystone/images/7950570.jpg',200,185,'7950570','http://www1.clikpic.com/gerrystone/images/7950570_thumb.jpg',130, 120,0, 0,'','','','near Tolo Greece','','');
photos[90] = new photo(101358,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/238005.jpg',282,400,'238005','http://www1.clikpic.com/gerrystone/images/238005_thumb.jpg',130, 184,0, 1,'New Kingdom Tower from Al Faisaliah Tower','June 2002','','Riyadh,  Saudi-Arabia','','');
photos[91] = new photo(105718,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/237908.jpg',400,387,'237908','http://www1.clikpic.com/gerrystone/images/237908_thumb.jpg',130, 126,0, 0,'Al Faisaliah Tower Riyadh','June 2002','','Saudi Arabia','','');
photos[92] = new photo(105719,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/237909.jpg',400,253,'237909','http://www1.clikpic.com/gerrystone/images/237909_thumb.jpg',130, 82,0, 0,'Al Faisaliyah Tower Riyadh','June 2002','','Saudi Arabia','','');
photos[93] = new photo(105724,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/237912.jpg',400,276,'237812','http://www1.clikpic.com/gerrystone/images/237912_thumb.jpg',130, 90,0, 0,'New Kingdom Tower from Al Faisaliyah Tower Riyadh','June 2002','','Saudi Arabia','','');
photos[94] = new photo(105705,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/237506.jpg',400,290,'237506','http://www1.clikpic.com/gerrystone/images/237506_thumb.jpg',130, 94,0, 0,'House, historical quarter Yanbu','June 2002','','Saudi Arabia','','');
photos[95] = new photo(105708,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/237701.jpg',300,400,'237701','http://www1.clikpic.com/gerrystone/images/237701_thumb.jpg',130, 173,0, 0,'House, historical quarter Yanbu','June 2002','','Saudi Arabia','','');
photos[96] = new photo(105712,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/237711.jpg',400,172,'237711','http://www1.clikpic.com/gerrystone/images/237711_thumb.jpg',130, 56,0, 0,'Hse, historical quarter Yanbu','June 2002','','Saudi Arabia','','');
photos[97] = new photo(105715,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/237810.jpg',400,347,'237810','http://www1.clikpic.com/gerrystone/images/237810_thumb.jpg',130, 113,0, 0,'Houses, historical quarter Yanbu','June 2002','','Saudi Arabia','','');
photos[98] = new photo(101356,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/235804b.jpg',275,400,'235804b','http://www1.clikpic.com/gerrystone/images/235804b_thumb.jpg',130, 189,0, 0,'Door 1 <br>\r\nHistorical area','April 2002','','Yanbu Town,  Saudi-Arabia','','');
photos[99] = new photo(101357,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/236005.jpg',357,400,'236005','http://www1.clikpic.com/gerrystone/images/236005_thumb.jpg',130, 146,0, 0,'Historical Area','April 2002','','Yanbu Town,  Saudi-Arabia','','');
photos[100] = new photo(131747,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/162406.jpg',200,143,'162406','http://www1.clikpic.com/gerrystone/images/162406_thumb.jpg',130, 93,0, 0,'Hejaz railway garrison','June 1997','','Western Saudi-Arabia','','');
photos[101] = new photo(131749,'9262','','gallery','http://www1.clikpic.com/gerrystone/images/163201.jpg',200,105,'163201','http://www1.clikpic.com/gerrystone/images/163201_thumb.jpg',130, 68,0, 0,'Hejaz railway, station','June 1997','','Western Saudi-Arabia','','');
photos[102] = new photo(102327,'9267','','gallery','http://www1.clikpic.com/gerrystone/images/184206a.jpg',400,387,'184206a','http://www1.clikpic.com/gerrystone/images/184206a_thumb.jpg',130, 126,0, 1,'','August 1998','','Tokyo Japan','','');
photos[103] = new photo(101643,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/250007b.jpg',400,230,'250007b','http://www1.clikpic.com/gerrystone/images/250007b_thumb.jpg',130, 75,0, 0,'Hedge at Montecute House','October 2003','','Montecute House NT Somerset','','');
photos[104] = new photo(101620,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249706.jpg',352,400,'249706','http://www1.clikpic.com/gerrystone/images/249706_thumb.jpg',130, 148,0, 0,'Exmoor falls','October 2003','','Exmoor ','','');
photos[105] = new photo(101626,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249807v.jpg',305,400,'249807v','http://www1.clikpic.com/gerrystone/images/249807v_thumb.jpg',130, 170,0, 0,'Windblown tree 1v','October 2003','','Exmoor','','');
photos[106] = new photo(101630,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249808.jpg',366,400,'249808','http://www1.clikpic.com/gerrystone/images/249808_thumb.jpg',130, 142,0, 0,'Windblown tree 2','October 2003','','Exmoor','','');
photos[107] = new photo(101634,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249812.jpg',400,347,'249812','http://www1.clikpic.com/gerrystone/images/249812_thumb.jpg',130, 113,0, 0,'Windblown tree 4','October 2003','','Exmoor','','');
photos[108] = new photo(101636,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249904.jpg',400,293,'249904','http://www1.clikpic.com/gerrystone/images/249904_thumb.jpg',130, 95,0, 0,'Exmoor view 1','October 2003','','Exmoor','','');
photos[109] = new photo(101638,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249906.jpg',400,297,'249906','http://www1.clikpic.com/gerrystone/images/249906_thumb.jpg',130, 97,0, 0,'Exmoor view 2','October 2003','','Exmoor ','','');
photos[110] = new photo(101379,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249603.jpg',287,400,'249603','http://www1.clikpic.com/gerrystone/images/249603_thumb.jpg',130, 181,0, 0,'Warehouse 1','October 2003','','.... London','','');
photos[111] = new photo(101380,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249608.jpg',312,400,'249608','http://www1.clikpic.com/gerrystone/images/249608_thumb.jpg',130, 167,0, 1,'Millenium Bridge 1 London','October 2003','','London','','');
photos[112] = new photo(101370,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249203.jpg',400,241,'249203','http://www1.clikpic.com/gerrystone/images/249203_thumb.jpg',130, 78,0, 0,'Essex Fen 1','October 2003','','East Mersea','','');
photos[113] = new photo(101371,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249210.jpg',400,139,'249210','http://www1.clikpic.com/gerrystone/images/249210_thumb.jpg',130, 45,0, 0,'East Mersea Beach 1','October 2003','','East Mersea Essex','','');
photos[114] = new photo(101372,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249212.jpg',400,140,'249212','http://www1.clikpic.com/gerrystone/images/249212_thumb.jpg',130, 46,0, 0,'East Mersea beach 2','October 2003','','East Mersea Essex','','');
photos[115] = new photo(101373,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249304.jpg',400,326,'249304','http://www1.clikpic.com/gerrystone/images/249304_thumb.jpg',130, 106,0, 0,'Village post box','October 2003','','....Norfolk','','');
photos[116] = new photo(101374,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249306.jpg',400,162,'249306','http://www1.clikpic.com/gerrystone/images/249306_thumb.jpg',130, 53,0, 0,'Beach winches Norfolk','October 2003','','.... Norfolk','','');
photos[117] = new photo(101375,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249405b.jpg',224,400,'249405b','http://www1.clikpic.com/gerrystone/images/249405b_thumb.jpg',130, 232,0, 1,'Cygnet at Snape Norfolk','October 2003','','Snape Norfolk','','');
photos[118] = new photo(101376,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249408.jpg',258,400,'249408','http://www1.clikpic.com/gerrystone/images/249408_thumb.jpg',130, 202,0, 0,'Cygnet at Snape 2','October 2003','','Snape Norfolk','','');
photos[119] = new photo(101378,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/249409.jpg',400,188,'249409','http://www1.clikpic.com/gerrystone/images/249409_thumb.jpg',130, 61,0, 0,'Norfolk Flats 1','October 2003','','... Norfolk','','');
photos[120] = new photo(102328,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/226702b.jpg',400,297,'226702b','http://www1.clikpic.com/gerrystone/images/226702b_thumb.jpg',130, 97,0, 0,'Somerset walk','September 2000','','Somerset','','');
photos[121] = new photo(105702,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/208812b.jpg',400,356,'208812b','http://www1.clikpic.com/gerrystone/images/208812b_thumb.jpg',130, 116,0, 0,'Gunpowder room, The Needles Battery IOW','August 1999','','Isle of Wight','','');
photos[122] = new photo(131652,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/81001b.jpg',200,90,'81001b','http://www1.clikpic.com/gerrystone/images/81001b_thumb.jpg',130, 59,0, 0,'Sunset over Chesil Beach','August 1989','','Chesil Beach ','','');
photos[123] = new photo(102331,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/244807a.jpg',305,400,'244807a','http://www1.clikpic.com/gerrystone/images/244807a_thumb.jpg',130, 170,0, 0,'','','','Wells Somerset','','');
photos[124] = new photo(131644,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/7880270.jpg',192,200,'07880270','http://www1.clikpic.com/gerrystone/images/7880270_thumb.jpg',130, 135,0, 0,'','','','Bucklers Hard Hampshire','','');
photos[125] = new photo(131650,'9505','','gallery','http://www1.clikpic.com/gerrystone/images/243112.jpg',184,200,'243112','http://www1.clikpic.com/gerrystone/images/243112_thumb.jpg',130, 141,0, 0,'Tate Modern','','','Bankside London','','');
photos[126] = new photo(101366,'9526','','gallery','http://www1.clikpic.com/gerrystone/images/242609a.jpg',280,400,'242609a','http://www1.clikpic.com/gerrystone/images/242609a_thumb.jpg',130, 186,0, 0,'Levada 6','October 2002','','Madeira','','');
photos[127] = new photo(101365,'9526','','gallery','http://www1.clikpic.com/gerrystone/images/242203a.jpg',400,284,'242203a','http://www1.clikpic.com/gerrystone/images/242203a_thumb.jpg',130, 92,0, 0,'Reeds for basketwork','October 2002','','Madeira','','');
photos[128] = new photo(101359,'9526','','gallery','http://www1.clikpic.com/gerrystone/images/239404a.jpg',296,400,'239404a','http://www1.clikpic.com/gerrystone/images/239404a_thumb.jpg',130, 176,0, 0,'Levada 1','September 2002','','Madeira','','');
photos[129] = new photo(101362,'9526','','gallery','http://www1.clikpic.com/gerrystone/images/239608a.jpg',400,266,'239608a','http://www1.clikpic.com/gerrystone/images/239608a_thumb.jpg',130, 86,0, 0,'Levada 3','September 2002','','Madeira','','');
photos[130] = new photo(101363,'9526','','gallery','http://www1.clikpic.com/gerrystone/images/239709a.jpg',400,309,'239709a','http://www1.clikpic.com/gerrystone/images/239709a_thumb.jpg',130, 100,0, 0,'Levada 4','September 2002','','Madeira','','');
photos[131] = new photo(101364,'9526','','gallery','http://www1.clikpic.com/gerrystone/images/239712a.jpg',400,400,'239712a','http://www1.clikpic.com/gerrystone/images/239712a_thumb.jpg',130, 130,0, 0,'Levada 5','September 2002','','Madeira','','');
photos[132] = new photo(101360,'9526','','gallery','http://www1.clikpic.com/gerrystone/images/239405a.jpg',400,287,'239405a','http://www1.clikpic.com/gerrystone/images/239405a_thumb.jpg',130, 93,0, 0,'Levada 2','September 2002','','Madeira','','');
photos[133] = new photo(101361,'9526','','gallery','http://www1.clikpic.com/gerrystone/images/239411d.jpg',307,400,'239411d','http://www1.clikpic.com/gerrystone/images/239411d_thumb.jpg',130, 169,0, 1,'View over Funchal from west.','September 2002','','Madeira','','');
photos[134] = new photo(160435,'9526','','gallery','http://www1.clikpic.com/gerrystone/images/117302CR.jpg',400,313,'117302CR','http://www1.clikpic.com/gerrystone/images/117302CR_thumb.jpg',130, 102,0, 0,'Chimney 2','July 1993','','Portugal','','');
photos[135] = new photo(160432,'9526','','gallery','http://www1.clikpic.com/gerrystone/images/115405CR.jpg',400,325,'115405CR','http://www1.clikpic.com/gerrystone/images/115405CR_thumb.jpg',130, 106,0, 0,'Chimney','July 1993','','Portugal','','');
photos[136] = new photo(160429,'9526','','gallery','http://www1.clikpic.com/gerrystone/images/114712CR.jpg',400,333,'114712CR','http://www1.clikpic.com/gerrystone/images/114712CR_thumb.jpg',130, 108,0, 0,'Bandstand','July 1993','','Estoi Portugal','','');
photos[137] = new photo(105697,'9527','','gallery','http://www1.clikpic.com/gerrystone/images/154412a.jpg',400,300,'154412a','http://www1.clikpic.com/gerrystone/images/154412a_thumb.jpg',130, 98,0, 0,'','June 1996','','Italy','','');
photos[138] = new photo(105699,'9527','','gallery','http://www1.clikpic.com/gerrystone/images/154504a.jpg',400,263,'154504a','http://www1.clikpic.com/gerrystone/images/154504a_thumb.jpg',130, 85,0, 0,'','June 1996','','Italy','','');
photos[139] = new photo(101662,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/252106a.jpg',267,400,'252106a','http://www1.clikpic.com/gerrystone/images/252106a_thumb.jpg',130, 195,0, 0,'Bullring Seville','June 2004','','Seville Spain','','');
photos[140] = new photo(101661,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/251603.jpg',299,400,'251603','http://www1.clikpic.com/gerrystone/images/251603_thumb.jpg',130, 174,0, 0,'Seville doorway','May 2004','','Seville Spain','','');
photos[141] = new photo(101659,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/251509b.jpg',343,400,'251509b','http://www1.clikpic.com/gerrystone/images/251509b_thumb.jpg',130, 152,1, 1,'Prego de Cordoba','May 2004','','Prego de Cordoba','','');
photos[142] = new photo(105768,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/251501.jpg',400,147,'251501','http://www1.clikpic.com/gerrystone/images/251501_thumb.jpg',130, 48,0, 0,'View near','May 2004','','Spain','','');
photos[143] = new photo(101656,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/251201.jpg',400,329,'251201','http://www1.clikpic.com/gerrystone/images/251201_thumb.jpg',130, 107,0, 0,'Cathedral Cordoba Spain','May 2004','','Cordoba Spain','','');
photos[144] = new photo(101658,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/251203.jpg',299,400,'251203','http://www1.clikpic.com/gerrystone/images/251203_thumb.jpg',130, 174,0, 0,'Cathedral tower','May 2004','','Cordoba Spain','','');
photos[145] = new photo(105763,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/251104x3.jpg',400,178,'251104x3','http://www1.clikpic.com/gerrystone/images/251104x3_thumb.jpg',130, 58,0, 0,'Water wheel, Cordoba','May 2004','','Spain','','');
photos[146] = new photo(105764,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/251106.jpg',400,322,'251106','http://www1.clikpic.com/gerrystone/images/251106_thumb.jpg',130, 105,0, 0,'Cloisters Cordoba','May 2004','','Spain','','');
photos[147] = new photo(105778,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/251302.jpg',205,400,'251302','http://www1.clikpic.com/gerrystone/images/251302_thumb.jpg',130, 254,0, 0,'La Mezquita Cordoba','May 2004','','Spain','','');
photos[148] = new photo(101647,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/250212by.jpg',400,373,'250212by','http://www1.clikpic.com/gerrystone/images/250212by_thumb.jpg',130, 121,0, 0,'Monestary La Cartuja','May 2004','','La Cartuja Spain','','');
photos[149] = new photo(101654,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/250411.jpg',400,291,'250411','http://www1.clikpic.com/gerrystone/images/250411_thumb.jpg',130, 95,0, 0,'Monestary La Cartuja Spain','May 2004','','La Cartuja Spain','','');
photos[150] = new photo(105725,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/250502.jpg',400,236,'250502','http://www1.clikpic.com/gerrystone/images/250502_thumb.jpg',130, 77,0, 0,'La Cartuja','May 2004','','Spain','','');
photos[151] = new photo(105726,'9528','','gallery','http://www1.clikpic.com/gerrystone/images/250503.jpg',400,333,'250503','http://www1.clikpic.com/gerrystone/images/250503_thumb.jpg',130, 108,0, 0,'La Cartuje Monestary','May 2004','','Spain','','');
photos[152] = new photo(131655,'9529','','gallery','http://www1.clikpic.com/gerrystone/images/124203.jpg',200,103,'124203','http://www1.clikpic.com/gerrystone/images/124203_thumb.jpg',130, 67,0, 0,'Raised hand','September 1993','','Copenhagen Denmark','','');
photos[153] = new photo(131695,'9566','','gallery','http://www1.clikpic.com/gerrystone/images/19381170.jpg',142,200,'19381170','http://www1.clikpic.com/gerrystone/images/19381170_thumb.jpg',130, 183,1, 0,'Itimad-Ud-Daulah 17c','October 1998','','Agra, Uttar Pradesh, India','','');
photos[154] = new photo(131688,'9566','','gallery','http://www1.clikpic.com/gerrystone/images/19210970.jpg',164,200,'19210970','http://www1.clikpic.com/gerrystone/images/19210970_thumb.jpg',130, 159,1, 1,'Fatepur Sikri   1','October 1998','','Agra India','','');
photos[155] = new photo(131691,'9566','','gallery','http://www1.clikpic.com/gerrystone/images/19240270.jpg',200,183,'192402','http://www1.clikpic.com/gerrystone/images/19240270_thumb.jpg',130, 119,0, 0,'Fatepur Sikri   2','October 1998','','Agra India','','');
photos[156] = new photo(131693,'9566','','gallery','http://www1.clikpic.com/gerrystone/images/19240370.jpg',169,200,'19240370','http://www1.clikpic.com/gerrystone/images/19240370_thumb.jpg',130, 154,0, 0,'Fatepur Sikri   3','October 1998','','Agra India','','');
photos[157] = new photo(131639,'10221','','gallery','http://www1.clikpic.com/gerrystone/images/12580870.jpg',200,127,'12580870','http://www1.clikpic.com/gerrystone/images/12580870_thumb.jpg',130, 83,0, 0,'Reflections in the Opera, Sydney Harbour','October 1993','','Sydney Harbour Australia','','');
photos[158] = new photo(131640,'10221','','gallery','http://www1.clikpic.com/gerrystone/images/12660170.jpg',200,194,'12660170','http://www1.clikpic.com/gerrystone/images/12660170_thumb.jpg',130, 126,0, 0,'Sun over the Opera House','October 1993','','Sydney Australia','','');
photos[159] = new photo(131641,'10221','','gallery','http://www1.clikpic.com/gerrystone/images/12640170.jpg',200,128,'12640170','http://www1.clikpic.com/gerrystone/images/12640170_thumb.jpg',130, 83,0, 0,'Sydney Harbour Bridge from the Opera House','October 1993','','Sydney Australia','','');
photos[160] = new photo(131664,'9268','','gallery','http://www1.clikpic.com/gerrystone/images/003202.jpg',200,188,'003202','http://www1.clikpic.com/gerrystone/images/003202_thumb.jpg',130, 122,1, 0,'Lock gate hinge','April 1969','','Hordley','','');
photos[161] = new photo(131663,'9268','','gallery','http://www1.clikpic.com/gerrystone/images/002705.jpg',195,200,'002705','http://www1.clikpic.com/gerrystone/images/002705_thumb.jpg',130, 133,1, 1,'Engine house near Hope','April 1969','','Shropshire','','');
photos[162] = new photo(131661,'9268','','gallery','http://www1.clikpic.com/gerrystone/images/000209.jpg',196,200,'000209','http://www1.clikpic.com/gerrystone/images/000209_thumb.jpg',130, 133,0, 0,'Gas retort house, Shoreham Gas Works Sept 1968','September 1968','','Shoreham Sussex','','');
photos[163] = new photo(131662,'9268','','gallery','http://www1.clikpic.com/gerrystone/images/000612.jpg',197,200,'000612','http://www1.clikpic.com/gerrystone/images/000612_thumb.jpg',130, 132,1, 0,'Gas purifiers, Shoreham Gas Works  Sept 1968','September 1968','','Shoreham Sussex','','');
photos[164] = new photo(99277,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/260711.jpg',400,343,'260711','http://www1.clikpic.com/gerrystone/images/260711_thumb.jpg',130, 111,0, 1,'Kingston Flyer AB 795 built NZ 1927 was a former Royal Train Locomotive at Kingston','March 2005','','Kingston SI New Zealand','','');
photos[165] = new photo(99279,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/260804.jpg',400,266,'260804','http://www1.clikpic.com/gerrystone/images/260804_thumb.jpg',130, 86,0, 0,'Kingston Flyer AB 795 built NZ 1927 was a former Royal Train Locomotive at Kingston  (2)','March 2005','','Kingston SI New Zealand','','');
photos[166] = new photo(99247,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/2590061.jpg',400,234,'259006','http://www1.clikpic.com/gerrystone/images/2590061_thumb.jpg',130, 76,0, 0,'\'Kaitangata\' at Shantytown 3','March 2005','','Grteymouth SI New Zealand','','');
photos[167] = new photo(99259,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/2594041.jpg',400,383,'259404','http://www1.clikpic.com/gerrystone/images/2594041_thumb.jpg',130, 124,0, 0,'\'Kaitangata\' at Shantytown','March 2005','','Greymouth SI New Zealand','','');
photos[168] = new photo(99261,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/259406.jpg',315,400,'259406','http://www1.clikpic.com/gerrystone/images/259406_thumb.jpg',130, 165,0, 0,'Kaitangata at Shanty Town (3)','March 2005','','Greymouth SI New Zealand','','');
photos[169] = new photo(99265,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/2595011.jpg',400,248,'259501','http://www1.clikpic.com/gerrystone/images/2595011_thumb.jpg',130, 81,0, 0,'\'Kaitangata\' at Shantytown 2','March 2005','','Shantytown Greymouth SI New Zealand','','');
photos[170] = new photo(99471,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/257809a1.jpg',400,308,'257809a','http://www1.clikpic.com/gerrystone/images/257809a1_thumb.jpg',130, 100,0, 0,'','March 2005','','','','');
photos[171] = new photo(105755,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/250610.jpg',400,346,'250610','http://www1.clikpic.com/gerrystone/images/250610_thumb.jpg',130, 112,0, 0,'Estacion Cazalla-Constantina, loading gauge','May 2004','','Spain','','');
photos[172] = new photo(105757,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/250611.jpg',400,288,'250611','http://www1.clikpic.com/gerrystone/images/250611_thumb.jpg',130, 94,0, 0,'Estacion Cazalla-Constantina, goods sidings.','May 2004','','Spain','','');
photos[173] = new photo(105758,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/250701.jpg',400,384,'250701','http://www1.clikpic.com/gerrystone/images/250701_thumb.jpg',130, 125,0, 0,'Estacion Cazalla-Constantina, water column.','May 2004','','Spain','','');
photos[174] = new photo(105759,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/250702.jpg',400,227,'250702','http://www1.clikpic.com/gerrystone/images/250702_thumb.jpg',130, 74,0, 0,'Estacion Cazalla-Constantina, broad gauge buffer stop  1.','May 2004','','Spain','','');
photos[175] = new photo(105760,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/250704.jpg',400,302,'250704','http://www1.clikpic.com/gerrystone/images/250704_thumb.jpg',130, 98,0, 0,'Estacion Cazalla-Constantina, broad gauge buffer stop  2.','May 2004','','Spain','','');
photos[176] = new photo(105761,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/250703.jpg',400,148,'250703','http://www1.clikpic.com/gerrystone/images/250703_thumb.jpg',130, 48,0, 0,'Estacion Cazalla-Constantina, broad gauge.','May 2004','','Spain','','');
photos[177] = new photo(102330,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/243007a.jpg',400,228,'243007a','http://www1.clikpic.com/gerrystone/images/243007a_thumb.jpg',130, 74,1, 1,'LNER class A3, 4472 \'Flying Scotsman\' near Betchworth with VSOE.','October 2002','','Betchworth Surrey','','');
photos[178] = new photo(131648,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/12850970.jpg',200,191,'12850970','http://www1.clikpic.com/gerrystone/images/12850970_thumb.jpg',130, 124,0, 0,'No 934 approaching Clarence','October 1993','','Zig-Zag railway NSW Australia','','');
photos[179] = new photo(131649,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/121703.jpg',200,148,'121703','http://www1.clikpic.com/gerrystone/images/121703_thumb.jpg',130, 96,1, 1,'No 934 arriving at Clarence Top Road','July 1993','','Zig-Zag railway NSW Australia','','');
photos[180] = new photo(469119,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/012206.jpg',400,301,'012206','http://www1.clikpic.com/gerrystone/images/012206_thumb.jpg',130, 98,0, 0,'\'Baxter\' at Sheffield Park, Bluebell Railway.','February 1971','','Sheffield Park, Bluebell Railway.','','');
photos[181] = new photo(469100,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/008109.jpg',362,400,'008109','http://www1.clikpic.com/gerrystone/images/008109_thumb.jpg',130, 144,1, 1,'Dukedog class, 3217 at Sheffield Park, Bluebell Railway.','August 1970','','Sheffield Park, Bluebell Railway.','','');
photos[182] = new photo(469101,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/008110.jpg',388,400,'008110','http://www1.clikpic.com/gerrystone/images/008110_thumb.jpg',130, 134,1, 1,'Dukedog class, 3217 at Sheffield Park, Bluebell Railway.','August 1970','','Sheffield Park, Bluebell Railway.','','');
photos[183] = new photo(469102,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/008111.jpg',395,400,'008111','http://www1.clikpic.com/gerrystone/images/008111_thumb.jpg',130, 132,1, 1,'Dukedog class, 3217 at Sheffield Park, Bluebell Railway.','August 1970','','Sheffield Park, Bluebell Railway.','','');
photos[184] = new photo(101664,'9264','','gallery','http://www1.clikpic.com/gerrystone/images/249101.jpg',400,223,'249101','http://www1.clikpic.com/gerrystone/images/249101_thumb.jpg',130, 72,0, 0,'Class A3 4472 \'Flying Scotsman\' passing Reigate with VSOE special.','','','Reigate Surrey','','');
photos[185] = new photo(460135,'9266','','gallery','http://www1.clikpic.com/gerrystone/images/271011.jpg',400,248,'271011','http://www1.clikpic.com/gerrystone/images/271011_thumb.jpg',130, 81,1, 1,'(Southern) Scarce swallowtail - Iphiclides podalirius f.feisthamelii','June 2006','','nr Sumacarcer','','');
photos[186] = new photo(131651,'9266','','gallery','http://www1.clikpic.com/gerrystone/images/228011.jpg',136,200,'228011','http://www1.clikpic.com/gerrystone/images/228011_thumb.jpg',130, 191,0, 0,'Elephants Eye','September 2000','','Jomtien Thailand','','');
photos[187] = new photo(160427,'9266','','gallery','http://www1.clikpic.com/gerrystone/images/95510CR.jpg',400,294,'95510CR','http://www1.clikpic.com/gerrystone/images/95510CR_thumb.jpg',130, 96,0, 0,'Reticulated Giraffe','July 1991','','Kenya','','');
photos[188] = new photo(160418,'9266','','gallery','http://www1.clikpic.com/gerrystone/images/10508CRa.jpg',400,284,'10508CRa','http://www1.clikpic.com/gerrystone/images/10508CRa_thumb.jpg',130, 92,0, 0,'Grapes','September 1970','','Holland','','');
photos[189] = new photo(98971,'9266','','gallery','http://www1.clikpic.com/gerrystone/images/262207.jpg',400,203,'','http://www1.clikpic.com/gerrystone/images/262207_thumb.jpg',130, 66,0, 0,'','','','','','');
photos[190] = new photo(160425,'9237','','gallery','http://www1.clikpic.com/gerrystone/images/BiggHill1CR.jpg',400,360,'BiggHillCR','http://www1.clikpic.com/gerrystone/images/BiggHill1CR_thumb.jpg',130, 117,0, 0,'Treble 1 at Biggin Hill Airshow','','','Biggin Hill ','','');
photos[191] = new photo(102277,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx20.jpg',400,261,'A11536','http://www1.clikpic.com/gerrystone/images/35xxxx20_thumb.jpg',130, 85,0, 0,'WC class 34042 \'Dorchester\'departing Southampton Central for Weymouth','August 1961','','Southampton Central','','');
photos[192] = new photo(102275,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx18.jpg',400,218,'A11336','http://www1.clikpic.com/gerrystone/images/35xxxx18_thumb.jpg',130, 71,0, 0,'Class 5 48436 with an up freight passing Cullompton Station','August 1961','','Cullompton','','');
photos[193] = new photo(101667,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx11.jpg',365,400,'A10032','http://www1.clikpic.com/gerrystone/images/35xxxx11_thumb.jpg',130, 142,0, 0,'Castle class       leaving Paddington','June 1961','','Paddington ','','');
photos[194] = new photo(101669,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx12.jpg',400,238,'A10033','http://www1.clikpic.com/gerrystone/images/35xxxx12_thumb.jpg',130, 77,0, 0,'Castle class      leaving Paddington','June 1961','','Paddington','','');
photos[195] = new photo(101670,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx13.jpg',400,254,'A10034','http://www1.clikpic.com/gerrystone/images/35xxxx13_thumb.jpg',130, 83,0, 0,'Castle class 7014 \'Caerhays Castle\' at Paddington','June 1961','','Paddington','','');
photos[196] = new photo(162026,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A09418.jpg',400,276,'A09418','http://www1.clikpic.com/gerrystone/images/A09418_thumb.jpg',130, 90,0, 0,'Castle class 5021 \'Whittington Castle\' departing','April 1961','','Paddington ','','');
photos[197] = new photo(162027,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A09405.jpg',400,240,'A09405','http://www1.clikpic.com/gerrystone/images/A09405_thumb.jpg',130, 78,0, 1,'28xx class 2821 2-8-0','April 1961','','Old Oak Common MPD 81A','','');
photos[198] = new photo(162029,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A09411.jpg',400,240,'A09411','http://www1.clikpic.com/gerrystone/images/A09411_thumb.jpg',130, 78,0, 1,'Castle class 7030  \'Cranbrook Castle\' with double chimney','April 1961','','Old Oak Common MPD 81A','','');
photos[199] = new photo(167720,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A09215.jpg',400,362,'A09215','http://www1.clikpic.com/gerrystone/images/A09215_thumb.jpg',130, 118,0, 1,'43031','April 1961','','Neasden MPD  14D','','');
photos[200] = new photo(167721,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A09304.jpg',316,400,'A09304','http://www1.clikpic.com/gerrystone/images/A09304_thumb.jpg',130, 165,0, 1,'Castle and Hall','April 1961','','Paddington','','');
photos[201] = new photo(167723,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A09306.jpg',400,219,'A09306','http://www1.clikpic.com/gerrystone/images/A09306_thumb.jpg',130, 71,0, 0,'15xx class 1505 arriving with empty stock','April 1961','','Paddington','','');
photos[202] = new photo(102282,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx33.jpg',400,254,'A08233','http://www1.clikpic.com/gerrystone/images/35xxxx33_thumb.jpg',130, 83,0, 0,'30585 Beattie Tank','September 1960','','Eastleigh MPD 71A','','');
photos[203] = new photo(102293,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxxx6.jpg',338,400,'A07912','http://www1.clikpic.com/gerrystone/images/35xxxxx6_thumb.jpg',130, 154,0, 0,'Z class 30956 leaving Exeter St Davids for Exeter Central','September 1960','','Exeter St Davids','','');
photos[204] = new photo(101672,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/3507125.jpg',400,174,'A07025','http://www1.clikpic.com/gerrystone/images/3507125_thumb.jpg',130, 57,0, 0,'WC class    with down Victoria via Maidstone east train.','August 1960','','Shortlands','','');
photos[205] = new photo(102270,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/3507126.jpg',400,251,'A07026','http://www1.clikpic.com/gerrystone/images/3507126_thumb.jpg',130, 82,0, 0,'WC class      with Dn \'Golden Arrow\' at Shortlands','August 1960','','Shortlands','','');
photos[206] = new photo(101677,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A07001m.jpg',400,238,'A042A01C','http://www1.clikpic.com/gerrystone/images/A07001m_thumb.jpg',130, 77,0, 0,'5-BEL  5401 \'Brighton Belle\' passing South Croydon','April 1960','','South Croydon','','');
photos[207] = new photo(102279,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx30.jpg',268,400,'A04214','http://www1.clikpic.com/gerrystone/images/35xxxx30_thumb.jpg',130, 194,0, 0,'Class G6 30238 Ex Meldon quarry shunter<br>\r\nApril 1960','April 1960','','Guildford MPD 70C','','');
photos[208] = new photo(102268,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A03010.jpg',400,241,'A03010','http://www1.clikpic.com/gerrystone/images/A03010_thumb.jpg',130, 78,0, 0,'L1 class No 31787','October 1959','','Nine Elms MPD 70A','','');
photos[209] = new photo(102274,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx15.jpg',400,234,'A03009','http://www1.clikpic.com/gerrystone/images/35xxxx15_thumb.jpg',130, 76,0, 0,'L1 class 31786','October 1959','','Nine Elms MPD 70A','','');
photos[210] = new photo(102296,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxxx7.jpg',400,285,'A02901','http://www1.clikpic.com/gerrystone/images/35xxxxx7_thumb.jpg',130, 93,0, 1,'L class Nos 31772? and  31774? near Gypsy Hill with down KESR special.','October 1959','','Gypsy Hill','','');
photos[211] = new photo(167725,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A02735.jpg',400,247,'A02735','http://www1.clikpic.com/gerrystone/images/A02735_thumb.jpg',130, 80,0, 1,'Castle class 5061 \'Earl of Birkenhead\'','September 1959','','Old Oak Common MPD 81A','','');
photos[212] = new photo(167727,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A02737.jpg',400,243,'A02737','http://www1.clikpic.com/gerrystone/images/A02737_thumb.jpg',130, 79,0, 0,'5700 class 7791','September 1959','','Old Oak Common MPD 81A','','');
photos[213] = new photo(101665,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx10.jpg',400,139,'A02620','http://www1.clikpic.com/gerrystone/images/35xxxx10_thumb.jpg',130, 45,0, 0,'Schools class V, 30902 \'Wellington\' leaving Redhill with a London Bridge to Brighton via Redhill train.','September 1959','','Redhill Surrey','','');
photos[214] = new photo(101671,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx14.jpg',400,256,'A02621','http://www1.clikpic.com/gerrystone/images/35xxxx14_thumb.jpg',130, 83,0, 0,'Class D1 31470 leaving Redhill with a train for Tonbridge','September 1959','','Redhill','','');
photos[215] = new photo(102303,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxxx9.jpg',400,282,'A02623','http://www1.clikpic.com/gerrystone/images/35xxxxx9_thumb.jpg',130, 92,0, 0,'Class 4MT 42068 at Redhill MPD 75B','September 1959','','Redhill MPD 75B','','');
photos[216] = new photo(131666,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A02609.jpg',200,137,'A02609','http://www1.clikpic.com/gerrystone/images/A02609_thumb.jpg',130, 89,1, 0,'L class 31778','September 1959','','Redhill MPD 75B','','');
photos[217] = new photo(131667,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A02602.jpg',200,115,'A02602','http://www1.clikpic.com/gerrystone/images/A02602_thumb.jpg',130, 75,0, 0,'N class 31851 on up freight','September 1959','','Redhill Station','','');
photos[218] = new photo(102278,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx21.jpg',400,205,'A02510','http://www1.clikpic.com/gerrystone/images/35xxxx21_thumb.jpg',130, 67,0, 0,'O2 class W24 \'Calbourne\', W28 \'Ashley\', W27 \'Merstone\'','September 1959','','Ryde St Johns MPD 70H','','');
photos[219] = new photo(102289,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxxx4.jpg',400,308,'A02509','http://www1.clikpic.com/gerrystone/images/35xxxxx4_thumb.jpg',130, 100,0, 0,'Class O2 W25 \'Godshill\' at Ryde Pier IOW','September 1959','','Ryde IOW','','');
photos[220] = new photo(167729,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A02501.jpg',400,277,'A02501','http://www1.clikpic.com/gerrystone/images/A02501_thumb.jpg',130, 90,0, 0,'Class E4  32495','September 1959','','Fratton MPD 73F','','');
photos[221] = new photo(167732,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A02525.jpg',400,249,'A02525','http://www1.clikpic.com/gerrystone/images/A02525_thumb.jpg',130, 81,0, 0,'30456','September 1959','','Eastleigh MPD 71A','','');
photos[222] = new photo(167734,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A02532.jpg',400,240,'A02532','http://www1.clikpic.com/gerrystone/images/A02532_thumb.jpg',130, 78,0, 0,'Z class 30956','September 1959','','Eastleigh MPD 71A','','');
photos[223] = new photo(102288,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxxx3.jpg',400,238,'A01910','http://www1.clikpic.com/gerrystone/images/35xxxxx3_thumb.jpg',130, 77,0, 0,'D1 class 31749 dn Victoria to Ramsgate excursion','June 1959','','Shortlands','','');
photos[224] = new photo(131633,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A02033.jpg',200,104,'A02033','http://www1.clikpic.com/gerrystone/images/A02033_thumb.jpg',130, 68,0, 0,'West Country class 34035 \'Shaftesbury\' with experimental front casing on down train','June 1959','','Chiselhurst','','');
photos[225] = new photo(131631,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01904.jpg',200,129,'A01904','http://www1.clikpic.com/gerrystone/images/A01904_thumb.jpg',130, 84,0, 0,'Class H16  30516','June 1959','','Feltham MPD 70B','','');
photos[226] = new photo(131635,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01903.jpg',200,133,'A01903','http://www1.clikpic.com/gerrystone/images/A01903_thumb.jpg',130, 86,0, 0,'Class O2  30177 at Feltham MPD 70B','June 1959','','Feltham MPD 70B','','');
photos[227] = new photo(131636,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01902.jpg',200,157,'A01802','http://www1.clikpic.com/gerrystone/images/A01902_thumb.jpg',130, 102,0, 0,'Class S15  30508','June 1959','','Feltham MPD 70B','','');
photos[228] = new photo(131637,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01835.jpg',200,129,'A01735','http://www1.clikpic.com/gerrystone/images/A01835_thumb.jpg',130, 84,0, 0,'Peppercorn A1 Class 60117 \'Bois Roussel\'','May 1959','','Kings Cross Station','','');
photos[229] = new photo(131638,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01833.jpg',200,135,'A01733','http://www1.clikpic.com/gerrystone/images/A01833_thumb.jpg',130, 88,0, 0,'B1 Class 61236 arriving at Kings Cross','May 1959','','Kings Cross Station','','');
photos[230] = new photo(131645,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01834.jpg',200,108,'A01734','http://www1.clikpic.com/gerrystone/images/A01834_thumb.jpg',130, 70,0, 0,'Class N    69498 leaving Kings Cross with parcels train','May 1959','','Kings Cross Station','','');
photos[231] = new photo(162030,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01602.jpg',400,254,'A01602','http://www1.clikpic.com/gerrystone/images/A01602_thumb.jpg',130, 83,0, 0,'Class U1 31895 on Victoria to Tunbridge Wells West via Oxted and Hever','May 1959','','Edenbridge Town?','','');
photos[232] = new photo(162031,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01434.jpg',400,252,'A01434','http://www1.clikpic.com/gerrystone/images/A01434_thumb.jpg',130, 82,0, 0,'Class Nx','May 1959','','Potters Bar','','');
photos[233] = new photo(162034,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01326.jpg',400,233,'A01326','http://www1.clikpic.com/gerrystone/images/A01326_thumb.jpg',130, 76,0, 1,'Class K 32338 with a Bricklayers Arms to Tonbridge freight','May 1959','','Tonbridge','','');
photos[234] = new photo(162039,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01128.jpg',400,233,'A01128','http://www1.clikpic.com/gerrystone/images/A01128_thumb.jpg',130, 76,0, 1,'Class T9 30719','April 1959','','Nine Elms MPD 70A','','');
photos[235] = new photo(102300,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxxx8.jpg',400,265,'A01103','http://www1.clikpic.com/gerrystone/images/35xxxxx8_thumb.jpg',130, 86,0, 0,'Class N  69578 leaving Kings X with empty Queen of Scots train.','April 1959','','Kings X','','');
photos[236] = new photo(162041,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01026.jpg',400,303,'A01026','http://www1.clikpic.com/gerrystone/images/A01026_thumb.jpg',130, 98,0, 1,'Britannia class 70026 \'Polar Star\'','April 1959','','Paddington Station','','');
photos[237] = new photo(167737,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01116.jpg',400,237,'A01116','http://www1.clikpic.com/gerrystone/images/A01116_thumb.jpg',130, 77,0, 0,'English Electric \'Deltic\'','April 1959','','Kings Cross','','');
photos[238] = new photo(162015,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A01007.jpg',400,262,'A01007','http://www1.clikpic.com/gerrystone/images/A01007_thumb.jpg',130, 85,0, 0,'Class A1 60121 \'Silurian\' with \'Queen of Scots\' pullman','April 1959','','Kings Cross','','');
photos[239] = new photo(162020,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/A00923.jpg',400,287,'A00923','http://www1.clikpic.com/gerrystone/images/A00923_thumb.jpg',130, 93,0, 1,'Class A1  DS 680 at Lancing Carriage Works','April 1959','','Lancing Sussex','','');
photos[240] = new photo(102284,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxxx1.jpg',400,191,'A00705','http://www1.clikpic.com/gerrystone/images/35xxxxx1_thumb.jpg',130, 62,0, 0,'Class C 31589 and N class on track train','April 1959','','Tonbridge Station','','');
photos[241] = new photo(102286,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxxx2.jpg',400,239,'A00903','http://www1.clikpic.com/gerrystone/images/35xxxxx2_thumb.jpg',130, 78,0, 0,'','April 1959','','Shortlands','','');
photos[242] = new photo(102281,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxx31c.jpg',400,250,'A00521C','http://www1.clikpic.com/gerrystone/images/35xxxx31c_thumb.jpg',130, 81,0, 0,'Class L1 31754 with a dn Victoria to Dover via Chatham train.','March 1959','','Shortlands','','');
photos[243] = new photo(101674,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/6900501.jpg',400,215,'6900501','http://www1.clikpic.com/gerrystone/images/6900501_thumb.jpg',130, 70,0, 0,'Class C2X  32443<br>\r\nat Norwood Junction MPD 1959','','','Norwood Junction MPD 75C','','');
photos[244] = new photo(101675,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/x690101m.jpg',400,282,'x690101m','http://www1.clikpic.com/gerrystone/images/x690101m_thumb.jpg',130, 92,0, 0,'Class W 31915<br>\r\npassing Norwood Junction MPD 1959','','','Norwood Junction ','','');
photos[245] = new photo(101678,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/x127003m.jpg',400,258,'x127003m','http://www1.clikpic.com/gerrystone/images/x127003m_thumb.jpg',130, 84,0, 1,'Princess Coronation Class 46253 \'City of St Albans\' 1958','','','Perth MPD 63A','','');
photos[246] = new photo(102292,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/35xxxxx5.jpg',400,231,'35xxxxx5','http://www1.clikpic.com/gerrystone/images/35xxxxx5_thumb.jpg',130, 75,0, 0,'T9','','','Southampton','','');
photos[247] = new photo(102305,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/x127001m.jpg',400,217,'x127001m','http://www1.clikpic.com/gerrystone/images/x127001m_thumb.jpg',130, 71,0, 0,'Glen class D34 62484 \'Glen Lyon\' 1958','','','Perth MPD 63A','','');
photos[248] = new photo(102309,'9506','','gallery','http://www1.clikpic.com/gerrystone/images/x127002m.jpg',400,196,'x127002m','http://www1.clikpic.com/gerrystone/images/x127002m_thumb.jpg',130, 64,0, 0,'Class A2 60534 \'Irish Elegance\' 1958','','','Perth MPD 63A','','');
photos[249] = new photo(460168,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271607.jpg',400,183,'271607','http://www1.clikpic.com/gerrystone/images/271607_thumb.jpg',130, 59,0, 0,'','June 2006','','nr Lorca','','');
photos[250] = new photo(460169,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271708.jpg',400,195,'271708','http://www1.clikpic.com/gerrystone/images/271708_thumb.jpg',130, 63,0, 0,'','June 2006','','Lorcha','','');
photos[251] = new photo(460172,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271711.jpg',400,192,'271711','http://www1.clikpic.com/gerrystone/images/271711_thumb.jpg',130, 62,0, 0,'Moorish castle overlooking Lorcha','June 2006','','Lorcha','','');
photos[252] = new photo(460173,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271901.jpg',400,331,'271901','http://www1.clikpic.com/gerrystone/images/271901_thumb.jpg',130, 108,0, 0,'View from the railway trackbed. This metre gauge line was built and run by the English company \"The Alcoy and Gandia Railway and Harbour Company\" and opened in 1893 between Alcoy and the Port of Gandia (Grao). There were two daily services between Gandia and Alcoy. It remained in private hands until 1st January 1965, but closed in 1969, still using the locos and rolling stock with which it had opened 76 years earlier. From Lorcha to Villalonga  the trackbed follows the Rio Serpis. Locos used were Beyer Peacock  2-6-2T.','June 2006','','nr Lorcha','','');
photos[253] = new photo(460175,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271902.jpg',400,346,'271902','http://www1.clikpic.com/gerrystone/images/271902_thumb.jpg',130, 112,0, 0,'View from the railway trackbed. This metre gauge line was built and run by the English company \"The Alcoy and Gandia Railway and Harbour Company\" and opened in 1893 between Alcoy and the Port of Gandia (Grao). There were two daily services between Gandia and Alcoy. It remained in private hands until 1st January 1965, but closed in 1969, still using the locos and rolling stock with which it had opened 76 years earlier. From Lorcha to Villalonga  the trackbed follows the Rio Serpis. Locos used were Beyer Peacock  2-6-2T.','June 2006','','nr Lorcha','','');
photos[254] = new photo(460184,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/272004.jpg',400,380,'272004','http://www1.clikpic.com/gerrystone/images/272004_thumb.jpg',130, 124,0, 0,'Rio Serpis from the railway trackbed.This metre gauge line was built and run by the English company \"The Alcoy and Gandia Railway and Harbour Company\" and opened in 1893 between Alcoy and the Port of Gandia (Grao). There were two daily services between Gandia and Alcoy. It remained in private hands until 1st January 1965, but closed in 1969, still using the locos and rolling stock with which it had opened 76 years earlier. Locos used were Beyer Peacock  2-6-2T.','June 2006','','nr Lorcha','','');
photos[255] = new photo(460185,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/272010.jpg',400,347,'272010','http://www1.clikpic.com/gerrystone/images/272010_thumb.jpg',130, 113,0, 0,'Trackbed of the metre gauge line that was built and run by the English company \"The Alcoy and Gandia Railway and Harbour Company\" and opened in 1893 between Alcoy and the Port of Gandia (Grao). There were two daily services between Gandia and Alcoy. It remained in private hands until 1st January 1965, but closed in 1969, still using the locos and rolling stock with which it had opened 76 years earlier. From Lorcha to Villalonga  the trackbed follows the Rio Serpis. Locos used were Beyer Peacock  2-6-2T.','June 2006','','nr Lorcha','','');
photos[256] = new photo(460186,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/272102.jpg',400,306,'272102','http://www1.clikpic.com/gerrystone/images/272102_thumb.jpg',130, 99,0, 0,'View from the railway trackbed of the remains of \'La Cantera\' bridge over the Rio Serpis. This metre gauge line was built and run by the English company \"The Alcoy and Gandia Railway and Harbour Company\" and opened in 1893 between Alcoy and the Port of Gandia (Grao). There were two daily services between Gandia and Alcoy. It remained in private hands until 1st January 1965, but closed in 1969, still using the locos and rolling stock with which it had opened 76 years earlier. From Lorcha to Villalonga  the trackbed follows the Rio Serpis. Locos used were Beyer Peacock  2-6-2T.','June 2006','','nr Villalonga','','');
photos[257] = new photo(460187,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/272103.jpg',400,361,'272103','http://www1.clikpic.com/gerrystone/images/272103_thumb.jpg',130, 117,0, 0,'View from the railway trackbed. This metre gauge line was built and run by the English company \"The Alcoy and Gandia Railway and Harbour Company\" and opened in 1893 between Alcoy and the Port of Gandia (Grao). There were two daily services between Gandia and Alcoy. It remained in private hands until 1st January 1965, but closed in 1969, still using the locos and rolling stock with which it had opened 76 years earlier. From Lorcha to Villalonga  the trackbed follows the Rio Serpis. Locos used were Beyer Peacock  2-6-2T.','June 2006','','nr Villalonga','','');
photos[258] = new photo(460139,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271303.jpg',290,400,'271303','http://www1.clikpic.com/gerrystone/images/271303_thumb.jpg',130, 179,0, 0,'','June 2006','','Valencia','','');
photos[259] = new photo(460140,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271307.jpg',400,275,'271307','http://www1.clikpic.com/gerrystone/images/271307_thumb.jpg',130, 89,0, 0,'','June 2006','','Valencia','','');
photos[260] = new photo(460141,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271310.jpg',400,251,'271310','http://www1.clikpic.com/gerrystone/images/271310_thumb.jpg',130, 82,0, 0,'','June 2006','','Valencia','','');
photos[261] = new photo(460142,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271312c.jpg',400,291,'271312c','http://www1.clikpic.com/gerrystone/images/271312c_thumb.jpg',130, 95,0, 0,'','June 2006','','Valencia','','');
photos[262] = new photo(460145,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271405.jpg',400,133,'271405','http://www1.clikpic.com/gerrystone/images/271405_thumb.jpg',130, 43,0, 0,'','June 2006','','Valencia','','');
photos[263] = new photo(460149,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271408d2.jpg',400,214,'271408d','http://www1.clikpic.com/gerrystone/images/271408d2_thumb.jpg',130, 70,0, 0,'','June 2006','','Valencia','','');
photos[264] = new photo(460151,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271408b.jpg',400,214,'271408b','http://www1.clikpic.com/gerrystone/images/271408b_thumb.jpg',130, 70,0, 0,'','June 2006','','Valencia','','');
photos[265] = new photo(460153,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271501a.jpg',400,147,'271501a','http://www1.clikpic.com/gerrystone/images/271501a_thumb.jpg',130, 48,0, 0,'','June 2006','','Valencia','','');
photos[266] = new photo(460156,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271501b2.jpg',400,147,'271501b','http://www1.clikpic.com/gerrystone/images/271501b2_thumb.jpg',130, 48,0, 0,'','June 2006','','Valencia','','');
photos[267] = new photo(460158,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271503a.jpg',400,182,'271503a','http://www1.clikpic.com/gerrystone/images/271503a_thumb.jpg',130, 59,0, 0,'','June 2006','','Valencia','','');
photos[268] = new photo(460159,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271503b.jpg',400,160,'271503b','http://www1.clikpic.com/gerrystone/images/271503b_thumb.jpg',130, 52,0, 0,'','June 2006','','Valencia','','');
photos[269] = new photo(460164,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271503d2.jpg',400,160,'271503d','http://www1.clikpic.com/gerrystone/images/271503d2_thumb.jpg',130, 52,0, 0,'','June 2006','','Valencia','','');
photos[270] = new photo(460165,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271507.jpg',400,142,'271507','http://www1.clikpic.com/gerrystone/images/271507_thumb.jpg',130, 46,0, 0,'','June 2006','','Valencia','','');
photos[271] = new photo(460138,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271209.jpg',352,400,'271209','http://www1.clikpic.com/gerrystone/images/271209_thumb.jpg',130, 148,0, 0,'','June 2006','','Cullera','','');
photos[272] = new photo(460137,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271112.jpg',400,365,'271112','http://www1.clikpic.com/gerrystone/images/271112_thumb.jpg',130, 119,0, 0,'','June 2006','','nr Sumacarcer','','');
photos[273] = new photo(460144,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/2710112.jpg',400,248,'271011','http://www1.clikpic.com/gerrystone/images/2710112_thumb.jpg',130, 81,0, 0,'(Southern) Scarce swallowtail - Iphiclides podalirius f.feisthamelii','June 2006','','nr Sumacarcer','','');
photos[274] = new photo(460130,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/270904.jpg',400,146,'270904','http://www1.clikpic.com/gerrystone/images/270904_thumb.jpg',130, 47,0, 0,'','June 2006','','Altura ','','');
photos[275] = new photo(460131,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271002.jpg',400,217,'271002','http://www1.clikpic.com/gerrystone/images/271002_thumb.jpg',130, 71,0, 0,'','June 2006','','Altura','','');
photos[276] = new photo(460132,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271003.jpg',344,400,'271003','http://www1.clikpic.com/gerrystone/images/271003_thumb.jpg',130, 151,0, 0,'','June 2006','','Altura','','');
photos[277] = new photo(460133,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/271006.jpg',365,400,'271006','http://www1.clikpic.com/gerrystone/images/271006_thumb.jpg',130, 142,0, 0,'Door to Cathedral<br>\r\n\'SANTA IGLESIA CATEDRAL BASÍLICA DE SANTA MARÍA DE LA ASUNCIÓN\'','June 2006','','Segorbe','','');
photos[278] = new photo(460125,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/270603.jpg',400,190,'270603','http://www1.clikpic.com/gerrystone/images/270603_thumb.jpg',130, 62,0, 0,'','June 2006','','nr Chovar','','');
photos[279] = new photo(460126,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/270708.jpg',400,298,'270708','http://www1.clikpic.com/gerrystone/images/270708_thumb.jpg',130, 97,0, 0,'','June 2006','','nr Chovar','','');
photos[280] = new photo(460127,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/270711.jpg',400,290,'270711','http://www1.clikpic.com/gerrystone/images/270711_thumb.jpg',130, 94,0, 0,'Disused magnesium mine','June 2006','','nr Chovar','','');
photos[281] = new photo(460128,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/270801.jpg',395,400,'270801','http://www1.clikpic.com/gerrystone/images/270801_thumb.jpg',130, 132,0, 0,'','June 2006','','nr Chovar','','');
photos[282] = new photo(460129,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/270806.jpg',367,400,'270806','http://www1.clikpic.com/gerrystone/images/270806_thumb.jpg',130, 142,0, 0,'Partridge chicks (how many?)','June 2006','','nr Chovar','','');
photos[283] = new photo(460113,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/270511.jpg',259,400,'270511','http://www1.clikpic.com/gerrystone/images/270511_thumb.jpg',130, 201,0, 0,'\'Fuente de los 50 caños\',<br>\r\nBy the Palancia river, the fresh water fountain, known as “de las Provicinas”, which has 50 spouts.','June 2006','','Segorbe','','');
photos[284] = new photo(460121,'9507','','gallery','http://www1.clikpic.com/gerrystone/images/270601.jpg',400,172,'270601','http://www1.clikpic.com/gerrystone/images/270601_thumb.jpg',130, 56,0, 0,'\'Fuente de los 50 caños\',<br>\r\nBy the Palancia river, the fresh water fountain, known as “de las Provicinas”, which has 50 spouts.','June 2006','','Segorbe','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(9265,'460166,460163,460160,460155,460154,460147,460146,101367','ART and DESIGN','gallery');
galleries[1] = new gallery(9263,'98969,98968','NEW ZEALAND','gallery');
galleries[2] = new gallery(9261,'103019,103012','THAILAND','gallery');
galleries[3] = new gallery(9260,'131642','EUROPE (OTHER)','gallery');
galleries[4] = new gallery(9262,'101358','MIDDLE EAST','gallery');
galleries[5] = new gallery(9267,'102327','JAPAN','gallery');
galleries[6] = new gallery(9505,'101380,101375','BRITISH ISLES','gallery');
galleries[7] = new gallery(9526,'101361','PORTUGAL & MADEIRA','gallery');
galleries[8] = new gallery(9527,'105699,105697','ITALY','gallery');
galleries[9] = new gallery(9528,'101659','SPAIN','gallery');
galleries[10] = new gallery(9529,'131655','SCANDINAVIA','gallery');
galleries[11] = new gallery(9566,'131688','FAR EAST (OTHER)','gallery');
galleries[12] = new gallery(10221,'131641,131640,131639','AUSTRALIA','gallery');
galleries[13] = new gallery(9268,'131663','INDUSTRIAL ARCHAEOLOGY','gallery');
galleries[14] = new gallery(9264,'469102,469101,469100,131649,102330,99277','RAILWAYS','gallery');
galleries[15] = new gallery(9266,'460135','NATURE','gallery');
galleries[16] = new gallery(9237,'160425','MISCELLANEOUS','gallery');
galleries[17] = new gallery(9506,'167725,167721,167720,162041,162039,162034,162029,162027,162020,102296,101678','THE 35 GALLERY: RAILWAYS','gallery');
galleries[18] = new gallery(9507,'460187,460186,460185,460184,460175,460173,460172,460169,460168,460165','WALKS in SPAIN 2006','gallery');
galleries[19] = new gallery(9562,'','USA and CANADA','gallery');

