/***************************************************************************
* 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('319358');
	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('319358');
	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 && !((0) || (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 = 'cameracrew.co.uk: ' + 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(1207503,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/Team photo changed1.jpg',400,300,'Those who came to say hello and drink to Paul and James’ memory in a way we know they’d have approved were: (left to right)','http://www1.clikpic.com/cbslondon/images/Team photo changed1_thumb.jpg',130, 98,0, 0,'BACK ROW: Conall Freeley, Sean Keane, Jamie Keane; Dan Murphy; Mark Ludlow, James Murphy.<br>\r\nMIDDLE ROW:  Alexander Pizzey, Allen Pizzey, Paul Terrins, Kelly Douglas, Joanne Douglas, Carlos de Siguerra.<br>\r\nFRONT ROW: Joao de Valle, Russ Lensh, Sam Brolin, Jim Walker, Hooch, Susie (dive masters), Shaun Borrett, Linda Douglas.<br>\r\n(PRESENT IN SPIRIT: Al Edgar, Freddy Green, Glen Crump)','03/07/07','','','','');
photos[1] = new photo(1208364,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/paul\'s memorial stone under water11113.jpg',400,300,'We dropped in to say hello to an old and much-missed friend today, and to get a glimpse of his famous smile.','http://www1.clikpic.com/cbslondon/images/paul\'s memorial stone under water11113_thumb.jpg',130, 98,0, 0,'And when we raised a glass to James, Sean Keane noted that if James were there, he’d more than likely respond: “What the f*** are WE doing on a boat?”. Well, apart from having a bloody good dive holiday, we were again paying homage to and remembering two fine men. Last year, a single lion fish watched us. This time, there were fish aplenty.','03/07/07','','','','');
photos[2] = new photo(1023778,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/one year on at Baghdad bomb site.jpg',400,300,'One year on at Baghdad bomb site, two friends put up a Plaque.','http://www1.clikpic.com/cbslondon/images/one year on at Baghdad bomb site_thumb.jpg',130, 98,0, 0,'','27/05/07','Massimo Mariani','Baghdad','','');
photos[3] = new photo(1023785,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/one year on in Baghdad hotel garden1.jpg',400,469,'One year on in the hotel garden.','http://www1.clikpic.com/cbslondon/images/one year on in Baghdad hotel garden1_thumb.jpg',130, 152,0, 0,'','27/05/07','Massimo Mariani','Baghdad','','');
photos[4] = new photo(1023788,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/one year on in Baghdad hotel lobby1.jpg',400,300,'One year on, the hotel picture wall.','http://www1.clikpic.com/cbslondon/images/one year on in Baghdad hotel lobby1_thumb.jpg',130, 98,0, 0,'','27/05/07','Massimo Mariani','Baghdad','','');
photos[5] = new photo(290853,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/CBS news, james on bridge CLIKPIC.jpg',600,430,'James Brolan in Pakistan','http://www1.clikpic.com/cbslondon/images/CBS news, james on bridge CLIKPIC_thumb.jpg',130, 93,0, 1,'','','','Pakistan','','');
photos[6] = new photo(297990,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james 1st gulf war.jpg',600,801,'','http://www1.clikpic.com/cbslondon/images/cbs james 1st gulf war_thumb.jpg',130, 174,0, 0,'','','','','','');
photos[7] = new photo(297991,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james and marines at saddam palace.jpg',600,447,'','http://www1.clikpic.com/cbslondon/images/cbs james and marines at saddam palace_thumb.jpg',130, 97,0, 0,'','','','','','');
photos[8] = new photo(297996,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james and matt 1st gulf war.jpg',600,444,'Reader\'s letter.','http://www1.clikpic.com/cbslondon/images/cbs james and matt 1st gulf war_thumb.jpg',130, 96,0, 0,'MY family and I would like to express our deepest sympathies to the families involved. These are very brave warriors that the majority of America  overlooks. It is so unfair that an uncivlized country can get away with blatant murder of great Americans. Our heart and prayers are with you.<br>\r\nMatthew Knogge.USA','','','','','');
photos[9] = new photo(297999,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james and matt on top of humvee.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs james and matt on top of humvee_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[10] = new photo(298002,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james and matt in desert with soldiers and tanks1.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs james and matt in desert with soldiers and tanks1_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[11] = new photo(298004,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james fooling around.jpg',600,810,'','http://www1.clikpic.com/cbslondon/images/cbs james fooling around_thumb.jpg',130, 176,0, 0,'','','','','','');
photos[12] = new photo(298005,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james in desert with sound gear.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs james in desert with sound gear_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[13] = new photo(298006,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james brolan on bycicle CLIKPIC.jpg',600,395,'','http://www1.clikpic.com/cbslondon/images/james brolan on bycicle CLIKPIC_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[14] = new photo(298008,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james in front of humvee abc.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs james in front of humvee abc_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[15] = new photo(298009,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james brolan CLIKPIC.jpg',600,395,'','http://www1.clikpic.com/cbslondon/images/james brolan CLIKPIC_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[16] = new photo(298010,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james on phone from humvee.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs james on phone from humvee_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[17] = new photo(298011,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james outside hercules.jpg',600,801,'','http://www1.clikpic.com/cbslondon/images/cbs james outside hercules_thumb.jpg',130, 174,0, 0,'','','','','','');
photos[18] = new photo(298012,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james with 2 marines.jpg',600,435,'','http://www1.clikpic.com/cbslondon/images/cbs james with 2 marines_thumb.jpg',130, 94,0, 0,'','','','','','');
photos[19] = new photo(298016,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james with george clooney.jpg',600,513,'Good God, its George Clooney.','http://www1.clikpic.com/cbslondon/images/cbs james with george clooney_thumb.jpg',130, 111,0, 0,'Its like I\'m looking in the mirror.','','','','','');
photos[20] = new photo(298017,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james with lara logan and marine.jpg',600,422,'','http://www1.clikpic.com/cbslondon/images/cbs james with lara logan and marine_thumb.jpg',130, 91,0, 0,'','','','','','');
photos[21] = new photo(298019,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james with crew CLIKPIC.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/james with crew CLIKPIC_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[22] = new photo(298021,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/cbs james with pipe.jpg',600,440,'','http://www1.clikpic.com/cbslondon/images/cbs james with pipe_thumb.jpg',130, 95,0, 0,'','','','','','');
photos[23] = new photo(299158,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james programm small.jpg',396,539,'','http://www1.clikpic.com/cbslondon/images/james programm small_thumb.jpg',130, 177,0, 1,'','','','','','');
photos[24] = new photo(299162,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/paul james poem small.jpg',368,535,'','http://www1.clikpic.com/cbslondon/images/paul james poem small_thumb.jpg',130, 189,0, 0,'','','','','','');
photos[25] = new photo(300472,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/carry on camping gerry and kids ! CLIKPIC.jpg',600,433,'','http://www1.clikpic.com/cbslondon/images/carry on camping gerry and kids ! CLIKPIC_thumb.jpg',130, 94,0, 0,'','','','','','');
photos[26] = new photo(300473,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james and clooney group doug voiht right CLIKPIC.jpg',600,399,'james and George Clooney group.','http://www1.clikpic.com/cbslondon/images/james and clooney group doug voiht right CLIKPIC_thumb.jpg',130, 86,0, 0,'Doug Voight standing on the right, Doug(ABC)and the correspondent Bob Woodroff were blown up in Baghdad last year, both men were badly injured.','','','','','');
photos[27] = new photo(300474,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james his wife !CLIKPIC.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/james his wife !CLIKPIC_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[28] = new photo(300483,'','','','http://www1.clikpic.com/cbslondon/images/james brolan afghanistan CLIKPIC.jpg',600,410,'','http://www1.clikpic.com/cbslondon/images/james brolan afghanistan CLIKPIC_thumb.jpg',130, 89,0, 0,'','','','','','');
photos[29] = new photo(318384,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james afghanistan 0651.jpg',400,534,'','http://www1.clikpic.com/cbslondon/images/james afghanistan 0651_thumb.jpg',130, 174,0, 0,'','','','','','');
photos[30] = new photo(318385,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james brolan 06.jpg',400,260,'','http://www1.clikpic.com/cbslondon/images/james brolan 06_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[31] = new photo(318386,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james daughter birthday candels.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james daughter birthday candels_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[32] = new photo(318387,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 061.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 061_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[33] = new photo(318388,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 062.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 062_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[34] = new photo(318390,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 063.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 063_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[35] = new photo(318391,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 064.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 064_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[36] = new photo(318392,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 065.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 065_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[37] = new photo(318394,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 066.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 066_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[38] = new photo(318395,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 067.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 067_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[39] = new photo(318396,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 068.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 068_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[40] = new photo(318397,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 069.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 069_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[41] = new photo(318398,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 070.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 070_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[42] = new photo(318399,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 071.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 071_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[43] = new photo(318401,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 072.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 072_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[44] = new photo(318402,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 073.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 073_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[45] = new photo(318404,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 074.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 074_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[46] = new photo(318405,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 075.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 075_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[47] = new photo(318406,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/james for reel2 077.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/james for reel2 077_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[48] = new photo(318436,'25474','','gallery','http://www1.clikpic.com/cbslondon/images/PAUL AND JAMES IN BAGHDAD.jpg',400,373,'','http://www1.clikpic.com/cbslondon/images/PAUL AND JAMES IN BAGHDAD_thumb.jpg',130, 121,0, 0,'','','','','','');
photos[49] = new photo(354114,'','','','http://www1.clikpic.com/cbslondon/images/paul 2 small daughters1.jpg',400,296,'','http://www1.clikpic.com/cbslondon/images/paul 2 small daughters1_thumb.jpg',130, 96,0, 0,'','','','','','');
photos[50] = new photo(354116,'','','','http://www1.clikpic.com/cbslondon/images/paul and daughter spoons on nose.jpg',400,298,'','http://www1.clikpic.com/cbslondon/images/paul and daughter spoons on nose_thumb.jpg',130, 97,0, 0,'','','','','','');
photos[51] = new photo(354117,'','','','http://www1.clikpic.com/cbslondon/images/paul and daughters in swimmingpool.jpg',400,582,'','http://www1.clikpic.com/cbslondon/images/paul and daughters in swimmingpool_thumb.jpg',130, 189,0, 0,'','','','','','');
photos[52] = new photo(1207496,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/Team photo changed.jpg',400,300,'Those who came to say hello and drink to Paul and James’ memory in a way we know they’d have approved were:(left to right)','http://www1.clikpic.com/cbslondon/images/Team photo changed_thumb.jpg',130, 98,0, 0,'BACK ROW: Conall Freeley, Sean Keane, Jamie Keane; Dan Murphy; Mark Ludlow, James Murphy.<br>\r\nMIDDLE ROW:  Alexander Pizzey, Allen Pizzey, Paul Terrins, Kelly Douglas, Joanne Douglas, Carlos de Siguerra.<br>\r\nFRONT ROW: Joao de Valle, Russ Lensh, Sam Brolin, Jim Walker, Hooch, Susie (dive masters), Shaun Borrett, Linda Douglas.<br>\r\n(PRESENT IN SPIRIT: Al Edgar, Freddy Green, Glen Crump)','03/07/07','','','','');
photos[53] = new photo(1208410,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul\'s memorial stone under water11114.jpg',400,300,'We dropped in to say hello to an old and much-missed friend today, and to get a glimpse of his famous smile. Exactly a year to day (less twelve hours) nine of the twelve mates of Paul Douglas who laid a granite slab at the foot of a cross-shaped coral outcrop came back to the dive site to see how our memorial was doing.','http://www1.clikpic.com/cbslondon/images/paul\'s memorial stone under water11114_thumb.jpg',130, 98,0, 0,'Last year, a single lion fish watched us. This time, there were fish aplenty. Maybe they’ve figured out what we knew when he was with us - any time a smile seems in order, there’s never been a better one than Paul’s.<br>\r\nIt was a sad and at the same time good feeling to have been able to go back and dive with you mate.','03/07/07','','','','');
photos[54] = new photo(1023764,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/one year on in Baghdad bomb site.jpg',400,300,'One year on at Baghdad bomb site.<br>\r\nPlaque put in place by two of our friends.','http://www1.clikpic.com/cbslondon/images/one year on in Baghdad bomb site_thumb.jpg',130, 98,0, 0,'','27/05/07','Massimo Mariani','Baghdad','','');
photos[55] = new photo(1023769,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/one year on in Baghdad hotel garden.jpg',400,469,'One year on in hotel garden.','http://www1.clikpic.com/cbslondon/images/one year on in Baghdad hotel garden_thumb.jpg',130, 152,0, 0,'','27/05/07','Massimo Mariani','Baghdad','','');
photos[56] = new photo(1023775,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/one year on in Baghdad hotel lobby.jpg',400,300,'One year on, hotel picture wall.','http://www1.clikpic.com/cbslondon/images/one year on in Baghdad hotel lobby_thumb.jpg',130, 98,0, 0,'','27/05/07','Massimo Mariani','Baghdad','','');
photos[57] = new photo(290859,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/CBS news, paul with humvee\'s CLIKPIC.jpg',600,432,'Paul Douglas in Iraq.','http://www1.clikpic.com/cbslondon/images/CBS news, paul with humvee\'s CLIKPIC_thumb.jpg',130, 94,0, 1,'A proud cameraman and rightly so.','','','Iraq','','');
photos[58] = new photo(290979,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul red noseCLIKPIC.jpg',444,549,'Red nose day.','http://www1.clikpic.com/cbslondon/images/paul red noseCLIKPIC_thumb.jpg',130, 161,0, 0,'After a great evening at a local restaurant in Skopje(Macedonia)we walked back to our hotel when suddenly Paul put on this red nose and we all fell about laughing.','','','','','');
photos[59] = new photo(297876,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/CBS, paul, lara logan, andy stevenson, agnes reau Baghdad PRINT.jpg',600,478,'One of the last pictures taken of Paul Douglas in Baghdad.','http://www1.clikpic.com/cbslondon/images/CBS, paul, lara logan, andy stevenson, agnes reau Baghdad PRINT_thumb.jpg',130, 104,0, 0,'From left to right, Andy Stevenson, Agnes Reau, Translator, Paul Douglas, Al Edgar, Lara Logan.','','','','','');
photos[60] = new photo(298263,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/linda.jpg',400,433,'','http://www1.clikpic.com/cbslondon/images/linda_thumb.jpg',130, 141,0, 0,'','','','','','');
photos[61] = new photo(298269,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul adjusting lights.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs paul adjusting lights_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[62] = new photo(298271,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul in balcony of al mansour.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs paul in balcony of al mansour_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[63] = new photo(298273,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul in front of al mansour.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs paul in front of al mansour_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[64] = new photo(298275,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas and randall pinkston.jpg',600,448,'','http://www1.clikpic.com/cbslondon/images/paul douglas and randall pinkston_thumb.jpg',130, 97,0, 0,'','','','','','');
photos[65] = new photo(298297,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas and smutch.jpg',600,384,'','http://www1.clikpic.com/cbslondon/images/paul douglas and smutch_thumb.jpg',130, 83,0, 0,'','','','','','');
photos[66] = new photo(298314,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul in suite.jpg',600,450,'The big smile.','http://www1.clikpic.com/cbslondon/images/cbs paul in suite_thumb.jpg',130, 98,0, 0,'June 15th, 2006<br>\r\n <br>\r\n <br>\r\nTo the Family of Paul Douglas, <br>\r\n<br>\r\n <br>\r\n<br>\r\nMy name is Hugh Williams. I have been a cameraman with CNN for many years, and I worked alongside Paul all over the world. Come to think of it, I can’t even remember all the countries and cities we ran into each other, whether it was freezing cold or roasting hot, or exactly what horrible things were happening at the time in these places. (After many years, these events tend to blend together). I was in Russia, Bosnia, Somalia, Rwanda, Afghanistan, Belfast, Haiti...etc all through the 1990’s. <br>\r\n<br>\r\nTo me, the job we did was full of contradictions. It was exhilarating, and exhausting. Both exciting and terrifying at the same time. A great big unknown adventure. (Thankfully, there were always lots of humorous moments punctuating the sheer terror too). It sounds weird, but without our \'news junkie\' colleagues, it was hard to have fun and try to hold it together under these circumstances. I always found a tremendous amount of reassurance when I saw Paul’s big smiling face, or grimace, in one of these far flung places. He was part of the “crew”. The “crew” of international news hounds that would run into each other everywhere. He made me feel less alone. It’s kinda hard to describe. I always admired his professionalism. In his presence, I was less fearful, and I worked harder. I thought, “Wow, CBS is here with the big guns…I better not screw up!”  I can’t claim that we were best mates or anything, but we acknowledged each others presence, and I hope he was as happy to see me as I was to see him on those crazy stories.  Perhaps he didn’t even realize the effect he had on others. I know that his death profoundly hurt me, and I wanted to let you know why. I hope it helps you to know that Paul had that effect on people. <br>\r\n<br>\r\nPlease accept my condolences, and those of my colleagues at CNN who knew him and worked with him. He will certainly not be forgotten. <br>\r\n<br>\r\nRegards, Hugh Williams<br>\r\n<br>\r\nCNN Freelance Producer/Correspondent<br>\r\n<br>\r\nSydney, Australia. <br>\r\n<br>\r\nPh: +61-2-9664-7072<br>\r\nCell: +61-419-218-732<br>\r\nhugh.williams@cnn.com','','','','','');
photos[67] = new photo(298316,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul jordan petra.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs paul jordan petra_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[68] = new photo(298317,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas and linda CLIKPIC.jpg',600,432,'','http://www1.clikpic.com/cbslondon/images/paul douglas and linda CLIKPIC_thumb.jpg',130, 94,0, 0,'','','','','','');
photos[69] = new photo(298318,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul on roof waiting.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs paul on roof waiting_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[70] = new photo(298319,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul on roof with camera.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs paul on roof with camera_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[71] = new photo(298320,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul, CBSTIKRIT_1.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs paul, CBSTIKRIT_1_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[72] = new photo(298321,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul, give us a kiss.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs paul, give us a kiss_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[73] = new photo(298322,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul, I\'ve still got 1 leg on a rock.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs paul, I\'ve still got 1 leg on a rock_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[74] = new photo(298323,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul, the both of us at the top of the world.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs paul, the both of us at the top of the world_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[75] = new photo(298325,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/cbs paul....mike,ken,terry and me in tikrit.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/cbs paul_thumb....mike,ken,terry and me in tikrit.jpg',130, 98,0, 0,'','','','','','');
photos[76] = new photo(299159,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul program small.jpg',368,521,'','http://www1.clikpic.com/cbslondon/images/paul program small_thumb.jpg',130, 184,0, 1,'','','','','','');
photos[77] = new photo(299161,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul james poem small3.jpg',368,535,'','http://www1.clikpic.com/cbslondon/images/paul james poem small3_thumb.jpg',130, 189,0, 0,'','','','','','');
photos[78] = new photo(299233,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul in gaza bluff kerslake.jpg',600,435,'','http://www1.clikpic.com/cbslondon/images/paul in gaza bluff kerslake_thumb.jpg',130, 94,0, 0,'','','','','','');
photos[79] = new photo(300398,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas antarctic exp. group.jpg',600,443,'','http://www1.clikpic.com/cbslondon/images/paul douglas antarctic exp_thumb. group.jpg',130, 96,0, 0,'','','','','','');
photos[80] = new photo(300399,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas antarctic exp. standing in snow CLIKPIC.jpg',600,419,'','http://www1.clikpic.com/cbslondon/images/paul douglas antarctic exp_thumb. standing in snow CLIKPIC.jpg',130, 91,0, 0,'','','','','','');
photos[81] = new photo(300400,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas antarctic exp.ilglo CLIKPIC.jpg',600,419,'','http://www1.clikpic.com/cbslondon/images/paul douglas antarctic exp_thumb.ilglo CLIKPIC.jpg',130, 91,0, 0,'','','','','','');
photos[82] = new photo(300401,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas , peter bluff, jr CLIKPIC.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/paul douglas , peter bluff, jr CLIKPIC_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[83] = new photo(300402,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas family with grand children CLIKPIC.jpg',600,545,'','http://www1.clikpic.com/cbslondon/images/paul douglas family with grand children CLIKPIC_thumb.jpg',130, 118,0, 0,'','','','','','');
photos[84] = new photo(300403,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas sitting on mountain CLIKPIC.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/paul douglas sitting on mountain CLIKPIC_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[85] = new photo(300404,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas soundman antarctic CLIKPIC.jpg',600,419,'','http://www1.clikpic.com/cbslondon/images/paul douglas soundman antarctic CLIKPIC_thumb.jpg',130, 91,0, 0,'','','','','','');
photos[86] = new photo(300405,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas with azeer CLIKPIC.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/paul douglas with azeer CLIKPIC_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[87] = new photo(300406,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas with camera CLIKPIC.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/paul douglas with camera CLIKPIC_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[88] = new photo(300407,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas with camera on shoulder b-w CLIKPIC.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/paul douglas with camera on shoulder b-w CLIKPIC_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[89] = new photo(300408,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas, anton, paul, dan, kurt, tomas, paul CLIKPIC.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/paul douglas, anton, paul, dan, kurt, tomas, paul CLIKPIC_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[90] = new photo(300409,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul laptop Old office baghdaqd, phil, lee cowan, translator, paul. CLIKPIC.jpg',600,450,'','http://www1.clikpic.com/cbslondon/images/paul laptop Old office baghdaqd, phil, lee cowan, translator, paul_thumb. CLIKPIC.jpg',130, 98,0, 0,'','','','','','');
photos[91] = new photo(300410,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas and US soldier on roof CLIKPIC.jpg',600,800,'','http://www1.clikpic.com/cbslondon/images/paul douglas and US soldier on roof CLIKPIC_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[92] = new photo(300411,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas, petra.jpg',600,451,'','http://www1.clikpic.com/cbslondon/images/paul douglas, petra_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[93] = new photo(318352,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul and andy.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul and andy_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[94] = new photo(318353,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul and linda indoor pool.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul and linda indoor pool_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[95] = new photo(318355,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul at vatican.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul at vatican_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[96] = new photo(318356,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul cooking in kitchen.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul cooking in kitchen_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[97] = new photo(318357,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul jeep dessert.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul jeep dessert_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[98] = new photo(318358,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul standing with camera.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul standing with camera_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[99] = new photo(318359,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul times square.jpg',400,533,'','http://www1.clikpic.com/cbslondon/images/paul times square_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[100] = new photo(318360,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with afghan children.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul with afghan children_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[101] = new photo(318361,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with brian robbins.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul with brian robbins_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[102] = new photo(318362,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with camera on stairs.jpg',400,533,'','http://www1.clikpic.com/cbslondon/images/paul with camera on stairs_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[103] = new photo(318363,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with family.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul with family_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[104] = new photo(318364,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with grand child.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul with grand child_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[105] = new photo(318365,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with grand child on floor.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul with grand child on floor_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[106] = new photo(318366,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul afghan with ak471.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul afghan with ak471_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[107] = new photo(318367,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with mark ludlow.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul with mark ludlow_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[108] = new photo(319358,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/PAUL AND JAMES IN BAGHDAD2.jpg',400,373,'Reader\'s letter.','http://www1.clikpic.com/cbslondon/images/PAUL AND JAMES IN BAGHDAD2_thumb.jpg',130, 121,1, 0,'Paul was one of my best friends, we went clay pigeon shooting for 14 years running and it has been like losing a brother and was  like an uncle to my son and I held the man in the highest regard.<br>\r\nPaul never had a bad word to say about anyone and had the warmest heart I have known .<br>\r\nBoth Paul and James will be sadly missed. In a small memorial shoot held last Sunday his widow and family donated his shotgun to my son, a lovely gesture and we got my nephew to play a couple of laments in his honour on the bagpipes ,learning a tune called the sands of Kuwait .<br>\r\n<br>\r\nA great guy . Thanks to CBS for a good memorial reception ,he would have felt very honoured ,but deservedly so,<br>\r\n<br>\r\nDavid j Walker','','','','','');
photos[109] = new photo(343796,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/12 memory stone close up.jpg',400,300,'Paul Douglas memorial stone.','http://www1.clikpic.com/cbslondon/images/12 memory stone close up_thumb.jpg',130, 98,0, 0,'He was always with us in spirit, and on July 4, 2006 Paul Douglas joined his mates for a dive into the Red Sea. <br>\r\nAt approximately 0630 British time Conall Freeley dropped off the back of the live aboard dive boat VIP One with eleven of Paul’s mates and a four kilogram slab of granite.<br>\r\n<br>\r\nA master diver for many years, Paul spent much of his spare time over the last six months of his life setting up this trip, and we could think of no better way to thank him for his efforts, honour his memory and say again how much we miss him.<br>\r\n<br>\r\nThis was day three of the six day trip. We waited until Conall, who had badgered a stonemason into making the slab in a record three weeks, found the right spot, a cross-shaped corral outcrop twelve meters deep, just off the beaten dive path at a site on the southern tip of the Sinai peninsula called “The Alternatives.”<br>\r\n<br>\r\nThe ceremony, if that is the correct word for such an effort, was planned as best a disparate and dissolute group could manage. It began the night before with a toast to Paul and James Brolan on the afterdeck of the boat, appropriate liquids having been stocked in respectfully copious quantities for the occasion before leaving port.<br>\r\nWe even managed a rehearsal in the form of deciding who would line up where by posing on the sun deck. And so, before breakfast, with the still slanting sun dancing in rays off the gently rolling sea, we ”kitted up”, posed on the dive deck for photos, and splashed in.<br>\r\nUnusually for the Red Sea, there were few fish around. A solitary lion fish sat and watched us gather in a group and then begin the slow swim to the chosen site.<br>\r\n<br>\r\nTechnically, because the spot is within the boundaries of the Ras Mohammed National Park, leaving anything on the sea bed is illegal, but under the circumstances, there are hardly likely to be any objections.<br>\r\nBeing just off the route from the usual mooring for the reef, the plaque will be easy to find again using its GPS co-ordinates, and hopefully won’t be disturbed.<br>\r\nConall laid the plaque firmly upright against the base of the coral outcrop, and the rest of us moved in the slow motion that is part of the beauty of diving to group around it.<br>\r\n<br>\r\nSetting up in a line under water is not like posing for a group wedding photo.<br>\r\nEveryone has to remain neutrally buoyant and just above the sea bed in order not to damage any of the coral.<br>\r\nWe also had to breath in unison so as not to cover the scene in bubbles.<br>\r\nCredit for that idea must go to “Hooch”, the dive master who has heard a “Paul story” every day, and was official photographer.','','','','','');
photos[110] = new photo(343799,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/13 memory stone medium shot.jpg',400,533,'PAUL DOUGLAS MEMORIAL STONE.','http://www1.clikpic.com/cbslondon/images/13 memory stone medium shot_thumb.jpg',130, 173,0, 0,'When the photos were done (left to right): Shaun Borrett, Glen Crump, Al Edgar, <br>\r\n(front), James Murphy, Sean Keane, Mark Ludlow, Conall Freeley, Alexander Pizzey, Jim Walker, Allen Pizzey, Freddie Green and Paul Terrins swam past one by one, touched the stone, and headed back to the surface.<br>\r\n<br>\r\nIt took seventeen minutes, which given the setting wasn’t bad. Paul would have been proud. He probably would have been less appreciative of the discovery some of us made, which is that is possible to have a quiet “blub” into a mask and regulator. <br>\r\nWell, sorry mate, but you’d have done the same for us, and it was great to dive with you…we only wish your bubbles could have joined ours.','','','','','');
photos[111] = new photo(348868,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/9 group pic on board ship with memory stone.jpg',400,258,'','http://www1.clikpic.com/cbslondon/images/9 group pic on board ship with memory stone_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[112] = new photo(348870,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/1 all on board go diving.jpg',400,264,'','http://www1.clikpic.com/cbslondon/images/1 all on board go diving_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[113] = new photo(348871,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/2 all on board go diving2.jpg',400,267,'','http://www1.clikpic.com/cbslondon/images/2 all on board go diving2_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[114] = new photo(348872,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/3 all on board go diving3.jpg',400,267,'','http://www1.clikpic.com/cbslondon/images/3 all on board go diving3_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[115] = new photo(348877,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/4 boat vip one.jpg',400,536,'','http://www1.clikpic.com/cbslondon/images/4 boat vip one_thumb.jpg',130, 174,0, 0,'','','','','','');
photos[116] = new photo(348878,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/5 cheers paul.jpg',400,267,'','http://www1.clikpic.com/cbslondon/images/5 cheers paul_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[117] = new photo(348879,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/7 diving brief.jpg',400,267,'','http://www1.clikpic.com/cbslondon/images/7 diving brief_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[118] = new photo(348880,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/8 diving brief prep.jpg',400,267,'','http://www1.clikpic.com/cbslondon/images/8 diving brief prep_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[119] = new photo(348881,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/14 nice under water shot with fish.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/14 nice under water shot with fish_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[120] = new photo(348882,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/16 one nice fish.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/16 one nice fish_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[121] = new photo(348883,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/20 war ship wreck.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/20 war ship wreck_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[122] = new photo(348885,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/11 lots of fish.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/11 lots of fish_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[123] = new photo(348886,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/10 group pic with memory stone.jpg',400,297,'','http://www1.clikpic.com/cbslondon/images/10 group pic with memory stone_thumb.jpg',130, 97,0, 0,'','','','','','');
photos[124] = new photo(348887,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/18 two divers sillouette.jpg',400,533,'','http://www1.clikpic.com/cbslondon/images/18 two divers sillouette_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[125] = new photo(348888,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/6 divers going up.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/6 divers going up_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[126] = new photo(348889,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/17 sunset.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/17 sunset_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[127] = new photo(348890,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/19 two nice fish.jpg',400,294,'','http://www1.clikpic.com/cbslondon/images/19 two nice fish_thumb.jpg',130, 96,0, 0,'','','','','','');
photos[128] = new photo(350066,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/15 nice under water shot with fish2.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/15 nice under water shot with fish2_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[129] = new photo(350404,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/Paul dumping.jpg',400,280,'The dump at McMurdo, the US base on Ross Island: Paul finds a convenient lavatory pan.','http://www1.clikpic.com/cbslondon/images/Paul dumping_thumb.jpg',130, 91,0, 0,'','','','','','');
photos[130] = new photo(354119,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul and hoovercraft.jpg',400,334,'','http://www1.clikpic.com/cbslondon/images/paul and hoovercraft_thumb.jpg',130, 109,0, 0,'','','','','','');
photos[131] = new photo(354120,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul and linda wedding pic.jpg',400,549,'','http://www1.clikpic.com/cbslondon/images/paul and linda wedding pic_thumb.jpg',130, 178,0, 1,'','','','','','');
photos[132] = new photo(354122,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul and phil Goma.jpg',400,260,'','http://www1.clikpic.com/cbslondon/images/paul and phil Goma_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[133] = new photo(354123,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul brian robbins david green.jpg',400,252,'','http://www1.clikpic.com/cbslondon/images/paul brian robbins david green_thumb.jpg',130, 82,0, 0,'','','','','','');
photos[134] = new photo(354124,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul goma.jpg',400,253,'','http://www1.clikpic.com/cbslondon/images/paul goma_thumb.jpg',130, 82,0, 0,'','','','','','');
photos[135] = new photo(354125,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul jeep desert.jpg',400,402,'','http://www1.clikpic.com/cbslondon/images/paul jeep desert_thumb.jpg',130, 131,0, 0,'','','','','','');
photos[136] = new photo(354127,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul linda and grandchildren.jpg',400,254,'','http://www1.clikpic.com/cbslondon/images/paul linda and grandchildren_thumb.jpg',130, 83,0, 0,'','','','','','');
photos[137] = new photo(354128,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul linda rafting.jpg',400,277,'','http://www1.clikpic.com/cbslondon/images/paul linda rafting_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[138] = new photo(354130,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul mustage and children.jpg',400,298,'','http://www1.clikpic.com/cbslondon/images/paul mustage and children_thumb.jpg',130, 97,0, 0,'','','','','','');
photos[139] = new photo(354132,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul mustage and daughters.jpg',400,395,'','http://www1.clikpic.com/cbslondon/images/paul mustage and daughters_thumb.jpg',130, 128,0, 0,'','','','','','');
photos[140] = new photo(354134,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul new york.jpg',400,257,'','http://www1.clikpic.com/cbslondon/images/paul new york_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[141] = new photo(354140,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul on harley.jpg',400,472,'','http://www1.clikpic.com/cbslondon/images/paul on harley_thumb.jpg',130, 153,0, 0,'','','','','','');
photos[142] = new photo(354141,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul portrait b-w.jpg',400,262,'','http://www1.clikpic.com/cbslondon/images/paul portrait b-w_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[143] = new photo(354142,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with 6 friends.jpg',400,309,'','http://www1.clikpic.com/cbslondon/images/paul with 6 friends_thumb.jpg',130, 100,0, 0,'','','','','','');
photos[144] = new photo(354148,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with big white dog in shed.jpg',400,574,'','http://www1.clikpic.com/cbslondon/images/paul with big white dog in shed_thumb.jpg',130, 187,0, 0,'','','','','','');
photos[145] = new photo(354150,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with daughter.jpg',400,258,'','http://www1.clikpic.com/cbslondon/images/paul with daughter_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[146] = new photo(354157,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with dog on back and daughter.jpg',400,576,'','http://www1.clikpic.com/cbslondon/images/paul with dog on back and daughter_thumb.jpg',130, 187,0, 0,'','','','','','');
photos[147] = new photo(354159,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with kids play house.jpg',400,262,'','http://www1.clikpic.com/cbslondon/images/paul with kids play house_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[148] = new photo(354160,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with oldest daughter on lap.jpg',400,587,'','http://www1.clikpic.com/cbslondon/images/paul with oldest daughter on lap_thumb.jpg',130, 191,0, 0,'','','','','','');
photos[149] = new photo(354161,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with sunglasses.jpg',400,545,'','http://www1.clikpic.com/cbslondon/images/paul with sunglasses_thumb.jpg',130, 177,0, 0,'','','','','','');
photos[150] = new photo(371822,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul and daughters in swimmingpool1.jpg',400,582,'','http://www1.clikpic.com/cbslondon/images/paul and daughters in swimmingpool1_thumb.jpg',130, 189,0, 0,'','','','','','');
photos[151] = new photo(390423,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul and baby whiskey bottles.jpg',400,283,'','http://www1.clikpic.com/cbslondon/images/paul and baby whiskey bottles_thumb.jpg',130, 92,0, 0,'','','','','','');
photos[152] = new photo(390426,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul and linda by the water.jpg',400,265,'','http://www1.clikpic.com/cbslondon/images/paul and linda by the water_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[153] = new photo(390427,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul and linda in caravan.jpg',400,218,'','http://www1.clikpic.com/cbslondon/images/paul and linda in caravan_thumb.jpg',130, 71,0, 0,'','','','','','');
photos[154] = new photo(390429,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul baby,s.jpg',400,406,'','http://www1.clikpic.com/cbslondon/images/paul baby,s_thumb.jpg',130, 132,0, 0,'','','','','','');
photos[155] = new photo(390434,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul boat.jpg',400,253,'','http://www1.clikpic.com/cbslondon/images/paul boat_thumb.jpg',130, 82,0, 0,'','','','','','');
photos[156] = new photo(390437,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul bosnia jos pizzey joe sanja.jpg',400,139,'','http://www1.clikpic.com/cbslondon/images/paul bosnia jos pizzey joe sanja_thumb.jpg',130, 45,0, 0,'','','','','','');
photos[157] = new photo(390441,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul coffee cup1.jpg',400,259,'','http://www1.clikpic.com/cbslondon/images/paul coffee cup1_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[158] = new photo(390444,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul dan phil.jpg',400,232,'','http://www1.clikpic.com/cbslondon/images/paul dan phil_thumb.jpg',130, 75,0, 0,'','','','','','');
photos[159] = new photo(390447,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul diving PADI.jpg',400,312,'','http://www1.clikpic.com/cbslondon/images/paul diving PADI_thumb.jpg',130, 101,0, 0,'','','','','','');
photos[160] = new photo(390448,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul diving padi 10 years.jpg',400,392,'','http://www1.clikpic.com/cbslondon/images/paul diving padi 10 years_thumb.jpg',130, 127,0, 0,'','','','','','');
photos[161] = new photo(390450,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul divingmask and wig.jpg',400,261,'','http://www1.clikpic.com/cbslondon/images/paul divingmask and wig_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[162] = new photo(390452,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul douglas walk.jpg',400,222,'','http://www1.clikpic.com/cbslondon/images/paul douglas walk_thumb.jpg',130, 72,0, 0,'','','','','','');
photos[163] = new photo(390453,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul fishing.jpg',400,219,'','http://www1.clikpic.com/cbslondon/images/paul fishing_thumb.jpg',130, 71,0, 0,'','','','','','');
photos[164] = new photo(390455,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul going into water.jpg',400,286,'','http://www1.clikpic.com/cbslondon/images/paul going into water_thumb.jpg',130, 93,0, 0,'','','','','','');
photos[165] = new photo(390456,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul goma1.jpg',400,260,'','http://www1.clikpic.com/cbslondon/images/paul goma1_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[166] = new photo(390457,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul hat smile.jpg',400,254,'','http://www1.clikpic.com/cbslondon/images/paul hat smile_thumb.jpg',130, 83,0, 0,'','','','','','');
photos[167] = new photo(390459,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul in hercules.jpg',400,269,'','http://www1.clikpic.com/cbslondon/images/paul in hercules_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[168] = new photo(390460,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul in hercules andy clarke phil itner.jpg',400,277,'','http://www1.clikpic.com/cbslondon/images/paul in hercules andy clarke phil itner_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[169] = new photo(390461,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul in rowing boat.jpg',400,227,'','http://www1.clikpic.com/cbslondon/images/paul in rowing boat_thumb.jpg',130, 74,0, 0,'','','','','','');
photos[170] = new photo(390462,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul kid on sofa.jpg',400,254,'','http://www1.clikpic.com/cbslondon/images/paul kid on sofa_thumb.jpg',130, 83,0, 0,'','','','','','');
photos[171] = new photo(390464,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul linda 1978.jpg',400,394,'','http://www1.clikpic.com/cbslondon/images/paul linda 1978_thumb.jpg',130, 128,0, 0,'','','','','','');
photos[172] = new photo(390466,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul linda daughter police.jpg',400,533,'','http://www1.clikpic.com/cbslondon/images/paul linda daughter police_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[173] = new photo(390467,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul linda in pool.jpg',400,222,'','http://www1.clikpic.com/cbslondon/images/paul linda in pool_thumb.jpg',130, 72,0, 0,'','','','','','');
photos[174] = new photo(390469,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul linda nz.jpg',400,462,'','http://www1.clikpic.com/cbslondon/images/paul linda nz_thumb.jpg',130, 150,0, 0,'','','','','','');
photos[175] = new photo(390471,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul linda nz2.jpg',400,470,'','http://www1.clikpic.com/cbslondon/images/paul linda nz2_thumb.jpg',130, 153,0, 0,'','','','','','');
photos[176] = new photo(390472,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul linda nz3.jpg',400,220,'','http://www1.clikpic.com/cbslondon/images/paul linda nz3_thumb.jpg',130, 72,0, 0,'','','','','','');
photos[177] = new photo(390474,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul linda nz4.jpg',400,219,'','http://www1.clikpic.com/cbslondon/images/paul linda nz4_thumb.jpg',130, 71,0, 0,'','','','','','');
photos[178] = new photo(390475,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul linda sunny beach.jpg',400,219,'','http://www1.clikpic.com/cbslondon/images/paul linda sunny beach_thumb.jpg',130, 71,0, 0,'','','','','','');
photos[179] = new photo(390476,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul nz caravan outside.jpg',400,219,'','http://www1.clikpic.com/cbslondon/images/paul nz caravan outside_thumb.jpg',130, 71,0, 0,'','','','','','');
photos[180] = new photo(390477,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul oerang oetang.jpg',400,675,'','http://www1.clikpic.com/cbslondon/images/paul oerang oetang_thumb.jpg',130, 219,0, 0,'','','','','','');
photos[181] = new photo(390479,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul on harley1.jpg',400,255,'','http://www1.clikpic.com/cbslondon/images/paul on harley1_thumb.jpg',130, 83,0, 0,'','','','','','');
photos[182] = new photo(390481,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul on horse.jpg',400,257,'','http://www1.clikpic.com/cbslondon/images/paul on horse_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[183] = new photo(390482,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul phil.jpg',400,223,'','http://www1.clikpic.com/cbslondon/images/paul phil_thumb.jpg',130, 72,0, 0,'','','','','','');
photos[184] = new photo(390483,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul smudge fishing al mansour pool.jpg',400,266,'','http://www1.clikpic.com/cbslondon/images/paul smudge fishing al mansour pool_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[185] = new photo(390485,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul tomas.jpg',400,246,'','http://www1.clikpic.com/cbslondon/images/paul tomas_thumb.jpg',130, 80,0, 0,'','','','','','');
photos[186] = new photo(390487,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul tong.jpg',400,687,'','http://www1.clikpic.com/cbslondon/images/paul tong_thumb.jpg',130, 223,0, 0,'','','','','','');
photos[187] = new photo(390489,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with beer.jpg',400,220,'','http://www1.clikpic.com/cbslondon/images/paul with beer_thumb.jpg',130, 72,0, 0,'','','','','','');
photos[188] = new photo(390492,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with kids.jpg',400,271,'','http://www1.clikpic.com/cbslondon/images/paul with kids_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[189] = new photo(390494,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with kids and dog.jpg',400,259,'','http://www1.clikpic.com/cbslondon/images/paul with kids and dog_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[190] = new photo(390497,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul\'s 3 grand children.jpg',400,319,'','http://www1.clikpic.com/cbslondon/images/paul\'s 3 grand children_thumb.jpg',130, 104,0, 0,'','','','','','');
photos[191] = new photo(409469,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/Paul latest from Thorsten.jpg',400,300,'This picture was recently found by Thorsten Hoefle who is in Baghdad at the moment.','http://www1.clikpic.com/cbslondon/images/Paul latest from Thorsten_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[192] = new photo(413842,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/paul with camera blackandwhite.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/paul with camera blackandwhite_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[193] = new photo(463265,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/speech linda2.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/speech linda2_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[194] = new photo(463267,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/speech linda3.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/speech linda3_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[195] = new photo(463269,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/speech daughter.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/speech daughter_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[196] = new photo(463270,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/stone everybody.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/stone everybody_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[197] = new photo(463272,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/stone front.jpg',400,533,'','http://www1.clikpic.com/cbslondon/images/stone front_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[198] = new photo(463274,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/andy with child.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/andy with child_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[199] = new photo(463276,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/stone rear.jpg',400,534,'','http://www1.clikpic.com/cbslondon/images/stone rear_thumb.jpg',130, 174,0, 0,'','','','','','');
photos[200] = new photo(463278,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/stone and mother.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/stone and mother_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[201] = new photo(463279,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/stone and children.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/stone and children_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[202] = new photo(463280,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/doves boxes.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/doves boxes_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[203] = new photo(463281,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/doves.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/doves_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[204] = new photo(463282,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/doves flying.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/doves flying_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[205] = new photo(463283,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/people.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/people_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[206] = new photo(463285,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/ashes going in(by linda).jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/ashes going in(by linda)_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[207] = new photo(463286,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/ashes close up.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/ashes close up_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[208] = new photo(463287,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/ashes going in(by daughter).jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/ashes going in(by daughter)_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[209] = new photo(463288,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/picknic.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/picknic_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[210] = new photo(463289,'25471','','gallery','http://www1.clikpic.com/cbslondon/images/picknic2.jpg',400,300,'','http://www1.clikpic.com/cbslondon/images/picknic2_thumb.jpg',130, 98,0, 0,'','','','','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(25474,'299158,290853','James Brolan','gallery');
galleries[1] = new gallery(25471,'354120,299159,290859','Paul Douglas','gallery');

