/***************************************************************************
* 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('2349554,2349223,2333121,2333115,2333112,2333101,2333097,2333093,2333084,2333083,2333057,2333055,2332401,2332400,2332392,2332391,2332388,2332386,2332379,2332377,2331654,2331652,2331648,2331646,2331645,2329316,2329268,2329264,2329263,2329261,2329256,2329255,2329254,2329253,2329252,2329251,2329249,2329248,2329235,2328946,2328921,2328919,2328918,2328916,2328915,2328911,2328908,2328907,2328906,2327799,2327754,2327752,2327750,2327749,2327748,2327689,2327687,2326491,2326470,2326467,2326464');
	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('2349554,2349223,2333121,2333115,2333112,2333101,2333097,2333093,2333084,2333083,2333057,2333055,2332401,2332400,2332392,2332391,2332388,2332386,2332379,2332377,2331654,2331652,2331648,2331646,2331645,2329316,2329268,2329264,2329263,2329261,2329256,2329255,2329254,2329253,2329252,2329251,2329249,2329248,2329235,2328946,2328921,2328919,2328918,2328916,2328915,2328911,2328908,2328907,2328906,2327799,2327754,2327752,2327750,2327749,2327748,2327689,2327687,2326491,2326470,2326467,2326464');
	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 = 'The Silver Print Gallery of Fine Art Photography: ' + photos[nextImg].caption;
										/* apply 'blank' classname to element where */			if ( photos[nextImg].caption == '') {
				document.getElementById('imageTitle').style.className = 'blank';
			}
			else {
				document.getElementById('imageTitle').style.className = 'normal';
			}
						temp = '';
			if (photos[nextImg].description != '') {
				temp = temp +  '<p id="imageDescription">' + photos[nextImg].description + '</p>';
			}
						if (photos[nextImg].photo_ref != '') {
				temp = temp + '<p class="imageinfo" id="imageRef"><strong>Ref: </strong>' + photos[nextImg].photo_ref + '</p>';
			}
						if (photos[nextImg].takendate != '') {
				debug('Resetting taken date');
				temp = temp + '<p class="imageinfo" id="imageDate"><strong>Date: </strong>' + photos[nextImg].takendate + '</p>';
			}
			
			if (photos[nextImg].location != '') {
				debug('Resetting location');
				temp = temp + '<p class="imageinfo" id="imageLocation"><strong>Location: </strong>' +  photos[nextImg].location + '</p>';
			}
			
			if (photos[nextImg].photographer != '') {
				debug('Resetting photographer');
				temp = temp + '<p class="imageinfo" id="imagePhotographer"><strong>Photographer: </strong>' + photos[nextImg].photographer + '</p>';
			}
			if (temp != '') {				temp = temp + '<div class="spacer"></div>';			}					if (temp == '') {
			document.getElementById('imageDetails').style.display = 'none';
		}
		else {
			document.getElementById('imageDetails').style.display = 'block';
		}
		document.getElementById('imageDetails').innerHTML =temp;	
		
	}
	else {
		debug('Redirecting to id ' + photos[nextImg].id);
		window.location = 'photo_' + photos[nextImg].id + '.html';
	}
}

/***************************************************************************
* Show the previous image for a gallery. field = hidden field containing   *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function previous(field,img) {


	imageID = field.value;
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k = j -1;
	while (nextImg < 0) {
		for (; k >= 0; k--) {
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				break;
			}
		}
		if (nextImg == -1) {
			k = photos.length -1;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);	
	}
}

/***************************************************************************
* Pick a photo at random from the featured images of a gallery.
        *
* Gallery_id = id of gallery to choose                                     *
* 
 img = reference to html image                                       *
* in which to show image                                                   *
***************************************************************************/
function showGalleryImage(gallery_id, img) {
	debug('Gallery = ' + gallery_id);
	for (i = 0; i < galleries.length; i++) {
		if (galleries[i].id == gallery_id) {
			imageID = randomListVal(galleries[i].featured_images);
				for (j = 0; j < photos.length; j++) {
					if (photos[j].id == imageID) {
						
						img.src = photos[j].thumbnail;
						img.width = photos[j].thumbnail_width;
						img.height = photos[j].thumbnail_height;
						
						break;
					}
				}
			break;
		}
	} 
	}

/***************************************************************************
* If we have dynamic HTML                                                  *
*  replace the galleries link with a list that                             *
* doesn't include the current gallery                                      *
***************************************************************************/
function showGalleries(gallery_id) {
	debug('Showing links for gallery ' + gallery_id);
	
	if (!basic) {
		temp = '';
		for (i = 0; i < galleries.length; i++) {
			debug('Testing gallery ' + galleries[i].id);
			
			if (galleries[i].id != gallery_id) {
				debug('Adding link');
				if (temp != '') {
					temp = temp + ' | ';
				}
				temp = temp + '<a href="gallery_' + galleries[i].id + '.html">' + galleries[i].title + '</a>';
			}
		}
		document.all.galleryLinks.innerHTML = 'Other galleries: ' + temp;
	}
}
/***************************************************************************
* Create the array of Photo objects                                        *
***************************************************************************/
photos = new Array();
photos[0] = new photo(67177,'','','','http://admin.clikpic.com/photorusty/images/TheParkWeb600x.jpg',600,600,'The Park','http://admin.clikpic.com/photorusty/images/THE_PARKapopup_thumb.jpg',130, 131,0, 1,'<p>The Park</p><p>Verulam Park, St Albans, UK.</p>','','','','','');
photos[1] = new photo(2350647,'22828','899_16','gallery','http://admin2.clikpic.com/photorusty/images/899_16web600.jpg',600,600,'Verulamium Park, St Albans','http://admin2.clikpic.com/photorusty/images/899_16web600_thumb.jpg',130, 130,0, 0,'','','© John F Russell 2008','Verulamium Park, St Albans','','');
photos[2] = new photo(2399398,'155545','330_1918','gallery','http://admin2.clikpic.com/photorusty/images/330_1918web600.jpg',600,600,'Cork Oak','http://admin2.clikpic.com/photorusty/images/330_1918web600_thumb.jpg',130, 130,0, 0,'<em><p>Cork Oak, Quercus Suber trees stripped of their Bark. Cork Is typically harvested by hand every 10-12 Years.</p><p> Andalucia, Spain.</p></em>','','John F Russell','Andalucia, Spain','','');
photos[3] = new photo(2399619,'155545','330_2606','gallery','http://admin2.clikpic.com/photorusty/images/330_2606web600.jpg',600,600,'Cork Oak','http://admin2.clikpic.com/photorusty/images/330_2606web600_thumb.jpg',130, 130,0, 0,'<em><p>Cork Oak, Quercus Suber trees stripped of their Bark. Cork Is typically harvested by hand every 10-12 Years.</p><p> Andalucia, Spain.</p></em>','','John F Russell','Andalucia, Spain','','');
photos[4] = new photo(2399623,'155545','330_2103','gallery','http://admin2.clikpic.com/photorusty/images/330_2103web600.jpg',600,600,'Cork','http://admin2.clikpic.com/photorusty/images/330_2103web600_thumb.jpg',130, 130,0, 0,'<em><p>Cork stripped from Cork Oak, Quercus Suber trees. Cork Is typically harvested by hand every 10-12 Years.</p><p> Andalucia, Spain.</p></em>','','John F Russell','Andalucia, Spain','','');
photos[5] = new photo(2400670,'155545','330_0803','gallery','http://admin2.clikpic.com/photorusty/images/330_0803web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/330_0803web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[6] = new photo(2400672,'155545','330_1307','gallery','http://admin2.clikpic.com/photorusty/images/330_1307web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/330_1307web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[7] = new photo(2400673,'155545','330_1603','gallery','http://admin2.clikpic.com/photorusty/images/330_1603web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/330_1603web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[8] = new photo(2400678,'155545','330_1615','gallery','http://admin2.clikpic.com/photorusty/images/330_1615web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/330_1615web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[9] = new photo(2406897,'155545','330_0505','gallery','http://admin2.clikpic.com/photorusty/images/330_0505web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/330_0505web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[10] = new photo(2406898,'155545','SPA12_12','gallery','http://admin2.clikpic.com/photorusty/images/SPA12_12web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/SPA12_12web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[11] = new photo(2427602,'155545','865_04c','gallery','http://admin2.clikpic.com/photorusty/images/865_04cWeb600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/865_04cWeb600_thumb.jpg',130, 130,0, 0,'','','John F Russell','Andalucia, Spain','','');
photos[12] = new photo(2432492,'155545','701_15','gallery','http://admin2.clikpic.com/photorusty/images/701_15web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/701_15web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','Andalucia, Spain','','');
photos[13] = new photo(2432499,'155545','705_12','gallery','http://admin2.clikpic.com/photorusty/images/705_12web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/705_12web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[14] = new photo(2433413,'155545','865_14','gallery','http://admin2.clikpic.com/photorusty/images/865_14web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/865_14web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[15] = new photo(2439329,'155545','702_06','gallery','http://admin2.clikpic.com/photorusty/images/702_06web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/702_06web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[16] = new photo(2439334,'155545','705_06','gallery','http://admin2.clikpic.com/photorusty/images/705_06web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/705_06web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[17] = new photo(2439348,'155545','706_14','gallery','http://admin2.clikpic.com/photorusty/images/706_14web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/706_14web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[18] = new photo(2439359,'155545','','gallery','http://admin2.clikpic.com/photorusty/images/706_17web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/706_17web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[19] = new photo(2439372,'155545','715_03','gallery','http://admin2.clikpic.com/photorusty/images/715_03web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/715_03web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[20] = new photo(2439381,'155545','716_11','gallery','http://admin2.clikpic.com/photorusty/images/716_11web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/716_11web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[21] = new photo(2439389,'155545','720_08','gallery','http://admin2.clikpic.com/photorusty/images/720_08web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/720_08web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[22] = new photo(2439412,'155545','864_16','gallery','http://admin2.clikpic.com/photorusty/images/864_16web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/864_16web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[23] = new photo(2439719,'155545','864_03','gallery','http://admin2.clikpic.com/photorusty/images/864_03web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/864_03web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[24] = new photo(2439725,'155545','863_09','gallery','http://admin2.clikpic.com/photorusty/images/863_09web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/863_09web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[25] = new photo(2442314,'155545','861_05','gallery','http://admin2.clikpic.com/photorusty/images/861_05web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/861_05web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[26] = new photo(2442318,'155545','861_13','gallery','http://admin2.clikpic.com/photorusty/images/861_13web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/861_13web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[27] = new photo(2448308,'155545','862_30','gallery','http://admin2.clikpic.com/photorusty/images/862_30web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/862_30web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[28] = new photo(2449546,'155545','330_0108','gallery','http://admin2.clikpic.com/photorusty/images/330_0108web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/330_0108web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','Andalucia, Spain','','');
photos[29] = new photo(2449550,'155545','869_11','gallery','http://admin2.clikpic.com/photorusty/images/869_11web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/869_11web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[30] = new photo(2449552,'155545','860_11','gallery','http://admin2.clikpic.com/photorusty/images/860_11web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/860_11web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[31] = new photo(2465052,'155545','330_0101','gallery','http://admin2.clikpic.com/photorusty/images/330_0101web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/330_0101web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[32] = new photo(2465054,'155545','330_0206','gallery','http://admin2.clikpic.com/photorusty/images/330_0206web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/330_0206web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[33] = new photo(2465131,'155545','330_2707','gallery','http://admin2.clikpic.com/photorusty/images/330_2707web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/330_2707web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[34] = new photo(2469079,'155545','856_01','gallery','http://admin2.clikpic.com/photorusty/images/856_01web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/856_01web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[35] = new photo(2475292,'155545','330_0813','gallery','http://admin2.clikpic.com/photorusty/images/330_0813web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/330_0813web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[36] = new photo(2475297,'155545','857_07','gallery','http://admin2.clikpic.com/photorusty/images/857_07web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/857_07web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[37] = new photo(2475301,'155545','330_2201','gallery','http://admin2.clikpic.com/photorusty/images/330_2201web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/330_2201web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[38] = new photo(2520558,'22828','355_14','gallery','http://admin2.clikpic.com/photorusty/images/355_14web6001.jpg',600,600,'Blaenau Ffestiniog, 2','http://admin2.clikpic.com/photorusty/images/355_14web6001_thumb.jpg',130, 130,0, 0,'','','© John F Russell 2008','Blaenau Ffestiniog','','');
photos[39] = new photo(2520568,'','Blaenau Ffestiniog','','http://admin2.clikpic.com/photorusty/images/Blaenau-FfWeb400.jpg',400,400,'Blaenau Ffestiniog','http://admin2.clikpic.com/photorusty/images/Blaenau-FfWeb400_thumb.jpg',130, 130,0, 1,'Lord Street, Blaenau Ffestiniog','','© John F Russell 2008','Lord Street, Blaenau Ffestiniog','','');
photos[40] = new photo(2520758,'22828','355_07','gallery','http://admin2.clikpic.com/photorusty/images/355_07web400.jpg',400,400,'Blaenau Ffestiniog 3','http://admin2.clikpic.com/photorusty/images/355_07web400_thumb.jpg',130, 130,0, 0,'','','© John F Russell 2008','Blaenau Ffestiniog, North Wales','','');
photos[41] = new photo(2551388,'162998','C188_0395','gallery','http://admin2.clikpic.com/photorusty/images/C188_0395web600.jpg',600,600,'St Albans Abbey','http://admin2.clikpic.com/photorusty/images/C188_0395web600_thumb.jpg',130, 130,0, 0,'<p><em>Sunrise over Verulamium Park with St Albans Abbey in the background</em></p><em><p>To view a series of colour photographs taken in and around St Albans, Hertfordshire, UK, please click on the link below.</p><p>Included on the linked site are images of the Cathedral Abbey, Roman remains, Verulamium Park, Sopwell Nunnery, the city centre and more.</em></p><p><a target= \"_blank\" href=\"http://www.johnfrussell.co.uk/gallery_160076.html\"><u>LINK, click here:  Images of St Albans, John F Russell Photography</a></p></em></u>','','© John F Russell 2008','St Albans, Hertfordshire, UK','','');
photos[42] = new photo(2692416,'22828','IL12_30','gallery','http://admin2.clikpic.com/photorusty/images/IL12_30web600.jpg',600,600,'Stewertby Brick Wks.','http://admin2.clikpic.com/photorusty/images/IL12_30web600_thumb.jpg',130, 130,0, 0,'Chimneys at Stewertby Brick works','','© John F Russell 2008','Stewertby Brickworks, Bedfordshire, UK','','');
photos[43] = new photo(2706390,'22828','BlaFfe_DigE','gallery','http://admin2.clikpic.com/photorusty/images/BlaFfe_DigE.jpg',600,600,'Blaenau Ffestiniog','http://admin2.clikpic.com/photorusty/images/BlaFfe_DigE_thumb.jpg',130, 130,0, 0,'Lord Street, Blaenau Ffestiniog','','© John F Russell 2008','Lord Street, Blaenau Ffestiniog','','');
photos[44] = new photo(2890530,'22828','IL07_01','gallery','http://admin2.clikpic.com/photorusty/images/IL07_01web600.jpg',600,600,'Small boy on bike, Steelworks, Corby','http://admin2.clikpic.com/photorusty/images/IL07_01web600_thumb.jpg',130, 130,0, 0,'<p>Small boy on bike</p><p>Corby Steel Works.</p><p>The Steelworks circa 1972.</p><p><em>Corby has always been known as an iron-working region, even before the arrival of the Romans and their ironworks and the Doomsday Book names the \'Manor of Corbei\' as an iron-producing centre. </p><p>With the arrival of rail in the 19th century iron working really took off. It was in the 1930\'s that construction of what was to become one of the largest steelworks in Britain commenced. </p><p>Corby had its own ironstone works in 1910, the plant being taken over by Stewarts and Lloyds in 1920. It was not, however, until 1933 that construction began to tap the vast reserves under the surface of the surrounding countryside to produce steel, and to manufacture tubes for the world\'s markets. <br>\r\nCorby became a centre of frantic activity and people flooded from all over Britain to the town for employment. The first of the Scots arriving around 1934 to form a large proportion of the new population and who still have a considerable influence on the culture of the Borough today. </p><p>During World War II, the skills of Corby workers made a significant contribution to the invasion of Europe, by developing the pipeline under the ocean (PLUTO), a cross-channel link, carrying essential fuel to the Allied forces to support the Allied forces after the D Day invasion. </p><p>In 1980, British Steel decided to close the steel works and the effect was devastating on Corby with 6,000 people being made redundant. Massive lobbying of Westminster and Europe by Councillors and residents ensured that Corby did not die. The decision was made to pull the old works down as quickly as possible to show the commitment to redevelopment. Within 15 months of the closure, 15,000 new jobs were created by 1,500 new businesses occupying 1.5 million square feet of new business units.</p></em>','','© John F Russell 2008','Corby Steelworks, Northamptonshire, UK','','');
photos[45] = new photo(2894260,'','John Russell','','http://admin2.clikpic.com/photorusty/images/330_1011popup2.jpg',227,227,'John Russell by Clive Turner in Andalucia','http://admin2.clikpic.com/photorusty/images/330_1011popup2_thumb.jpg',129, 129,0, 0,'','','','','','');
photos[46] = new photo(2944207,'22828','ARCH33a_03','gallery','http://admin2.clikpic.com/photorusty/images/ARCH33a_03web600.jpg',600,600,'Skateborder, Aylesbury','http://admin2.clikpic.com/photorusty/images/ARCH33a_03web600_thumb.jpg',130, 130,0, 0,'<em>Boy on skatebord outside car park, by underpass. Buckinghamshire County Hall, Aylesbury, Bucks in background</em>','','© John F Russell 2008','Buckinghamshire County Hall, Aylesbury, Bucks, UK','','');
photos[47] = new photo(2955695,'22828','TelTow_01','gallery','http://admin2.clikpic.com/photorusty/images/TeleTow_01web600.jpg',600,600,'BT Telecom Tower','http://admin2.clikpic.com/photorusty/images/TeleTow_01web600_thumb.jpg',130, 130,0, 0,'<em><p>BT Telecom Tower</p><P>A famous London landmark since the 1960s</p><p>The British Telecom Communication Tower in London\'s West End was the first purpose-built tower to transmit high frequency radio waves, and it serves as a functional telecommunications centre designed to relay broadcast, Internet and telephone information around the world.</p>Curious fact! </p><p>Despite the BT Tower being one of most recognisable and conspicuous buildings in London, it was classed as an \'official secret\' until fairly recently, and taking or possessing photos of the BT/Post Office Tower was technically an offence under the Official Secrets Act!</p><p>............and I didn\'t know that until nearly 40 years after the photograph was taken</p></em>','','© John F Russell 2008','Cleveland Street, London, UK','','');
photos[48] = new photo(2959653,'22828','PL19_05','gallery','http://admin2.clikpic.com/photorusty/images/PL19_05web600.jpg',600,600,'Field, Oxfordshire','http://admin2.clikpic.com/photorusty/images/PL19_05web600_thumb.jpg',130, 130,0, 0,'<em><p>Field, Oxfordshire</p>The destruction of hedgerows.</p><p>Hedgerows play an important role on farms; helping to prevent soil erosion and water run-off, providing shelter, controling livestock and protecting crops.</p></em>','','© John F Russell 2008','Oxfordshire, UK','','');
photos[49] = new photo(3063141,'155545','1690_04','gallery','http://admin2.clikpic.com/photorusty/images/1690_04web600.jpg',600,600,'Tree Graveyard','http://admin2.clikpic.com/photorusty/images/1690_04web600_thumb.jpg',130, 130,0, 0,'','','© John F Russell 2008','Nueva Andalucia, Spain','','');
photos[50] = new photo(3103686,'22828','1692_02','gallery','http://admin2.clikpic.com/photorusty/images/1692_02web600.jpg',600,600,'Flowers, Tan Lan','http://admin2.clikpic.com/photorusty/images/1692_02web600_thumb.jpg',130, 130,0, 0,'','','© John F Russell 2008','','','');
photos[51] = new photo(2432111,'155545','700_12','gallery','http://admin2.clikpic.com/photorusty/images/700_12web6002.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/700_12web6002_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[52] = new photo(2432112,'155545','701 03','gallery','http://admin2.clikpic.com/photorusty/images/701_03web600.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/701_03web600_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[53] = new photo(2432114,'155545','701_12','gallery','http://admin2.clikpic.com/photorusty/images/701_12web6002.jpg',600,600,'','http://admin2.clikpic.com/photorusty/images/701_12web6002_thumb.jpg',130, 130,0, 0,'','','John F Russell','','','');
photos[54] = new photo(3010919,'','FP15_12','','http://admin2.clikpic.com/photorusty/images/FP15_12web400.jpg',400,400,'Rue De La Mairie, Bonnieux','http://admin2.clikpic.com/photorusty/images/FP15_12web400_thumb.jpg',130, 130,0, 0,'<p><em>Rue De La Mairie, Bonnieux.</p></em>','','© John F Russell 2008','Rue De La Mairie, Bonnieux, Provence, France','','');
photos[55] = new photo(2326464,'151774','FP01_05','gallery','http://admin2.clikpic.com/photorusty/images/FP_01_05web400w.jpg',400,400,'Village clock','http://admin2.clikpic.com/photorusty/images/FP_01_05web400w_thumb.jpg',130, 130,1, 0,'<p><em>Miramas-le-Vieux, Cornillan, Grans.</P><p>Three small villages in Provence to welcome us, who would believe it was 3rd November</p><p>Village clock in Miramas-le-Viex</p></em>','','John F Russell','Miramas-le-Vieux, Cornillan, Grans, Provence','','');
photos[56] = new photo(2329316,'151774','FP01_01','gallery','http://admin2.clikpic.com/photorusty/images/FP_01_01_web400w.jpg',400,400,'Monsieur Obrier','http://admin2.clikpic.com/photorusty/images/FP_01_01_web400w_thumb.jpg',130, 130,1, 0,'<p><em>Monsieur Obrier, a local resident of Rue Frederic Mistral in Miramas-le-Vieux</p></em>','','John F Russell','Miramas-le-Vieux, Cornillan, Grans, Provence','','');
photos[57] = new photo(2326467,'151774','FP01_07','gallery','http://admin2.clikpic.com/photorusty/images/FP_01_07_web400w.jpg',400,400,'Le Sian Ben','http://admin2.clikpic.com/photorusty/images/FP_01_07_web400w_thumb.jpg',130, 130,1, 0,'<p><em>A house in Cornillon called, \"Le Sian Ben\" (We are fine here)</p></em>','','John F Russell','Cornillon, Provence','','');
photos[58] = new photo(2326470,'151774','FP02_01','gallery','http://admin2.clikpic.com/photorusty/images/FP_02_01web400wLAYERS.jpg',400,400,'War monument','http://admin2.clikpic.com/photorusty/images/FP_02_01web400wLAYERS_thumb.jpg',130, 130,1, 0,'<p><em>War monument in Cornillon, Provence.</p></em>','','John F Russell','Cornillon, Provenc','','');
photos[59] = new photo(2326491,'151774','FP02_05','gallery','http://admin2.clikpic.com/photorusty/images/FP_02_05web400w.jpg',400,400,'House in Grans','http://admin2.clikpic.com/photorusty/images/FP_02_05web400w_thumb.jpg',130, 130,1, 0,'<p><em>No. 33, Cours Camille Pelletan in Grans, Provence</p></em>','','John F Russell','Grans, Provence','','');
photos[60] = new photo(2327687,'151774','FP04_06','gallery','http://admin2.clikpic.com/photorusty/images/FP_04_06web400w.jpg',400,400,'Les Baux-de-Provence','http://admin2.clikpic.com/photorusty/images/FP_04_06web400w_thumb.jpg',130, 130,1, 0,'<p><em>Edge of the plateau in Les Baux-de-Provence</p><p>The spirit of the village des Baux captured, proud and beautiful.</p><p>The village\'s moto was: \"Race d\'aiglon jamais vassale\" (Race of eagles never conquered).</p></em>','','John F Russell','Les Baux-de-Provence, Provence','','');
photos[61] = new photo(2327689,'151774','FP04_11','gallery','http://admin2.clikpic.com/photorusty/images/FP_04_11web400w.jpg',400,400,'Ruins in Les Baux','http://admin2.clikpic.com/photorusty/images/FP_04_11web400w_thumb.jpg',130, 130,1, 0,'<p><em>Les Baux-de-Provence</p></em>','','John F Russell','Les Baux-de-Provence, Provence','','');
photos[62] = new photo(2327748,'151774','FP05_04','gallery','http://admin2.clikpic.com/photorusty/images/FP_05_04web400w.jpg',400,400,'Cypress trees','http://admin2.clikpic.com/photorusty/images/FP_05_04web400w_thumb.jpg',130, 130,1, 0,'<p><em>Cypress trees in Les Baux-de-Provence.</p></em>','','John F Russell','Les Baux-de-Provence, Provence, France','','');
photos[63] = new photo(2327749,'151774','FP05_10','gallery','http://admin2.clikpic.com/photorusty/images/FP_05_10web400w.jpg',400,400,'Ruins, Les Baux','http://admin2.clikpic.com/photorusty/images/FP_05_10web400w_thumb.jpg',130, 130,1, 0,'<p><em>Typical little Provencal lane in Les Baux-de-Provence.</p></em>','','John F Russell','Les Baux-de-Provence, Provence, France','','');
photos[64] = new photo(2327750,'151774','FP06_01','gallery','http://admin2.clikpic.com/photorusty/images/FP_06_01web400w.jpg',400,400,'Les Alpilles','http://admin2.clikpic.com/photorusty/images/FP_06_01web400w_thumb.jpg',130, 130,1, 0,'<p><em>Near St Remy, Provence.</p><p>The Alpilles in the background.</p><p>\"The sun is warm in Eygalieres on a November morning and I wait for John to find enough roofs, or the right angle to photograph the statue of the Virgin Mary (photo ref: FP06_04). I lie in the grass and enjoy the strong-scented bushes of rosemary and thyme.\"</p></em>','','John F Russell','Near St Remy, Provence, France','','');
photos[65] = new photo(2327754,'151774','FP06_11','gallery','http://admin2.clikpic.com/photorusty/images/FP_06_11web400w.jpg',400,400,'Eygalieres','http://admin2.clikpic.com/photorusty/images/FP_06_11web400w_thumb.jpg',130, 130,1, 0,'<p><em>Roofs in Eygalieres, Provence, with Les Alpilles in the background.</p></em>','','John F Russell','Eygalieres, Provence, France','','');
photos[66] = new photo(2327752,'151774','FP06_04','gallery','http://admin2.clikpic.com/photorusty/images/FP_06_04web400w1.jpg',400,400,'The Virgin Mary','http://admin2.clikpic.com/photorusty/images/FP_06_04web400w1_thumb.jpg',130, 130,1, 1,'<p><em>The Virgin Mary overlooking Eygalieres, Provence.</p></em>','','John F Russell','Eygalieres, Provence, France','','');
photos[67] = new photo(2327799,'151774','FP07_01','gallery','http://admin2.clikpic.com/photorusty/images/FP_07_01web400w.jpg',400,400,'Orchard, Eygalieres','http://admin2.clikpic.com/photorusty/images/FP_07_01web400w_thumb.jpg',130, 130,1, 0,'<p><em> Orchard near Eygalieres, Provence.</p></em>','','John F Russell','Near Eygalieres, Provence, France','','');
photos[68] = new photo(2328946,'151774','FP11_10','gallery','http://admin2.clikpic.com/photorusty/images/FP_11_10web400w.jpg',400,400,'Gordes','http://admin2.clikpic.com/photorusty/images/FP_11_10web400w_thumb.jpg',130, 130,1, 0,'<p><em>Gordes, Provence.</P><p>\"My idea of a village is a lane with a stone wall, bordered by bushes of juniper and other scented plants.\"</p></em>','','John F Russell','Gordes, Provence, France','','');
photos[69] = new photo(2328906,'151774','FP07_11','gallery','http://admin2.clikpic.com/photorusty/images/FP_07_11web400w.jpg',400,400,'Cat in Gordes','http://admin2.clikpic.com/photorusty/images/FP_07_11web400w_thumb.jpg',130, 130,1, 0,'<em>Cat in Gordes, Provence.</em>','','John F Russell','Gordes, Provence, France','','');
photos[70] = new photo(2328907,'151774','FP07_12','gallery','http://admin2.clikpic.com/photorusty/images/FP_07_12web400w.jpg',400,400,'Country lane. Gordes','http://admin2.clikpic.com/photorusty/images/FP_07_12web400w_thumb.jpg',130, 130,1, 0,'<em>Country lane, Gordes, Provence.</em>','','John F Russell','Gordes, Provence, France','','');
photos[71] = new photo(2328908,'151774','FP08_03','gallery','http://admin2.clikpic.com/photorusty/images/FP_08_03web400w.jpg',400,400,'Reflection, Gordes','http://admin2.clikpic.com/photorusty/images/FP_08_03web400w_thumb.jpg',130, 130,1, 0,'<p><em>Reflection in fountain, Gordes, Provence.</p></em>','','John F Russell','Gordes, Provence, France','','');
photos[72] = new photo(2328911,'151774','FP08_05','gallery','http://admin2.clikpic.com/photorusty/images/FP_08_05web400w.jpg',400,400,'Grocers, Gordes','http://admin2.clikpic.com/photorusty/images/FP_08_05web400w_thumb.jpg',130, 130,1, 0,'<p><em>Alimentation</p><p>Grocers shop, Gordes, Provence.</em></p>','','John F Russell','Gordes, Provence, France','','');
photos[73] = new photo(2328915,'151774','FP09_01','gallery','http://admin2.clikpic.com/photorusty/images/FP_09_01web400w.jpg',400,400,'Abbaye de Senanques','http://admin2.clikpic.com/photorusty/images/FP_09_01web400w_thumb.jpg',130, 130,1, 0,'<p><em>.Abbaye de Senanques.</P><p>Abbey in Senanques, Provence.</P><p>A wonderful peaceful place to be, situated at the bottom of a narrow valley near Gordes.</p></em>','','John F Russell','Abbaye de Senanques, near Gordes, Provence, France','','');
photos[74] = new photo(2328916,'151774','FP09_04','gallery','http://admin2.clikpic.com/photorusty/images/FP_09_04web400w.jpg',400,400,'Abbaye de Senanques','http://admin2.clikpic.com/photorusty/images/FP_09_04web400w_thumb.jpg',130, 130,1, 0,'<p><em>.Abbaye de Senanques.</P><p>Abbey in Senanques, Provence.</P><p>A wonderful peaceful place to be, situated at the bottom of a narrow valley near Gordes.</p></em>','','John F Russell','Near Gordes, Provence, France','','');
photos[75] = new photo(2328921,'151774','FP11_06','gallery','http://admin2.clikpic.com/photorusty/images/FP_11_06web400w.jpg',400,400,'Ruins of farm','http://admin2.clikpic.com/photorusty/images/FP_11_06web400w_thumb.jpg',130, 130,1, 0,'<em><p>Ruins of farm between Gordes and Sault.</p>','','John F Russell','Near Gordes, Provence, France','','');
photos[76] = new photo(2328918,'151774','FP10_11','gallery','http://admin2.clikpic.com/photorusty/images/FP_10_11web400w.jpg',400,400,'Old tree trunk','http://admin2.clikpic.com/photorusty/images/FP_10_11web400w_thumb.jpg',130, 130,1, 0,'<em><p>Tree trunk near \"the old farm\"</p></em>','','John F Russell','Near Gordes, Provence, France','','');
photos[77] = new photo(2329235,'151774','FP12_04','gallery','http://admin2.clikpic.com/photorusty/images/FP_12_04web400w.jpg',400,400,'Le Tholonet, car park','http://admin2.clikpic.com/photorusty/images/FP_12_04web400w_thumb.jpg',130, 130,1, 0,'<p><em>Le Tholonet near Aix.</p><p>On our way to Sainte Victoire we stop at Le Tholonet and wait for the leaves to be blown in the wind, the way John wants them to be.</p><p>Avenue of trees in car park.</p></em>','','© John F Russell 2008','Le Tholonet near Aix, Provence, France.','','');
photos[78] = new photo(2329248,'151774','FP12_07','gallery','http://admin2.clikpic.com/photorusty/images/FP_12_07web400w.jpg',400,400,'Dominique','http://admin2.clikpic.com/photorusty/images/FP_12_07web400w_thumb.jpg',130, 130,1, 0,'<p><em>Le Tholonet, on the route Cezanne.</em></p>','','John F Russell','Le Tholonet, Provence, France','','');
photos[79] = new photo(2329255,'151774','FP15_02','gallery','http://admin2.clikpic.com/photorusty/images/FP_15_02web400w.jpg',400,400,'Boules','http://admin2.clikpic.com/photorusty/images/FP_15_02web400w_thumb.jpg',130, 130,1, 0,'<p><em>Boules</p><p>Village on the route Cezanne, near Aix-en-Provence</p></em>','','John F Russell','Near Aix-en-Provence, France','','');
photos[80] = new photo(2329249,'151774','FP13_08','gallery','http://admin2.clikpic.com/photorusty/images/FP_13_08web400w.jpg',400,400,'Montagne Saint-Victoire','http://admin2.clikpic.com/photorusty/images/FP_13_08web400w_thumb.jpg',130, 130,1, 0,'<p><em>Mount St. Victoire, near Aix</p><p>\"I wonder if Cezanne ever waited for the mist to lift and for the wind to blow away the clouds in order to see Montagne Sainte-Victoire appear.</P><p>We did!</p></em>','','John F Russell','Mount St. Victoire, near Aix-en-Provence, France','','');
photos[81] = new photo(2329252,'151774','FP14_02','gallery','http://admin2.clikpic.com/photorusty/images/FP_14_02web400w.jpg',400,400,'Les Deux Garçons, Aix-en-Provence','http://admin2.clikpic.com/photorusty/images/FP_14_02web400w_thumb.jpg',130, 130,1, 0,'<p><em>Tables and chairs on the terrace of Cafe Les Deux Garçons, Aix-en-Provence.</p>\"Aix on a grey, cloudy autumn day. The creme and croissants in Les Deux Garçons cheered us up though and are highly recommended by photographer and guide.\"</p><p>Fodor\'s Review:  Dating back to 1792, this fabled café has wined and dined everyone: Cézanne, Zola, Churchill, Picasso, Sartre, Mistinguett, Piaf, Belmondo, and Truffaut are just a few of the Livre d\'Or names. Too bad the food is rather ordinary -- stick to the copious hot salads -- but eating isn\'t what you come here for. It\'s the linen-decked sidewalk tables looking out to the Cours Mirabeau, the fresh flowers, the white-swathed waiters snaking between chairs, and the little gilt-edged, espresso-filled cup at the end of the meal. Dining inside may be less festive, but if you\'re into period decor you won\'t be able to resist the sumptuous epoque consulaire (early 19th-century) decor, all mirrors, gold-ivory boiseries, neoclassical reliefs, and elegantly painted ceilings. At night, the upstairs turns into a cozy, dimly lit piano bar buzzing with an interesting mix of local jazz lovers and students. Call it 2G (pronounced zhay) and everyone will think you\'re a regular, too.</p></em>','','© John F Russell 2008','53, cours Mirabeau, Aix-en-Provence, France','','');
photos[82] = new photo(2329251,'151774','FP13_21','gallery','http://admin2.clikpic.com/photorusty/images/FP_13_21web400w.jpg',400,400,'Cafe Les Deux Garcons, Aix','http://admin2.clikpic.com/photorusty/images/FP_13_21web400w_thumb.jpg',130, 130,1, 0,'<p><em>Inside Cafe Les Deux Garcons, Aix-en-Provence.</p>\"Aix on a grey, cloudy autumn day. The creme and croissants in Les Deux Garcons cheered us up though and are highly recommended by photographer and guide</p><p>Fodor\'s Review:  Dating back to 1792, this fabled café has wined and dined everyone: Cézanne, Zola, Churchill, Picasso, Sartre, Mistinguett, Piaf, Belmondo, and Truffaut are just a few of the Livre d\'Or names. Too bad the food is rather ordinary -- stick to the copious hot salads -- but eating isn\'t what you come here for. It\'s the linen-decked sidewalk tables looking out to the Cours Mirabeau, the fresh flowers, the white-swathed waiters snaking between chairs, and the little gilt-edged, espresso-filled cup at the end of the meal. Dining inside may be less festive, but if you\'re into period decor you won\'t be able to resist the sumptuous epoque consulaire (early 19th-century) decor, all mirrors, gold-ivory boiseries, neoclassical reliefs, and elegantly painted ceilings. At night, the upstairs turns into a cozy, dimly lit piano bar buzzing with an interesting mix of local jazz lovers and students. Call it 2G (pronounced zhay) and everyone will think you\'re a regular, too.</p></em>','','John F Russell','Aix, France','','');
photos[83] = new photo(2329253,'151774','FP14_07','gallery','http://admin2.clikpic.com/photorusty/images/FP_14_07web400w.jpg',400,400,'Citroen 2CV in Aix','http://admin2.clikpic.com/photorusty/images/FP_14_07web400w_thumb.jpg',130, 130,1, 0,'<p><em>Citroen 2CV in Aix-en-Provence.</p></em>','','John F Russell','Aix, France','','');
photos[84] = new photo(2329254,'151774','FP14_19','gallery','http://admin2.clikpic.com/photorusty/images/FP_14_19web400w.jpg',400,400,'The Sweet Life','http://admin2.clikpic.com/photorusty/images/FP_14_19web400w_thumb.jpg',130, 130,1, 0,'<p><em>Restaurent sign, La Dolce Vita, The Sweet Life, in Aix-en-Provence</p></em>','','John F Russell','Aix, France','','');
photos[85] = new photo(2329261,'151774','FP16_04','gallery','http://admin2.clikpic.com/photorusty/images/FP_16_04web400w.jpg',400,400,'Le Durance','http://admin2.clikpic.com/photorusty/images/FP_16_04web400w_thumb.jpg',130, 130,1, 0,'<p><em>En route to Vaucluse</p><p>Bonnieux - Oppede - Vaucluse</p><p>\"We got very wet, splashed by lorries passing by on the bridge over the Durance. We lost our way going to Bonnieux and were refused lunch in Oppede when a coach party arrived before us. But the photographs made it a worthwhile morning.\"</p</em>','','John F Russell','Le Durance, near Mallemorte, Provence, France','','');
photos[86] = new photo(2329263,'151774','FP16_05','gallery','http://admin2.clikpic.com/photorusty/images/FP_16_05web400w.jpg',400,400,'The Durance and Mallemorte.','http://admin2.clikpic.com/photorusty/images/FP_16_05web400w_thumb.jpg',130, 130,1, 0,'<p><em>The Durance and the Village of Mallemorte</p></em>','','John F Russell','The Durance and the Village of Mallemorte, Provence, France','','');
photos[87] = new photo(2329268,'151774','FP17_06','gallery','http://admin2.clikpic.com/photorusty/images/FP_17_06web400w.jpg',400,400,'Bonnieux','http://admin2.clikpic.com/photorusty/images/FP_17_06web400w_thumb.jpg',130, 130,1, 0,'<p><em>Bonnieux, view of the village</p></em>','','John F Russell','Bonnieux, Provence, France','','');
photos[88] = new photo(2331645,'151774','FP17_07','gallery','http://admin2.clikpic.com/photorusty/images/FP_17_07web400w.jpg',400,400,'Roofs Bonnieux','http://admin2.clikpic.com/photorusty/images/FP_17_07web400w_thumb.jpg',130, 130,1, 0,'<p><em>Roofs, Bonnieux</p></em>','','John F Russell','Bonnieux, Provence, France','','');
photos[89] = new photo(2329256,'151774','FP15_11','gallery','http://admin2.clikpic.com/photorusty/images/FP_15_11web400w.jpg',400,400,'Tree & Bench, Bonnieux','http://admin2.clikpic.com/photorusty/images/FP_15_11web400w_thumb.jpg',130, 130,1, 0,'<p><em>Tree & Bench, Bonnieux.</p></em>','','John F Russell','Bonnieux, Provence, France','','');
photos[90] = new photo(2331646,'151774','FP17_12','gallery','http://admin2.clikpic.com/photorusty/images/FP_17_12web400w.jpg',400,400,'Oppede','http://admin2.clikpic.com/photorusty/images/FP_17_12web400w_thumb.jpg',130, 130,1, 0,'<p><em>Village of Oppede Le Vieux.</p></em>','','John F Russell','Oppede Le Vieux, Provence, France','','');
photos[91] = new photo(2331648,'151774','FP18_04','gallery','http://admin2.clikpic.com/photorusty/images/FP_18_04web400w.jpg',400,400,'Old house in Oppede','http://admin2.clikpic.com/photorusty/images/FP_18_04web400w_thumb.jpg',130, 130,1, 0,'<p><em>Old house in the centre of Oppede.</p><p>Doors and shutters</p></em>','','John F Russell','Oppede, Provence, France','','');
photos[92] = new photo(2331652,'151774','FP18_10','gallery','http://admin2.clikpic.com/photorusty/images/FP_18_10web400w.jpg',400,400,'La Fontaine de Vaucluse','http://admin2.clikpic.com/photorusty/images/FP_18_10web400w_thumb.jpg',130, 130,1, 0,'<p><em>Rocks, La Fontaine de Vaucluse.</p><p>\"La Fontaine de Vaucluse is a rather dramatic looking place with its mysterious hole where water either rises in alarming abundance or stagnates at other times of the year.\"</p></em>','','John F Russell','La Fontaine de Vaucluse, Provence, France','','');
photos[93] = new photo(3010459,'151774','FP19_07','gallery','http://admin2.clikpic.com/photorusty/images/FP_19_07web400w.jpg',400,400,'River Sorge, La Fontaine de Vaucluse','http://admin2.clikpic.com/photorusty/images/FP_19_07web400w_thumb.jpg',130, 130,0, 0,'<em><p>River Sorge</p><p>Rocks & Water, La Fontaine de Vaucluse</p><p>Fontaine de Vaucluse gave its name to the département, and inspired the poets Frédéric Mistral, François Pétrarque and René Char. They were seduced by the beauty of the place and enchanted by walks along the verdant banks of the River Sorgue. </p></em>','','© John F Russell 2008','La Fontaine de Vaucluse, Provence, France','','');
photos[94] = new photo(2331651,'151774','FP18_07','gallery','http://admin2.clikpic.com/photorusty/images/FP_18_07web400w.jpg',400,400,'Rocks Near, La Fontaine de Vaucluse','http://admin2.clikpic.com/photorusty/images/FP_18_07web400w_thumb.jpg',130, 130,0, 0,'<em><p>Rocks and small tree near, La Fontain de Vaucluse</em></p>','','© John F Russell 2008','La Fontain de Vaucluse, Provence, France','','');
photos[95] = new photo(2331654,'151774','FP19_08','gallery','http://admin2.clikpic.com/photorusty/images/FP_19_08web400w.jpg',400,400,'The Grand Rhône, Camargue','http://admin2.clikpic.com/photorusty/images/FP_19_08web400w_thumb.jpg',130, 130,1, 0,'<em><p>The Grand Rhône, Camargue.</p></em>','','© John F Russell 2008','The Grand Rhône, Camargue, Provence, France','','');
photos[96] = new photo(2332377,'151774','FP20A_08','gallery','http://admin2.clikpic.com/photorusty/images/FP_20A_08web400w.jpg',400,400,'The \"Digne\" track, The Camargue.','http://admin2.clikpic.com/photorusty/images/FP_20A_08web400w_thumb.jpg',130, 130,1, 0,'<p><em>The \"Digne\" track, The Camargue.</p><p>View from the \"Digne\" track along the sea accross the Camargue Reserve.</p></em>','','© John F Russell 2008','Camargue, Provence, France','','');
photos[97] = new photo(2332386,'151774','FP20B_09','gallery','http://admin2.clikpic.com/photorusty/images/FP_20B_09web400w.jpg',400,400,'Breakers along Digne, Camargue','http://admin2.clikpic.com/photorusty/images/FP_20B_09web400w_thumb.jpg',130, 130,1, 0,'<p><em>Breakers along the Digne, Camargue.</p></em>','','© John F Russell 2008','Camargue, Provence, France','','');
photos[98] = new photo(2332379,'151774','FP20B_05','gallery','http://admin2.clikpic.com/photorusty/images/FP_20B_05web400w.jpg',400,400,'The Digne','http://admin2.clikpic.com/photorusty/images/FP_20B_05web400w_thumb.jpg',130, 130,1, 0,'<p><em>The Digne by the sea, Camargue.</p></em>','','© John F Russell 2008','','','');
photos[99] = new photo(2332391,'151774','FP21_08','gallery','http://admin2.clikpic.com/photorusty/images/FP_21_08web400w.jpg',400,400,'\"Oyats\" on beach, Camargue.','http://admin2.clikpic.com/photorusty/images/FP_21_08web400w_thumb.jpg',130, 130,1, 0,'<p><em>\"Oyats\" on the beach in the Camargue, on a very windy day</p></em>','','© John F Russell 2008','Camargue, Provence, France','','');
photos[100] = new photo(2332388,'151774','FP21_02','gallery','http://admin2.clikpic.com/photorusty/images/FP_21_02web400w.jpg',400,400,'Beauduc, Camargue','http://admin2.clikpic.com/photorusty/images/FP_21_02web400w_thumb.jpg',130, 130,1, 0,'<p><em>Fishing village of Beauduc in the Camargue</p></em>','','© John F Russell 2008','Beauduc, Camargue, Provence, France','','');
photos[101] = new photo(2332392,'151774','FP22_01','gallery','http://admin2.clikpic.com/photorusty/images/FP_22_01web400w.jpg',400,400,'Flooded Vinyards','http://admin2.clikpic.com/photorusty/images/FP_22_01web400w_thumb.jpg',130, 130,1, 0,'<p><em>Flooded vinyards in the Camargue.</p></em>','','John F Russell','','','');
photos[102] = new photo(2332401,'151774','FP24_04','gallery','http://admin2.clikpic.com/photorusty/images/FP_24_04web400w.jpg',400,400,'Traditional House, Camargue','http://admin2.clikpic.com/photorusty/images/FP_24_04web400w_thumb.jpg',130, 130,1, 0,'<p><em>Traditional house in the Camargue</p></em>','','© John F Russell 2008','Camargue, Provence, France','','');
photos[103] = new photo(2333055,'151774','FP24_06','gallery','http://admin2.clikpic.com/photorusty/images/FP_24_06web400w.jpg',400,400,'Traditional House, Camargue','http://admin2.clikpic.com/photorusty/images/FP_24_06web400w_thumb.jpg',130, 130,1, 0,'<p><em>Traditional House in the Camargue.</p></em>','','© John F Russell 2008','Camargue, Provence, France','','');
photos[104] = new photo(2333057,'151774','FP24_11','gallery','http://admin2.clikpic.com/photorusty/images/FP_24_11web400w.jpg',400,400,'Canal, Camargue','http://admin2.clikpic.com/photorusty/images/FP_24_11web400w_thumb.jpg',130, 130,1, 0,'<p><em>Canal in the Camargue.</P</em>','','John F Russell','Camargue, Provence, France','','');
photos[105] = new photo(2332400,'151774','FP23_11','gallery','http://admin2.clikpic.com/photorusty/images/FP_23_11web400w.jpg',400,400,'Champion Horse, Camargue','http://admin2.clikpic.com/photorusty/images/FP_23_11web400w_thumb.jpg',130, 130,1, 0,'<p><em>François with her horse Mars at the Mas du Grand Gageron.</p>></em>','','© John F Russell 2008','Mas du Grand Gageron, Camargue, Provence, France','','');
photos[106] = new photo(2333101,'151774','FP30_07','gallery','http://admin2.clikpic.com/photorusty/images/FP_30_07web400w.jpg',400,400,'People of Provence','http://admin2.clikpic.com/photorusty/images/FP_30_07web400w_thumb.jpg',130, 130,1, 0,'<p><em>Madame and Monsieur Allione in Salon.</P><p>People of Provence from different walks of life, yet they have something in common. They are said to be, \"a l\'aise\", at ease.</P></em>','','© John F Russell 2008','Salon, Provence, France','','');
photos[107] = new photo(2328919,'151774','FP11_01','gallery','http://admin2.clikpic.com/photorusty/images/FP_11_01web400w.jpg',400,400,'Les Chasseurs','http://admin2.clikpic.com/photorusty/images/FP_11_01web400w_thumb.jpg',130, 130,1, 0,'<p><em>Les Chasseurs.</p><p>The shooting party in front of their \"cabanon\".</p></em>','','© John F Russell 2008','Provence, France','','');
photos[108] = new photo(2333083,'151774','FP27_01','gallery','http://admin2.clikpic.com/photorusty/images/FP_27_01web400w.jpg',400,400,'Le Boucher','http://admin2.clikpic.com/photorusty/images/FP_27_01web400w_thumb.jpg',130, 130,1, 0,'<p><em>Le Boucher in Alliens.</p><p>The butcher was a willing subject despite his hectic schedule</p></em>','','John F Russell','Alliens, Provence, France','','');
photos[109] = new photo(2329264,'151774','FP16_11','gallery','http://admin2.clikpic.com/photorusty/images/FP_16_11web400w.jpg',400,400,'Germain Cyprien','http://admin2.clikpic.com/photorusty/images/FP_16_11web400w_thumb.jpg',130, 130,1, 0,'<p><em>Germain Cyprien in Lauris-Durance.</p</em>','','© John F Russell 2008','','','');
photos[110] = new photo(2333084,'151774','FP28_09a','gallery','http://admin2.clikpic.com/photorusty/images/FP_28_09Aweb400w.jpg',400,400,'The Sheperd','http://admin2.clikpic.com/photorusty/images/FP_28_09Aweb400w_thumb.jpg',130, 130,1, 0,'<p><em>Roger Minard, shepherd, in \"La Grande Cran\", near Salon, Provence.</p></em>','','© John F Russell 2008','','','');
photos[111] = new photo(2333093,'151774','FP28_15A','gallery','http://admin2.clikpic.com/photorusty/images/FP_28_15Aweb400w.jpg',400,400,'Roger Minard with his flock','http://admin2.clikpic.com/photorusty/images/FP_28_15Aweb400w_thumb.jpg',130, 130,1, 0,'<p><em>Roger Minard and his flock coming out of the \"bergerie\".</p></em>','','© John F Russell 2008','','','');
photos[112] = new photo(2333097,'151774','FP29_02','gallery','http://admin2.clikpic.com/photorusty/images/FP_29_02web400w.jpg',400,400,'The \"Bergerie\"','http://admin2.clikpic.com/photorusty/images/FP_29_02web400w_thumb.jpg',130, 130,1, 0,'<p><em>Sheep coming out of the \"bergerie\", in \"La Grande Cran\".</em></p>','','© John F Russell 2008','','','');
photos[113] = new photo(2333115,'151774','FP32_08','gallery','http://admin2.clikpic.com/photorusty/images/FP_32_08web400w.jpg',400,400,'Dominique, Martigues','http://admin2.clikpic.com/photorusty/images/FP_32_08web400w_thumb.jpg',130, 130,1, 0,'<p><em>My guide and friend, Dominique in Martigues.</p><p>Typical house and bridge.</p></em>','','© John F Russell 2008','Martigues, Provence, France','','');
photos[114] = new photo(2333112,'151774','FP31_06','gallery','http://admin2.clikpic.com/photorusty/images/FP_31_06web400w.jpg',400,400,'Fountain in St Chamas','http://admin2.clikpic.com/photorusty/images/FP_31_06web400w_thumb.jpg',130, 130,1, 0,'<p><em>Plane Trees and Fountains</p>A familiar feature of every town and village in Provence.</p><p>Fountain in St Chamas, Provence.</p></em>','','© John F Russell 2008','St Chamas, Provence, France','','');
photos[115] = new photo(2333121,'151774','FP34_04','gallery','http://admin2.clikpic.com/photorusty/images/FP_34_04web400w.jpg',400,400,'Fountain, Lançon.','http://admin2.clikpic.com/photorusty/images/FP_34_04web400w_thumb.jpg',130, 130,1, 0,'<p><em>Fountain in Lançon< Provence.</em></p>','','© John F Russell 2008','Lançon, Provence, France','','');
photos[116] = new photo(2349223,'151774','FP34_07','gallery','http://admin2.clikpic.com/photorusty/images/FP_34_07web400w.jpg',400,400,'Fountain, Salon','http://admin2.clikpic.com/photorusty/images/FP_34_07web400w_thumb.jpg',130, 130,1, 0,'<p><em>Fountain and leaves outside school in Salon, Provence.</p></em>','','© John F Russell 2008','Salon, Provence, France','','');
photos[117] = new photo(2349554,'151774','FP34_11','gallery','http://admin2.clikpic.com/photorusty/images/FP_34_11web400w.jpg',400,400,'Fountain in Salon','http://admin2.clikpic.com/photorusty/images/FP_34_11web400w_thumb.jpg',130, 130,1, 0,'<p><em>Detain of fountain in Salon.</p></em>','','© John F Russell 2008','Salon, Provence, France','','');
photos[118] = new photo(3010882,'151774','FP??','gallery','http://admin2.clikpic.com/photorusty/images/FP00_web400.jpg',400,400,'Provence','http://admin2.clikpic.com/photorusty/images/FP00_web400_thumb.jpg',130, 130,0, 0,'','','© John F Russell 2008','','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(155545,'3063141,2475301,2475297,2475292,2469079,2465131,2465054,2465052,2449552,2449550','<em>Andalucia</em>','gallery');
galleries[1] = new gallery(162998,'2551388','<em>St Albans in Colour</em>','gallery');
galleries[2] = new gallery(22828,'3103686,2959653,2955695,2944207,2890530,2706390,2692416,2520758,2520558,2350647','<em>Various</em>','gallery');
galleries[3] = new gallery(151774,'2327752','<em>Provence</em>','gallery');

