/***************************************************************************
* 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('10755');
	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('10755');
	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)) {
		debug('In updateImage');
		debug('setting  img src = ' + photos[nextImg].src);
		
					
			document.getElementById('imagePhoto').innerHTML = '<img class="mainphoto" src="' + photos[nextImg].src + ' " id="mainPic" name="mainPic" width="' + photos[nextImg].width + '" height="' + photos[nextImg].height + '" alt="' + photos[nextImg].caption + '" border="0">';
						field.value = photos[nextImg].id;
			document.getElementById('imageTitle').innerHTML = photos[nextImg].caption;
			/* 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(10763,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/Leon_haslam.jpg',400,247,'','http://www1.clikpic.com/paulwhite/images/Leon_haslam_thumb.jpg',130, 80,0, 0,'Leon Haslam, British Superbikes, Oulton Park, 2004','','','','','');
photos[1] = new photo(10765,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/Reynolds_goodwood.jpg',400,277,'','http://www1.clikpic.com/paulwhite/images/Reynolds_goodwood_thumb.jpg',130, 90,0, 0,'John Reynolds on the brakes - Rizla Suzuki GSXR 1000, Goodwood Festival of Speed, 2004','','','','','');
photos[2] = new photo(10766,'126669','','gallery','http://www1.clikpic.com/paulwhite/images/Rossi _1.jpg',400,240,'','http://www1.clikpic.com/paulwhite/images/Rossi _1_thumb.jpg',130, 78,0, 1,'Valentino Rossi sets fastest lap on two wheels around Donington Park on Repsol Honda - MotoGP (Practice) 2002','','','','','');
photos[3] = new photo(120932,'11224','','gallery','http://www1.clikpic.com/paulwhite/images/Anns niagra 1.jpg',325,400,'Canadian Falls, Niagara','http://www1.clikpic.com/paulwhite/images/Anns niagra 1_thumb.jpg',130, 160,0, 1,'My wife, Ann, in fact took this. I think her shot captures the scene beautifully as the “Maid of the Mist” approaches the Falls under the rainbow.  At the time of our visit in May the rainbow effect started to occur in the middle of the afternoon, presumably when the Sun’s rays reached a critical angle with the water spray. The blue \"uniforms\" of the passengers on board the boat are the capes given to protect against the downpour.','','','','','');
photos[4] = new photo(1886866,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/CRW_8728-01.jpg',228,400,'CRW 8728-01','http://www1.clikpic.com/paulwhite/images/CRW_8728-01_thumb.jpg',130, 228,0, 0,'','','','','','');
photos[5] = new photo(1889045,'126675','','gallery','http://www1.clikpic.com/paulwhite/images/P1010492.jpg',226,400,'P1010492','http://www1.clikpic.com/paulwhite/images/P1010492_thumb.jpg',130, 230,0, 0,'','','','','','');
photos[6] = new photo(1889050,'126675','','gallery','http://www1.clikpic.com/paulwhite/images/P1010507.jpg',226,400,'P1010507','http://www1.clikpic.com/paulwhite/images/P1010507_thumb.jpg',130, 230,0, 0,'','','','','','');
photos[7] = new photo(1894730,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0035.jpg',600,394,' MG 0035','http://www1.clikpic.com/paulwhite/images/_MG_0035_thumb.jpg',130, 85,0, 0,'Michael Rutter, Oulton Park 2006','','','','','');
photos[8] = new photo(1894782,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0027-01.jpg',178,400,' MG 0027-01','http://www1.clikpic.com/paulwhite/images/_MG_0027-01_thumb.jpg',130, 292,0, 0,'','','','','','');
photos[9] = new photo(1894844,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0449-01.jpg',595,348,' MG 0449-01','http://www1.clikpic.com/paulwhite/images/_MG_0449-01_thumb.jpg',130, 76,0, 0,'','','','','','');
photos[10] = new photo(1894850,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0731-01.jpg',290,400,' MG 0731-01','http://www1.clikpic.com/paulwhite/images/_MG_0731-01_thumb.jpg',130, 179,0, 0,'','','','','','');
photos[11] = new photo(1894859,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1374-01 copy.jpg',267,400,' MG 1374-01 copy','http://www1.clikpic.com/paulwhite/images/_MG_1374-01 copy_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[12] = new photo(1894864,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2643-01.jpg',595,336,' MG 2643-01','http://www1.clikpic.com/paulwhite/images/_MG_2643-01_thumb.jpg',130, 73,0, 0,'','','','','','');
photos[13] = new photo(1894871,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0453-01.jpg',595,386,' MG 0453-01','http://www1.clikpic.com/paulwhite/images/_MG_0453-01_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[14] = new photo(1894877,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2121-01.jpg',255,400,' MG 2121-01','http://www1.clikpic.com/paulwhite/images/_MG_2121-01_thumb.jpg',130, 204,0, 0,'','','','','','');
photos[15] = new photo(1894885,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2378-01.jpg',553,400,' MG 2378-01','http://www1.clikpic.com/paulwhite/images/_MG_2378-01_thumb.jpg',130, 94,0, 0,'','','','','','');
photos[16] = new photo(1895404,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0009-02.jpg',595,388,' MG 0009-02','http://www1.clikpic.com/paulwhite/images/_MG_0009-02_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[17] = new photo(1895422,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0002-01.jpg',288,400,' MG 0002-01','http://www1.clikpic.com/paulwhite/images/_MG_0002-01_thumb.jpg',130, 181,0, 0,'','','','','','');
photos[18] = new photo(1895443,'126672','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2445-01.jpg',228,400,' MG 2445-01','http://www1.clikpic.com/paulwhite/images/_MG_2445-01_thumb.jpg',130, 228,0, 0,'','','','','','');
photos[19] = new photo(1895452,'126711','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_3960-01.jpg',595,357,' MG 3960-01','http://www1.clikpic.com/paulwhite/images/_MG_3960-01_thumb.jpg',130, 78,0, 0,'','','','','','');
photos[20] = new photo(1886867,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/CRW_8730-01.jpg',301,400,'CRW 8730-01','http://www1.clikpic.com/paulwhite/images/CRW_8730-01_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[21] = new photo(1886902,'126675','','gallery','http://www1.clikpic.com/paulwhite/images/P1010491.jpg',600,338,'P1010491','http://www1.clikpic.com/paulwhite/images/P1010491_thumb.jpg',130, 73,0, 0,'','','','','','');
photos[22] = new photo(1889051,'126675','','gallery','http://www1.clikpic.com/paulwhite/images/P1010511.jpg',226,400,'P1010511','http://www1.clikpic.com/paulwhite/images/P1010511_thumb.jpg',130, 230,0, 0,'','','','','','');
photos[23] = new photo(1894731,'126669','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0074-01.jpg',600,399,' MG 0074-01','http://www1.clikpic.com/paulwhite/images/_MG_0074-01_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[24] = new photo(1894783,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0045-01.jpg',497,400,' MG 0045-01','http://www1.clikpic.com/paulwhite/images/_MG_0045-01_thumb.jpg',130, 105,0, 0,'','','','','','');
photos[25] = new photo(1894845,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0457-01.jpg',583,400,' MG 0457-01','http://www1.clikpic.com/paulwhite/images/_MG_0457-01_thumb.jpg',130, 89,0, 0,'','','','','','');
photos[26] = new photo(1894851,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0736-01.jpg',595,356,' MG 0736-01','http://www1.clikpic.com/paulwhite/images/_MG_0736-01_thumb.jpg',130, 78,0, 0,'','','','','','');
photos[27] = new photo(1894860,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1382-01.jpg',525,400,' MG 1382-01','http://www1.clikpic.com/paulwhite/images/_MG_1382-01_thumb.jpg',130, 99,0, 0,'','','','','','');
photos[28] = new photo(1894872,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2894-01.jpg',282,400,' MG 2894-01','http://www1.clikpic.com/paulwhite/images/_MG_2894-01_thumb.jpg',130, 184,0, 0,'','','','','','');
photos[29] = new photo(1894878,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2133-01.jpg',267,400,' MG 2133-01','http://www1.clikpic.com/paulwhite/images/_MG_2133-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[30] = new photo(1894886,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2380-02.jpg',267,400,' MG 2380-02','http://www1.clikpic.com/paulwhite/images/_MG_2380-02_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[31] = new photo(1895395,'11224','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_5440-01.jpg',595,397,' MG 5440-01','http://www1.clikpic.com/paulwhite/images/_MG_5440-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[32] = new photo(1895405,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0018-02.jpg',576,400,' MG 0018-02','http://www1.clikpic.com/paulwhite/images/_MG_0018-02_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[33] = new photo(1895410,'126656','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0277-01.jpg',595,382,' MG 0277-01','http://www1.clikpic.com/paulwhite/images/_MG_0277-01_thumb.jpg',130, 83,0, 0,'','','','','','');
photos[34] = new photo(1895415,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4402-01.jpg',547,400,' MG 4402-01','http://www1.clikpic.com/paulwhite/images/_MG_4402-01_thumb.jpg',130, 95,0, 0,'','','','','','');
photos[35] = new photo(1895423,'126656','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0031-01.jpg',577,400,' MG 0031-01','http://www1.clikpic.com/paulwhite/images/_MG_0031-01_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[36] = new photo(1895444,'126672','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2533-01.jpg',223,400,' MG 2533-01','http://www1.clikpic.com/paulwhite/images/_MG_2533-01_thumb.jpg',130, 233,0, 0,'','','','','','');
photos[37] = new photo(1895453,'126711','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4003-01.jpg',595,397,' MG 4003-01','http://www1.clikpic.com/paulwhite/images/_MG_4003-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[38] = new photo(1894865,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2650-01.jpg',595,391,' MG 2650-01','http://www1.clikpic.com/paulwhite/images/_MG_2650-01_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[39] = new photo(1886903,'126675','','gallery','http://www1.clikpic.com/paulwhite/images/P1010513.jpg',600,338,'P1010513','http://www1.clikpic.com/paulwhite/images/P1010513_thumb.jpg',130, 73,0, 0,'','','','','','');
photos[40] = new photo(1894784,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0061-01.jpg',595,397,' MG 0061-01','http://www1.clikpic.com/paulwhite/images/_MG_0061-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[41] = new photo(1894846,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0459-01.jpg',519,400,' MG 0459-01','http://www1.clikpic.com/paulwhite/images/_MG_0459-01_thumb.jpg',130, 100,0, 0,'','','','','','');
photos[42] = new photo(1894852,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0998-01.jpg',234,400,' MG 0998-01','http://www1.clikpic.com/paulwhite/images/_MG_0998-01_thumb.jpg',130, 222,0, 0,'','','','','','');
photos[43] = new photo(1894861,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1909-01.jpg',285,400,' MG 1909-01','http://www1.clikpic.com/paulwhite/images/_MG_1909-01_thumb.jpg',130, 182,0, 0,'','','','','','');
photos[44] = new photo(1894873,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2922-02.jpg',267,400,' MG 2922-02','http://www1.clikpic.com/paulwhite/images/_MG_2922-02_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[45] = new photo(1894879,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2376-01.jpg',286,400,' MG 2376-01','http://www1.clikpic.com/paulwhite/images/_MG_2376-01_thumb.jpg',130, 182,0, 0,'','','','','','');
photos[46] = new photo(1894887,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2420-02.jpg',281,400,' MG 2420-02','http://www1.clikpic.com/paulwhite/images/_MG_2420-02_thumb.jpg',130, 185,0, 0,'','','','','','');
photos[47] = new photo(1895396,'11224','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_5604-01.jpg',595,370,' MG 5604-01','http://www1.clikpic.com/paulwhite/images/_MG_5604-01_thumb.jpg',130, 81,0, 0,'','','','','','');
photos[48] = new photo(1895411,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0447-01.jpg',541,400,' MG 0447-01','http://www1.clikpic.com/paulwhite/images/_MG_0447-01_thumb.jpg',130, 96,0, 0,'','','','','','');
photos[49] = new photo(1895416,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4865-01.jpg',595,393,' MG 4865-01','http://www1.clikpic.com/paulwhite/images/_MG_4865-01_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[50] = new photo(1895424,'126711','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_6836-01.jpg',595,390,' MG 6836-01','http://www1.clikpic.com/paulwhite/images/_MG_6836-01_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[51] = new photo(1895445,'126672','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2897-01.jpg',220,400,' MG 2897-01','http://www1.clikpic.com/paulwhite/images/_MG_2897-01_thumb.jpg',130, 236,0, 0,'','','','','','');
photos[52] = new photo(1895454,'126711','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4156-01.jpg',595,397,' MG 4156-01','http://www1.clikpic.com/paulwhite/images/_MG_4156-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[53] = new photo(1895470,'126669','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9981-01.jpg',595,396,' MG 9981-01','http://www1.clikpic.com/paulwhite/images/_MG_9981-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[54] = new photo(1894866,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2706-01.jpg',595,397,' MG 2706-01','http://www1.clikpic.com/paulwhite/images/_MG_2706-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[55] = new photo(1894785,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0075-01.jpg',595,363,' MG 0075-01','http://www1.clikpic.com/paulwhite/images/_MG_0075-01_thumb.jpg',130, 79,0, 0,'','','','','','');
photos[56] = new photo(1894847,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0707-01.jpg',262,400,' MG 0707-01','http://www1.clikpic.com/paulwhite/images/_MG_0707-01_thumb.jpg',130, 198,0, 0,'','','','','','');
photos[57] = new photo(1894853,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1073-01.jpg',511,400,' MG 1073-01','http://www1.clikpic.com/paulwhite/images/_MG_1073-01_thumb.jpg',130, 102,0, 0,'','','','','','');
photos[58] = new photo(1894862,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2025-01.jpg',595,342,' MG 2025-01','http://www1.clikpic.com/paulwhite/images/_MG_2025-01_thumb.jpg',130, 75,0, 0,'','','','','','');
photos[59] = new photo(1894874,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2929-01.jpg',595,305,' MG 2929-01','http://www1.clikpic.com/paulwhite/images/_MG_2929-01_thumb.jpg',130, 67,0, 0,'','','','','','');
photos[60] = new photo(1894880,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2411-02.jpg',278,400,' MG 2411-02','http://www1.clikpic.com/paulwhite/images/_MG_2411-02_thumb.jpg',130, 187,0, 0,'','','','','','');
photos[61] = new photo(1895397,'11224','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_5606-01.jpg',267,400,' MG 5606-01','http://www1.clikpic.com/paulwhite/images/_MG_5606-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[62] = new photo(1895407,'126669','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0044-02.jpg',556,400,' MG 0044-02','http://www1.clikpic.com/paulwhite/images/_MG_0044-02_thumb.jpg',130, 94,0, 0,'','','','','','');
photos[63] = new photo(1895412,'126672','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_3025-02.jpg',247,400,' MG 3025-02','http://www1.clikpic.com/paulwhite/images/_MG_3025-02_thumb.jpg',130, 211,0, 0,'','','','','','');
photos[64] = new photo(1895417,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4942-01.jpg',595,391,' MG 4942-01','http://www1.clikpic.com/paulwhite/images/_MG_4942-01_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[65] = new photo(1895425,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_7459-01.jpg',595,396,' MG 7459-01','http://www1.clikpic.com/paulwhite/images/_MG_7459-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[66] = new photo(1895435,'126672','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2356-01.jpg',267,400,' MG 2356-01','http://www1.clikpic.com/paulwhite/images/_MG_2356-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[67] = new photo(1895446,'126672','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_3218-01.jpg',232,400,' MG 3218-01','http://www1.clikpic.com/paulwhite/images/_MG_3218-01_thumb.jpg',130, 224,0, 0,'','','','','','');
photos[68] = new photo(1895463,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9962-01.jpg',595,397,' MG 9962-01','http://www1.clikpic.com/paulwhite/images/_MG_9962-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[69] = new photo(1894867,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2734-01.jpg',592,400,' MG 2734-01','http://www1.clikpic.com/paulwhite/images/_MG_2734-01_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[70] = new photo(1885936,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0008-041.jpg',565,400,' MG 0008-041','http://www1.clikpic.com/paulwhite/images/_MG_0008-041_thumb.jpg',130, 92,0, 0,'Stobart Honda team led by Michael Rutter','','','','','');
photos[71] = new photo(1894734,'126669','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9247.jpg',520,400,' MG 9247','http://www1.clikpic.com/paulwhite/images/_MG_9247_thumb.jpg',130, 100,0, 0,'','','','','','');
photos[72] = new photo(1894739,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9306-01.jpg',600,399,' MG 9306-01','http://www1.clikpic.com/paulwhite/images/_MG_9306-01_thumb.jpg',130, 86,0, 0,'Leon Haslam, Mallory Park, June 2006','','','','','');
photos[73] = new photo(1894786,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0448-01.jpg',595,339,' MG 0448-01','http://www1.clikpic.com/paulwhite/images/_MG_0448-01_thumb.jpg',130, 74,0, 0,'','','','','','');
photos[74] = new photo(1894848,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0721-01.jpg',562,400,' MG 0721-01','http://www1.clikpic.com/paulwhite/images/_MG_0721-01_thumb.jpg',130, 93,0, 0,'','','','','','');
photos[75] = new photo(1894854,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1236-01.jpg',547,400,' MG 1236-01','http://www1.clikpic.com/paulwhite/images/_MG_1236-01_thumb.jpg',130, 95,0, 0,'','','','','','');
photos[76] = new photo(1894863,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2069-01.jpg',595,397,' MG 2069-01','http://www1.clikpic.com/paulwhite/images/_MG_2069-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[77] = new photo(1894875,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2954-01.jpg',543,400,' MG 2954-01','http://www1.clikpic.com/paulwhite/images/_MG_2954-01_thumb.jpg',130, 96,0, 0,'','','','','','');
photos[78] = new photo(1894881,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2592-01.jpg',277,400,' MG 2592-01','http://www1.clikpic.com/paulwhite/images/_MG_2592-01_thumb.jpg',130, 188,0, 0,'','','','','','');
photos[79] = new photo(1894889,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2424-02.jpg',595,391,' MG 2424-02','http://www1.clikpic.com/paulwhite/images/_MG_2424-02_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[80] = new photo(1895398,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_8677-01.jpg',582,400,' MG 8677-01','http://www1.clikpic.com/paulwhite/images/_MG_8677-01_thumb.jpg',130, 89,0, 0,'','','','','','');
photos[81] = new photo(1895408,'126669','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0048-02.jpg',595,391,' MG 0048-02','http://www1.clikpic.com/paulwhite/images/_MG_0048-02_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[82] = new photo(1895413,'126672','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_3049-01.jpg',595,397,' MG 3049-01','http://www1.clikpic.com/paulwhite/images/_MG_3049-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[83] = new photo(1895418,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4971-01.jpg',595,387,' MG 4971-01','http://www1.clikpic.com/paulwhite/images/_MG_4971-01_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[84] = new photo(1895426,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9402-01.jpg',595,397,' MG 9402-01','http://www1.clikpic.com/paulwhite/images/_MG_9402-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[85] = new photo(1895436,'126672','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2363-01.jpg',281,400,' MG 2363-01','http://www1.clikpic.com/paulwhite/images/_MG_2363-01_thumb.jpg',130, 185,0, 0,'','','','','','');
photos[86] = new photo(1895447,'126711','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_3985-01.jpg',595,307,' MG 3985-01','http://www1.clikpic.com/paulwhite/images/_MG_3985-01_thumb.jpg',130, 67,0, 0,'','','','','','');
photos[87] = new photo(1895456,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9467-03.jpg',523,400,' MG 9467-03','http://www1.clikpic.com/paulwhite/images/_MG_9467-03_thumb.jpg',130, 99,0, 0,'','','','','','');
photos[88] = new photo(1894868,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2888-01.jpg',267,400,' MG 2888-01','http://www1.clikpic.com/paulwhite/images/_MG_2888-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[89] = new photo(1885937,'126656','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0051-011.jpg',600,353,' MG 0051-011','http://www1.clikpic.com/paulwhite/images/_MG_0051-011_thumb.jpg',130, 76,0, 0,'Lancia Stratos on Robin Hood Stages 2007','','','','','');
photos[90] = new photo(1885941,'126669','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0092-021.jpg',600,400,' MG 0092-021','http://www1.clikpic.com/paulwhite/images/_MG_0092-021_thumb.jpg',130, 87,0, 0,'Tony Elias at a wet Donington GP, 2007','','','','','');
photos[91] = new photo(1885943,'126668','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0099-011.jpg',572,400,' MG 0099-011','http://www1.clikpic.com/paulwhite/images/_MG_0099-011_thumb.jpg',130, 91,0, 0,'','','','','','');
photos[92] = new photo(1885951,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0257-01.jpg',505,400,' MG 0257-01','http://www1.clikpic.com/paulwhite/images/_MG_0257-01_thumb.jpg',130, 103,0, 0,'Shakey Byrne, Oulton Park, 2007','','','','','');
photos[93] = new photo(1885956,'126655','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0348.jpg',600,378,' MG 0348','http://www1.clikpic.com/paulwhite/images/_MG_0348_thumb.jpg',130, 82,0, 0,'Mikko Hirvonen in Ford Focus','','','','','');
photos[94] = new photo(1885971,'126656','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0740-2.jpg',573,400,' MG 0740-2','http://www1.clikpic.com/paulwhite/images/_MG_0740-2_thumb.jpg',130, 91,0, 0,'Russell Brooks in Talbot Sunbeam, Chatsworth, 2007','','','','','');
photos[95] = new photo(1886261,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1262.jpg',600,301,' MG 1262','http://www1.clikpic.com/paulwhite/images/_MG_1262_thumb.jpg',130, 65,0, 0,'The pack at the start of the race','','','','','');
photos[96] = new photo(1886839,'126672','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1718-01.jpg',592,400,' MG 1718-01','http://www1.clikpic.com/paulwhite/images/_MG_1718-01_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[97] = new photo(1886845,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2380-01.jpg',267,400,' MG 2380-01','http://www1.clikpic.com/paulwhite/images/_MG_2380-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[98] = new photo(1886857,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2391-02.jpg',600,387,' MG 2391-02','http://www1.clikpic.com/paulwhite/images/_MG_2391-02_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[99] = new photo(1886887,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4326-01.jpg',600,400,' MG 4326-01','http://www1.clikpic.com/paulwhite/images/_MG_4326-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[100] = new photo(1886894,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1375-2.jpg',289,400,' MG 1375-2','http://www1.clikpic.com/paulwhite/images/_MG_1375-2_thumb.jpg',130, 180,0, 0,'Jason Plato showing the signs of his injuries incurred in his fiery testing accident the previous weekend','','','','','');
photos[101] = new photo(1888795,'126656','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0176-01.jpg',600,400,' MG 0176-01','http://www1.clikpic.com/paulwhite/images/_MG_0176-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[102] = new photo(1885947,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0126-021.jpg',267,400,' MG 0126-021','http://www1.clikpic.com/paulwhite/images/_MG_0126-021_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[103] = new photo(1885952,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0263-01.jpg',568,400,' MG 0263-01','http://www1.clikpic.com/paulwhite/images/_MG_0263-01_thumb.jpg',130, 92,0, 0,'Jonathan Rae, Oulton Park, 2007','','','','','');
photos[104] = new photo(1885957,'126655','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0372.jpg',564,400,' MG 0372','http://www1.clikpic.com/paulwhite/images/_MG_0372_thumb.jpg',130, 92,0, 0,'Gigi Galli in Ford Focus','','','','','');
photos[105] = new photo(1885962,'126655','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0597.jpg',564,400,' MG 0597','http://www1.clikpic.com/paulwhite/images/_MG_0597_thumb.jpg',130, 92,0, 0,'','','','','','');
photos[106] = new photo(1885967,'126654','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0711-02.jpg',600,400,' MG 0711-02','http://www1.clikpic.com/paulwhite/images/_MG_0711-02_thumb.jpg',130, 87,0, 0,'Latvala in Ford Focus','','','','','');
photos[107] = new photo(1885972,'126654','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0745-01.jpg',600,375,' MG 0745-01','http://www1.clikpic.com/paulwhite/images/_MG_0745-01_thumb.jpg',130, 81,0, 0,'','','','','','');
photos[108] = new photo(1886053,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1093.jpg',300,400,' MG 1093','http://www1.clikpic.com/paulwhite/images/_MG_1093_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[109] = new photo(1886262,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1302.jpg',600,351,' MG 1302','http://www1.clikpic.com/paulwhite/images/_MG_1302_thumb.jpg',130, 76,0, 0,'','','','','','');
photos[110] = new photo(1886840,'126672','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1741-02.jpg',280,400,' MG 1741-02','http://www1.clikpic.com/paulwhite/images/_MG_1741-02_thumb.jpg',130, 186,0, 0,'','','','','','');
photos[111] = new photo(1886846,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2381-02.jpg',501,400,' MG 2381-02','http://www1.clikpic.com/paulwhite/images/_MG_2381-02_thumb.jpg',130, 104,0, 0,'','','','','','');
photos[112] = new photo(1886858,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2392-02.jpg',267,400,' MG 2392-02','http://www1.clikpic.com/paulwhite/images/_MG_2392-02_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[113] = new photo(1886888,'126711','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4391-01.jpg',600,400,' MG 4391-01','http://www1.clikpic.com/paulwhite/images/_MG_4391-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[114] = new photo(1886895,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1611.jpg',600,348,' MG 1611','http://www1.clikpic.com/paulwhite/images/_MG_1611_thumb.jpg',130, 75,0, 0,'','','','','','');
photos[115] = new photo(1889000,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9698.jpg',407,400,' MG 9698','http://www1.clikpic.com/paulwhite/images/_MG_9698_thumb.jpg',130, 128,0, 0,'','','','','','');
photos[116] = new photo(1885944,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0100-011.jpg',249,400,' MG 0100-011','http://www1.clikpic.com/paulwhite/images/_MG_0100-011_thumb.jpg',130, 209,0, 0,'','','','','','');
photos[117] = new photo(1885948,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0143-02.jpg',564,400,' MG 0143-02','http://www1.clikpic.com/paulwhite/images/_MG_0143-02_thumb.jpg',130, 92,0, 0,'Leon Caminer, Oulton Park, 2007','','','','','');
photos[118] = new photo(1885953,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0285-01.jpg',600,370,' MG 0285-01','http://www1.clikpic.com/paulwhite/images/_MG_0285-01_thumb.jpg',130, 80,0, 0,'Chris Walker, Rizla Suzuki, Oulton Park 2007','','','','','');
photos[119] = new photo(1885958,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0393-01.jpg',438,400,' MG 0393-01','http://www1.clikpic.com/paulwhite/images/_MG_0393-01_thumb.jpg',130, 119,0, 0,'','','','','','');
photos[120] = new photo(1885968,'126654','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0728-02.jpg',584,400,' MG 0728-02','http://www1.clikpic.com/paulwhite/images/_MG_0728-02_thumb.jpg',130, 89,0, 0,'','','','','','');
photos[121] = new photo(1885973,'126656','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0797-2.jpg',600,393,' MG 0797-2','http://www1.clikpic.com/paulwhite/images/_MG_0797-2_thumb.jpg',130, 85,0, 0,'XK120 \"NUB 120\" - the winner of the Alpine Rally in the hands of Ian Appleyard and the start of the Jaguar racing legend.','','','','','');
photos[122] = new photo(1886263,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1326.jpg',600,400,' MG 1326','http://www1.clikpic.com/paulwhite/images/_MG_1326_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[123] = new photo(1886841,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2247-01.jpg',600,400,' MG 2247-01','http://www1.clikpic.com/paulwhite/images/_MG_2247-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[124] = new photo(1886847,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2382-01.jpg',600,400,' MG 2382-01','http://www1.clikpic.com/paulwhite/images/_MG_2382-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[125] = new photo(1886859,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2526-01.jpg',495,400,' MG 2526-01','http://www1.clikpic.com/paulwhite/images/_MG_2526-01_thumb.jpg',130, 105,0, 0,'','','','','','');
photos[126] = new photo(1886868,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2574-01.jpg',267,400,' MG 2574-01','http://www1.clikpic.com/paulwhite/images/_MG_2574-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[127] = new photo(1886889,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9924-01.jpg',600,400,' MG 9924-01','http://www1.clikpic.com/paulwhite/images/_MG_9924-01_thumb.jpg',130, 87,0, 0,'Karl Harris, Oulton Park, 2006','','','','','');
photos[128] = new photo(1886896,'126656','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9935-01.jpg',600,369,' MG 9935-01','http://www1.clikpic.com/paulwhite/images/_MG_9935-01_thumb.jpg',130, 80,0, 0,'','','','','','');
photos[129] = new photo(1888797,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1223.jpg',267,400,' MG 1223','http://www1.clikpic.com/paulwhite/images/_MG_1223_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[130] = new photo(1889001,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9734.jpg',526,400,' MG 9734','http://www1.clikpic.com/paulwhite/images/_MG_9734_thumb.jpg',130, 99,0, 0,'','','','','','');
photos[131] = new photo(1885949,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0178-01.jpg',600,400,' MG 0178-01','http://www1.clikpic.com/paulwhite/images/_MG_0178-01_thumb.jpg',130, 87,0, 0,'Shakey Byrne, Honda, Oulton Park 2007','','','','','');
photos[132] = new photo(1885954,'126668','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0343-02.jpg',600,400,' MG 0343-02','http://www1.clikpic.com/paulwhite/images/_MG_0343-02_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[133] = new photo(1885959,'126655','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0405.jpg',600,386,' MG 0405','http://www1.clikpic.com/paulwhite/images/_MG_0405_thumb.jpg',130, 84,0, 0,'Gigi Galli','','','','','');
photos[134] = new photo(1885969,'126654','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0733-01.jpg',600,371,' MG 0733-01','http://www1.clikpic.com/paulwhite/images/_MG_0733-01_thumb.jpg',130, 80,0, 0,'','','','','','');
photos[135] = new photo(1886264,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1563.jpg',600,375,' MG 1563','http://www1.clikpic.com/paulwhite/images/_MG_1563_thumb.jpg',130, 81,0, 0,'','','','','','');
photos[136] = new photo(1886842,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2257-01.jpg',533,400,' MG 2257-01','http://www1.clikpic.com/paulwhite/images/_MG_2257-01_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[137] = new photo(1886848,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2384-02.jpg',553,400,' MG 2384-02','http://www1.clikpic.com/paulwhite/images/_MG_2384-02_thumb.jpg',130, 94,0, 0,'','','','','','');
photos[138] = new photo(1886860,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2530-02.jpg',254,400,' MG 2530-02','http://www1.clikpic.com/paulwhite/images/_MG_2530-02_thumb.jpg',130, 205,0, 0,'','','','','','');
photos[139] = new photo(1886869,'126674','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_3342.jpg',600,377,' MG 3342','http://www1.clikpic.com/paulwhite/images/_MG_3342_thumb.jpg',130, 82,0, 0,'','','','','','');
photos[140] = new photo(1886890,'126670','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9926-01.jpg',600,400,' MG 9926-01','http://www1.clikpic.com/paulwhite/images/_MG_9926-01_thumb.jpg',130, 87,0, 0,'Ben Wilson, Oulton Park','','','','','');
photos[141] = new photo(1886897,'126656','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9940-01.jpg',600,386,' MG 9940-01','http://www1.clikpic.com/paulwhite/images/_MG_9940-01_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[142] = new photo(1886904,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1344.jpg',267,400,' MG 1344','http://www1.clikpic.com/paulwhite/images/_MG_1344_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[143] = new photo(1888798,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1305.jpg',600,391,' MG 1305','http://www1.clikpic.com/paulwhite/images/_MG_1305_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[144] = new photo(1889002,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9754.jpg',525,400,' MG 9754','http://www1.clikpic.com/paulwhite/images/_MG_9754_thumb.jpg',130, 99,0, 0,'','','','','','');
photos[145] = new photo(1885945,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0126-011.jpg',267,400,' MG 0126-011','http://www1.clikpic.com/paulwhite/images/_MG_0126-011_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[146] = new photo(1885950,'126656','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0179-01.jpg',600,398,' MG 0179-01','http://www1.clikpic.com/paulwhite/images/_MG_0179-01_thumb.jpg',130, 86,0, 0,'Metro 6R4 - Oulton Park Gold Cup 2006','','','','','');
photos[147] = new photo(1885955,'126668','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0346-01.jpg',600,391,' MG 0346-01','http://www1.clikpic.com/paulwhite/images/_MG_0346-01_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[148] = new photo(1885965,'126655','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0651.jpg',600,400,' MG 0651','http://www1.clikpic.com/paulwhite/images/_MG_0651_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[149] = new photo(1885970,'126654','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0734-02.jpg',600,382,' MG 0734-02','http://www1.clikpic.com/paulwhite/images/_MG_0734-02_thumb.jpg',130, 83,0, 0,'','','','','','');
photos[150] = new photo(1886061,'126669','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0670-011.jpg',600,376,' MG 0670-01','http://www1.clikpic.com/paulwhite/images/_MG_0670-011_thumb.jpg',130, 81,0, 0,'Casey Stoner, Ducati, Donington Park, 2007','','','','','');
photos[151] = new photo(1886265,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1716.jpg',600,342,' MG 1716','http://www1.clikpic.com/paulwhite/images/_MG_1716_thumb.jpg',130, 74,0, 0,'','','','','','');
photos[152] = new photo(1886843,'126673','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2261-01.jpg',600,400,' MG 2261-01','http://www1.clikpic.com/paulwhite/images/_MG_2261-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[153] = new photo(1886849,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2386-02.jpg',600,400,' MG 2386-02','http://www1.clikpic.com/paulwhite/images/_MG_2386-02_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[154] = new photo(1886861,'126713','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_2568-01.jpg',267,400,' MG 2568-01','http://www1.clikpic.com/paulwhite/images/_MG_2568-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[155] = new photo(1886870,'126674','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_3976-2.jpg',600,390,' MG 3976-2','http://www1.clikpic.com/paulwhite/images/_MG_3976-2_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[156] = new photo(1886891,'126656','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9928-01.jpg',600,359,' MG 9928-01','http://www1.clikpic.com/paulwhite/images/_MG_9928-01_thumb.jpg',130, 78,0, 0,'','','','','','');
photos[157] = new photo(1886898,'126656','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9980-01.jpg',600,400,' MG 9980-01','http://www1.clikpic.com/paulwhite/images/_MG_9980-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[158] = new photo(1886905,'126653','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1628-2.jpg',600,363,' MG 1628-2','http://www1.clikpic.com/paulwhite/images/_MG_1628-2_thumb.jpg',130, 79,0, 0,'','','','','','');
photos[159] = new photo(1888799,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9814-2.jpg',545,400,' MG 9814-2','http://www1.clikpic.com/paulwhite/images/_MG_9814-2_thumb.jpg',130, 95,0, 0,'','','','','','');
photos[160] = new photo(1889003,'126650','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9798-2.jpg',564,400,' MG 9798-2','http://www1.clikpic.com/paulwhite/images/_MG_9798-2_thumb.jpg',130, 92,0, 0,'','','','','','');
photos[161] = new photo(10757,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/boy_with_boat.jpg',321,400,'','http://www1.clikpic.com/paulwhite/images/boy_with_boat_thumb.jpg',130, 162,0, 0,'Boy \"rows,rows, rows his boat\" alongside tourist felluca at Aswan','','','','','');
photos[162] = new photo(10758,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/felluca_sunset.jpg',400,283,'','http://www1.clikpic.com/paulwhite/images/felluca_sunset_thumb.jpg',130, 92,0, 0,'Felluca at sunset at Luxor','','','','','');
photos[163] = new photo(10759,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/luxor_guard_brush.jpg',302,400,'','http://www1.clikpic.com/paulwhite/images/luxor_guard_brush_thumb.jpg',130, 172,0, 0,'Conservation in progress at Luxor Temple','','','','','');
photos[164] = new photo(10760,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/Sunset_boat.jpg',400,288,'','http://www1.clikpic.com/paulwhite/images/Sunset_boat_thumb.jpg',130, 94,0, 0,'Boat traders call it a day at sunset, Aswan','','','','','');
photos[165] = new photo(10762,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/deir_al_bahri_1.jpg',400,258,'','http://www1.clikpic.com/paulwhite/images/deir_al_bahri_1_thumb.jpg',130, 84,0, 0,'Deir al Bahri, West Bank, Luxor','','','','','');
photos[166] = new photo(10771,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/luxor_guards_2.jpg',400,279,'','http://www1.clikpic.com/paulwhite/images/luxor_guards_2_thumb.jpg',130, 91,0, 0,'Guides at Luxor Temple','','','','','');
photos[167] = new photo(10779,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/luxor_guard.jpg',400,300,'','http://www1.clikpic.com/paulwhite/images/luxor_guard_thumb.jpg',130, 98,0, 0,'Luxor Temple guide takes a rest out of the sun','','','','','');
photos[168] = new photo(1894767,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/luxor guard 2.jpg',300,400,'luxor guard 2','http://www1.clikpic.com/paulwhite/images/luxor guard 2_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[169] = new photo(10755,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/luxor_guides.jpg',400,322,'','http://www1.clikpic.com/paulwhite/images/luxor_guides_thumb.jpg',130, 105,1, 0,'Luxor Temple guides rest in the shade','','','','','');
photos[170] = new photo(1894735,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/abu sim side figure.jpg',317,400,'abu sim side figure','http://www1.clikpic.com/paulwhite/images/abu sim side figure_thumb.jpg',130, 164,0, 0,'','','','','','');
photos[171] = new photo(1894740,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/abu simbel sunrise 2.jpg',600,377,'abu simbel sunrise 2','http://www1.clikpic.com/paulwhite/images/abu simbel sunrise 2_thumb.jpg',130, 82,0, 0,'','','','','','');
photos[172] = new photo(1894750,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/deir al bahri 10.jpg',300,400,'deir al bahri 10','http://www1.clikpic.com/paulwhite/images/deir al bahri 10_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[173] = new photo(1894755,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/donkey in field.jpg',300,400,'donkey in field','http://www1.clikpic.com/paulwhite/images/donkey in field_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[174] = new photo(1894760,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/edfu lightshaft.jpg',260,400,'edfu lightshaft','http://www1.clikpic.com/paulwhite/images/edfu lightshaft_thumb.jpg',130, 200,0, 0,'','','','','','');
photos[175] = new photo(1894766,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/karnak obelisk.jpg',276,400,'karnak obelisk','http://www1.clikpic.com/paulwhite/images/karnak obelisk_thumb.jpg',130, 188,0, 0,'','','','','','');
photos[176] = new photo(1894771,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/edfu horus.jpg',300,400,'edfu horus','http://www1.clikpic.com/paulwhite/images/edfu horus_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[177] = new photo(1894776,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/edfu front.jpg',561,400,'edfu front','http://www1.clikpic.com/paulwhite/images/edfu front_thumb.jpg',130, 93,0, 0,'','','','','','');
photos[178] = new photo(1894736,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/abu simbel  faces 1.jpg',600,398,'abu simbel  faces 1','http://www1.clikpic.com/paulwhite/images/abu simbel  faces 1_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[179] = new photo(1894741,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/balloon line.jpg',600,315,'balloon line','http://www1.clikpic.com/paulwhite/images/balloon line_thumb.jpg',130, 68,0, 0,'','','','','','');
photos[180] = new photo(1894746,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/boat men waving.jpg',600,357,'boat men waving','http://www1.clikpic.com/paulwhite/images/boat men waving_thumb.jpg',130, 77,0, 0,'','','','','','');
photos[181] = new photo(1894751,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/deir al bahri 11.jpg',300,400,'deir al bahri 11','http://www1.clikpic.com/paulwhite/images/deir al bahri 11_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[182] = new photo(1894756,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/Edfu guard 1.jpg',279,400,'Edfu guard 1','http://www1.clikpic.com/paulwhite/images/Edfu guard 1_thumb.jpg',130, 186,0, 0,'','','','','','');
photos[183] = new photo(1894761,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/edfu pan copy.jpg',600,279,'edfu pan copy','http://www1.clikpic.com/paulwhite/images/edfu pan copy_thumb.jpg',130, 60,0, 0,'','','','','','');
photos[184] = new photo(1894772,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/luxor temple 2.jpg',600,299,'luxor temple 2','http://www1.clikpic.com/paulwhite/images/luxor temple 2_thumb.jpg',130, 65,0, 0,'','','','','','');
photos[185] = new photo(1894777,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/Philae temple 2.jpg',304,400,'Philae temple 2','http://www1.clikpic.com/paulwhite/images/Philae temple 2_thumb.jpg',130, 171,0, 0,'','','','','','');
photos[186] = new photo(1894737,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/abu simbel  faces 2.jpg',302,400,'abu simbel  faces 2','http://www1.clikpic.com/paulwhite/images/abu simbel  faces 2_thumb.jpg',130, 172,0, 0,'','','','','','');
photos[187] = new photo(1894742,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/balloon view 1.jpg',600,347,'balloon view 1','http://www1.clikpic.com/paulwhite/images/balloon view 1_thumb.jpg',130, 75,0, 0,'','','','','','');
photos[188] = new photo(1894747,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/boat traders bottle.jpg',287,400,'boat traders bottle','http://www1.clikpic.com/paulwhite/images/boat traders bottle_thumb.jpg',130, 181,0, 0,'','','','','','');
photos[189] = new photo(1894752,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/deir al bahri 5.jpg',534,400,'deir al bahri 5','http://www1.clikpic.com/paulwhite/images/deir al bahri 5_thumb.jpg',130, 97,0, 0,'','','','','','');
photos[190] = new photo(1894757,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/Edfu guard 2.jpg',315,400,'Edfu guard 2','http://www1.clikpic.com/paulwhite/images/Edfu guard 2_thumb.jpg',130, 165,0, 0,'','','','','','');
photos[191] = new photo(1894762,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/karnak builders.jpg',600,383,'karnak builders','http://www1.clikpic.com/paulwhite/images/karnak builders_thumb.jpg',130, 83,0, 0,'','','','','','');
photos[192] = new photo(1894773,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/luxor tower.jpg',300,400,'luxor tower','http://www1.clikpic.com/paulwhite/images/luxor tower_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[193] = new photo(1894778,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/Sahara sunrise.jpg',600,297,'Sahara sunrise','http://www1.clikpic.com/paulwhite/images/Sahara sunrise_thumb.jpg',130, 64,0, 0,'','','','','','');
photos[194] = new photo(1894738,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/abu simbel  front 1.jpg',593,400,'abu simbel  front 1','http://www1.clikpic.com/paulwhite/images/abu simbel  front 1_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[195] = new photo(1894743,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/balloon view 6.jpg',534,400,'balloon view 6','http://www1.clikpic.com/paulwhite/images/balloon view 6_thumb.jpg',130, 97,0, 0,'','','','','','');
photos[196] = new photo(1894748,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/boats at aswan.jpg',289,400,'boats at aswan','http://www1.clikpic.com/paulwhite/images/boats at aswan_thumb.jpg',130, 180,0, 0,'','','','','','');
photos[197] = new photo(1894753,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/deir al bahri 6.jpg',298,400,'deir al bahri 6','http://www1.clikpic.com/paulwhite/images/deir al bahri 6_thumb.jpg',130, 174,0, 0,'','','','','','');
photos[198] = new photo(1894758,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/Edfu guard 3.jpg',309,400,'Edfu guard 3','http://www1.clikpic.com/paulwhite/images/Edfu guard 3_thumb.jpg',130, 168,0, 0,'','','','','','');
photos[199] = new photo(1894763,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/karnak umbrellas.jpg',300,400,'karnak umbrellas','http://www1.clikpic.com/paulwhite/images/karnak umbrellas_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[200] = new photo(1894774,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/paradise island munitions.jpg',600,397,'paradise island munitions','http://www1.clikpic.com/paulwhite/images/paradise island munitions_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[201] = new photo(1894779,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/traders blue boat 2.jpg',257,400,'traders blue boat 2','http://www1.clikpic.com/paulwhite/images/traders blue boat 2_thumb.jpg',130, 202,0, 0,'','','','','','');
photos[202] = new photo(1894744,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/blue cloth traders.jpg',510,400,'blue cloth traders','http://www1.clikpic.com/paulwhite/images/blue cloth traders_thumb.jpg',130, 102,0, 0,'','','','','','');
photos[203] = new photo(1894749,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/children waving.jpg',534,400,'children waving','http://www1.clikpic.com/paulwhite/images/children waving_thumb.jpg',130, 97,0, 0,'','','','','','');
photos[204] = new photo(1894754,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/deir al bahri guard.jpg',572,400,'deir al bahri guard','http://www1.clikpic.com/paulwhite/images/deir al bahri guard_thumb.jpg',130, 91,0, 0,'','','','','','');
photos[205] = new photo(1894759,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/edfu guide 5 new.jpg',315,400,'edfu guide 5 new','http://www1.clikpic.com/paulwhite/images/edfu guide 5 new_thumb.jpg',130, 165,0, 0,'','','','','','');
photos[206] = new photo(1894764,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/kom ombo pillar sunset.jpg',596,400,'kom ombo pillar sunset','http://www1.clikpic.com/paulwhite/images/kom ombo pillar sunset_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[207] = new photo(1894775,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/pharoh luxur.jpg',300,400,'pharoh luxur','http://www1.clikpic.com/paulwhite/images/pharoh luxur_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[208] = new photo(1894780,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/yellow balloon 2.jpg',300,400,'yellow balloon 2','http://www1.clikpic.com/paulwhite/images/yellow balloon 2_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[209] = new photo(1894770,'1451','','gallery','http://www1.clikpic.com/paulwhite/images/luxor pillars mosque.jpg',271,400,'luxor pillars mosque','http://www1.clikpic.com/paulwhite/images/luxor pillars mosque_thumb.jpg',130, 192,0, 0,'','','','','','');
photos[210] = new photo(10764,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/Peugeot_splash.jpg',400,273,'','http://www1.clikpic.com/paulwhite/images/Peugeot_splash_thumb.jpg',130, 89,0, 0,'Peugeot 206, Sweet Lamb Stages, 2004','','','','','');
photos[211] = new photo(10775,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/Subaru_splash_1.jpg',400,260,'','http://www1.clikpic.com/paulwhite/images/Subaru_splash_1_thumb.jpg',130, 85,0, 0,'Subaru Impreza, Sweet Lamb Stages, 2004','','','','','');
photos[212] = new photo(10777,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/mass_mercedes_196.jpg',400,229,'','http://www1.clikpic.com/paulwhite/images/mass_mercedes_196_thumb.jpg',130, 74,0, 0,'Jochen Mass, Mercedes 196 - Goodwood Festival of Speed, 2004','','','','','');
photos[213] = new photo(11087,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/red_healey.jpg',400,237,'','http://www1.clikpic.com/paulwhite/images/red_healey_thumb.jpg',130, 77,0, 0,'Austin Healey 3000, Oulton Park 2002','','','','','');
photos[214] = new photo(1457448,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/Classic_Sidecar.jpg',600,448,'Classic Sidecar','http://www1.clikpic.com/paulwhite/images/Classic_Sidecar_thumb.jpg',130, 97,0, 0,'','','','','','');
photos[215] = new photo(1895394,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0245-01.jpg',595,391,' MG 0245-01','http://www1.clikpic.com/paulwhite/images/_MG_0245-01_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[216] = new photo(1895399,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0017-01.jpg',595,397,' MG 0017-01','http://www1.clikpic.com/paulwhite/images/_MG_0017-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[217] = new photo(1895409,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0141-01.jpg',595,346,' MG 0141-01','http://www1.clikpic.com/paulwhite/images/_MG_0141-01_thumb.jpg',130, 76,0, 0,'','','','','','');
photos[218] = new photo(1895414,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_3813-03.jpg',595,397,' MG 3813-03','http://www1.clikpic.com/paulwhite/images/_MG_3813-03_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[219] = new photo(1457449,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/Maserati_Offtrack.jpg',600,372,'Maserati Offtrack','http://www1.clikpic.com/paulwhite/images/Maserati_Offtrack_thumb.jpg',130, 81,0, 0,'','','','','','');
photos[220] = new photo(1895400,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0209-02.jpg',578,400,' MG 0209-02','http://www1.clikpic.com/paulwhite/images/_MG_0209-02_thumb.jpg',130, 90,0, 0,'','','','','','');
photos[221] = new photo(1457450,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/Rollover_Mini.jpg',600,480,'Rollover Mini','http://www1.clikpic.com/paulwhite/images/Rollover_Mini_thumb.jpg',130, 104,0, 0,'','','','','','');
photos[222] = new photo(1885935,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0003-042.jpg',600,400,' MG 0003-042','http://www1.clikpic.com/paulwhite/images/_MG_0003-042_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[223] = new photo(1894732,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0117-01(lights).jpg',555,400,' MG 0117-01(lights)','http://www1.clikpic.com/paulwhite/images/_MG_0117-01(lights)_thumb.jpg',130, 94,0, 0,'','','','','','');
photos[224] = new photo(1895401,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0667-01.jpg',595,397,' MG 0667-01','http://www1.clikpic.com/paulwhite/images/_MG_0667-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[225] = new photo(1895406,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0026-03.jpg',595,383,' MG 0026-03','http://www1.clikpic.com/paulwhite/images/_MG_0026-03_thumb.jpg',130, 84,0, 0,'','','','','','');
photos[226] = new photo(1894733,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1493-01.jpg',584,400,' MG 1493-01','http://www1.clikpic.com/paulwhite/images/_MG_1493-01_thumb.jpg',130, 89,0, 0,'','','','','','');
photos[227] = new photo(1895402,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0836-01.jpg',595,388,' MG 0836-01','http://www1.clikpic.com/paulwhite/images/_MG_0836-01_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[228] = new photo(1895471,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9987-01.jpg',595,397,' MG 9987-01','http://www1.clikpic.com/paulwhite/images/_MG_9987-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[229] = new photo(1895403,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1395-01.jpg',595,381,' MG 1395-01','http://www1.clikpic.com/paulwhite/images/_MG_1395-01_thumb.jpg',130, 83,0, 0,'','','','','','');
photos[230] = new photo(1895464,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9968-01.jpg',531,400,' MG 9968-01','http://www1.clikpic.com/paulwhite/images/_MG_9968-01_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[231] = new photo(1895472,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9994-01.jpg',595,345,' MG 9994-01','http://www1.clikpic.com/paulwhite/images/_MG_9994-01_thumb.jpg',130, 75,0, 0,'','','','','','');
photos[232] = new photo(1885938,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0075-021.jpg',600,399,' MG 0075-021','http://www1.clikpic.com/paulwhite/images/_MG_0075-021_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[233] = new photo(1885939,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0092-011.jpg',600,399,' MG 0092-011','http://www1.clikpic.com/paulwhite/images/_MG_0092-011_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[234] = new photo(1885961,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0586-01.jpg',600,391,' MG 0586-01','http://www1.clikpic.com/paulwhite/images/_MG_0586-01_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[235] = new photo(1885960,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0502-01.jpg',592,400,' MG 0502-01','http://www1.clikpic.com/paulwhite/images/_MG_0502-01_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[236] = new photo(1885975,'1450','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0987.jpg',600,376,' MG 0987','http://www1.clikpic.com/paulwhite/images/_MG_0987_thumb.jpg',130, 81,0, 0,'','','','','','');
photos[237] = new photo(10768,'1452','','gallery','http://www1.clikpic.com/paulwhite/images/Kanal_1.jpg',400,249,'','http://www1.clikpic.com/paulwhite/images/Kanal_1_thumb.jpg',130, 81,0, 0,'Kanal','','','','','');
photos[238] = new photo(10774,'1452','','gallery','http://www1.clikpic.com/paulwhite/images/Slipper_Orchid_1.jpg',267,400,'','http://www1.clikpic.com/paulwhite/images/Slipper_Orchid_1_thumb.jpg',130, 195,0, 0,'Lady Slipper Orchid','','','','','');
photos[239] = new photo(10780,'1452','','gallery','http://www1.clikpic.com/paulwhite/images/orange_tip_butterfly.jpg',400,272,'','http://www1.clikpic.com/paulwhite/images/orange_tip_butterfly_thumb.jpg',130, 88,0, 0,'Orange Tip butterfly','','','','','');
photos[240] = new photo(11081,'1452','','gallery','http://www1.clikpic.com/paulwhite/images/Lake_Jasna.jpg',400,260,'','http://www1.clikpic.com/paulwhite/images/Lake_Jasna_thumb.jpg',130, 85,0, 0,'Lake Jasna','','','','','');
photos[241] = new photo(11091,'1452','','gallery','http://www1.clikpic.com/paulwhite/images/Slap_Savica.jpg',267,400,'','http://www1.clikpic.com/paulwhite/images/Slap_Savica_thumb.jpg',130, 195,0, 0,'Slap Savica','','','','','');
photos[242] = new photo(1886901,'1452','','gallery','http://www1.clikpic.com/paulwhite/images/CRW_6725-01.jpg',600,391,'CRW 6725-01','http://www1.clikpic.com/paulwhite/images/CRW_6725-01_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[243] = new photo(1888999,'1452','','gallery','http://www1.clikpic.com/paulwhite/images/CRW_6778-01.jpg',600,361,'CRW 6778-01','http://www1.clikpic.com/paulwhite/images/CRW_6778-01_thumb.jpg',130, 78,0, 0,'','','','','','');
photos[244] = new photo(1895468,'1452','','gallery','http://www1.clikpic.com/paulwhite/images/CRW_6630-01.jpg',595,397,'CRW 6630-01','http://www1.clikpic.com/paulwhite/images/CRW_6630-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[245] = new photo(1895473,'1452','','gallery','http://www1.clikpic.com/paulwhite/images/CRW_6793-01.jpg',595,348,'CRW 6793-01','http://www1.clikpic.com/paulwhite/images/CRW_6793-01_thumb.jpg',130, 76,0, 0,'','','','','','');
photos[246] = new photo(11076,'1478','','gallery','http://www1.clikpic.com/paulwhite/images/Boat_reflections.jpg',267,400,'','http://www1.clikpic.com/paulwhite/images/Boat_reflections_thumb.jpg',130, 195,0, 0,'Boat and reflection','','','','','');
photos[247] = new photo(11079,'1478','','gallery','http://www1.clikpic.com/paulwhite/images/Del_Carbon.jpg',260,400,'','http://www1.clikpic.com/paulwhite/images/Del_Carbon_thumb.jpg',130, 200,0, 0,'Del Carbon','','','','','');
photos[248] = new photo(11088,'1478','','gallery','http://www1.clikpic.com/paulwhite/images/s_maria_del_rosario.jpg',400,282,'','http://www1.clikpic.com/paulwhite/images/s_maria_del_rosario_thumb.jpg',130, 92,0, 0,'Santa Maria del Rosario','','','','','');
photos[249] = new photo(11089,'1478','','gallery','http://www1.clikpic.com/paulwhite/images/S_maria_della_salute.jpg',400,255,'','http://www1.clikpic.com/paulwhite/images/S_maria_della_salute_thumb.jpg',130, 83,0, 0,'Santa Maria della Salute','','','','','');
photos[250] = new photo(11090,'1478','','gallery','http://www1.clikpic.com/paulwhite/images/saint_and_window 2.jpg',267,400,'','http://www1.clikpic.com/paulwhite/images/saint_and_window 2_thumb.jpg',130, 195,0, 0,'Saint and window','','','','','');
photos[251] = new photo(11093,'1478','','gallery','http://www1.clikpic.com/paulwhite/images/Venice_boats.jpg',400,244,'','http://www1.clikpic.com/paulwhite/images/Venice_boats_thumb.jpg',130, 79,0, 0,'Gondolas at quay','','','','','');
photos[252] = new photo(11094,'1478','','gallery','http://www1.clikpic.com/paulwhite/images/Venice_Metropole.jpg',400,267,'','http://www1.clikpic.com/paulwhite/images/Venice_Metropole_thumb.jpg',130, 87,0, 0,'Metropole Hotel and waterfront','','','','','');
photos[253] = new photo(11095,'1478','','gallery','http://www1.clikpic.com/paulwhite/images/Venice_Waterfront.jpg',400,214,'','http://www1.clikpic.com/paulwhite/images/Venice_Waterfront_thumb.jpg',130, 70,0, 0,'Venice waterfront','','','','','');
photos[254] = new photo(11077,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/Bridge_Killin.jpg',400,268,'','http://www1.clikpic.com/paulwhite/images/Bridge_Killin_thumb.jpg',130, 87,0, 0,'Bridge of Kilin','','','','','');
photos[255] = new photo(11082,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/Loch_Lubain.jpg',248,400,'','http://www1.clikpic.com/paulwhite/images/Loch_Lubain_thumb.jpg',130, 210,0, 0,'Loch Lubain','','','','','');
photos[256] = new photo(11083,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/Loch_Ba1.jpg',400,280,'','http://www1.clikpic.com/paulwhite/images/Loch_Ba1_thumb.jpg',130, 91,0, 0,'Loch Ba','','','','','');
photos[257] = new photo(11084,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/Loch_Tulla_1.jpg',400,222,'','http://www1.clikpic.com/paulwhite/images/Loch_Tulla_1_thumb.jpg',130, 72,0, 0,'Loch Tulla','','','','','');
photos[258] = new photo(11085,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/Loch_Tulla_8.jpg',400,235,'','http://www1.clikpic.com/paulwhite/images/Loch_Tulla_8_thumb.jpg',130, 76,0, 0,'Loch Tulla','','','','','');
photos[259] = new photo(11086,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/Orchy_1.jpg',400,267,'','http://www1.clikpic.com/paulwhite/images/Orchy_1_thumb.jpg',130, 87,0, 0,'Bridge of Orchy','','','','','');
photos[260] = new photo(1895432,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0259-01.jpg',267,400,' MG 0259-01','http://www1.clikpic.com/paulwhite/images/_MG_0259-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[261] = new photo(1895433,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0323-01.jpg',595,328,' MG 0323-01','http://www1.clikpic.com/paulwhite/images/_MG_0323-01_thumb.jpg',130, 72,0, 0,'','','','','','');
photos[262] = new photo(1895469,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9969-01.jpg',595,397,' MG 9969-01','http://www1.clikpic.com/paulwhite/images/_MG_9969-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[263] = new photo(1886052,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1081-01.jpg',600,329,' MG 1081-01','http://www1.clikpic.com/paulwhite/images/_MG_1081-01_thumb.jpg',130, 71,0, 0,'','','','','','');
photos[264] = new photo(1886088,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1130-011.jpg',600,351,' MG 1130-01','http://www1.clikpic.com/paulwhite/images/_MG_1130-011_thumb.jpg',130, 76,0, 0,'','','','','','');
photos[265] = new photo(1886089,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1213-01.jpg',600,249,' MG 1213-01','http://www1.clikpic.com/paulwhite/images/_MG_1213-01_thumb.jpg',130, 54,0, 0,'','','','','','');
photos[266] = new photo(1889046,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9805-01.jpg',281,400,' MG 9805-01','http://www1.clikpic.com/paulwhite/images/_MG_9805-01_thumb.jpg',130, 185,0, 0,'','','','','','');
photos[267] = new photo(1885963,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0635-02.jpg',600,400,' MG 0635-02','http://www1.clikpic.com/paulwhite/images/_MG_0635-02_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[268] = new photo(1886054,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1130-01.jpg',600,351,' MG 1130-01','http://www1.clikpic.com/paulwhite/images/_MG_1130-01_thumb.jpg',130, 76,0, 0,'','','','','','');
photos[269] = new photo(1889047,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9929-01.jpg',267,400,' MG 9929-01','http://www1.clikpic.com/paulwhite/images/_MG_9929-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[270] = new photo(1885974,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0933-01.jpg',600,346,' MG 0933-01','http://www1.clikpic.com/paulwhite/images/_MG_0933-01_thumb.jpg',130, 75,0, 0,'','','','','','');
photos[271] = new photo(1886091,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1221-041.jpg',600,400,' MG 1221-041','http://www1.clikpic.com/paulwhite/images/_MG_1221-041_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[272] = new photo(1889048,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9989-01.jpg',600,383,' MG 9989-01','http://www1.clikpic.com/paulwhite/images/_MG_9989-01_thumb.jpg',130, 83,0, 0,'','','','','','');
photos[273] = new photo(1886056,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1184-02.jpg',600,345,' MG 1184-02','http://www1.clikpic.com/paulwhite/images/_MG_1184-02_thumb.jpg',130, 75,0, 0,'','','','','','');
photos[274] = new photo(1886092,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_1267-06.jpg',267,400,' MG 1267-06','http://www1.clikpic.com/paulwhite/images/_MG_1267-06_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[275] = new photo(1889049,'1479','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9999-01.jpg',600,383,' MG 9999-01','http://www1.clikpic.com/paulwhite/images/_MG_9999-01_thumb.jpg',130, 83,0, 0,'','','','','','');
photos[276] = new photo(10772,'1453','','gallery','http://www1.clikpic.com/paulwhite/images/OLympic_Stadium_1.jpg',400,300,'','http://www1.clikpic.com/paulwhite/images/OLympic_Stadium_1_thumb.jpg',130, 98,0, 0,'Olympic Stadium','','','','','');
photos[277] = new photo(10773,'1453','','gallery','http://www1.clikpic.com/paulwhite/images/Opera_1.jpg',300,400,'','http://www1.clikpic.com/paulwhite/images/Opera_1_thumb.jpg',130, 173,0, 1,'Opera House','','','','','');
photos[278] = new photo(10776,'1453','','gallery','http://www1.clikpic.com/paulwhite/images/Sagrada_4.jpg',300,400,'','http://www1.clikpic.com/paulwhite/images/Sagrada_4_thumb.jpg',130, 173,0, 0,'Sagrada Familia','','','','','');
photos[279] = new photo(10781,'1453','','gallery','http://www1.clikpic.com/paulwhite/images/Sagrada_towers.jpg',238,400,'','http://www1.clikpic.com/paulwhite/images/Sagrada_towers_thumb.jpg',130, 218,0, 0,'The towers of the Sagrada Familia','','','','','');
photos[280] = new photo(11092,'1453','','gallery','http://www1.clikpic.com/paulwhite/images/Sunset_Street.jpg',283,400,'','http://www1.clikpic.com/paulwhite/images/Sunset_Street_thumb.jpg',130, 184,0, 0,'Sunset in Las Ramblas','','','','','');
photos[281] = new photo(120913,'4993','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4849-01.jpg',400,267,' Toronto Waterfront (1)','http://www1.clikpic.com/paulwhite/images/_MG_4849-01_thumb.jpg',130, 87,0, 0,'Taken from the stern of a pleasure boat on Lake Ontario, the easternmost of the Great Lakes, this image shows the main skyscrapers of Toronto. The dark sky is the incoming storm.<br><br>\n','','','','','');
photos[282] = new photo(120916,'4993','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4858-01.jpg',267,400,'Toronto Waterfront (2)','http://www1.clikpic.com/paulwhite/images/_MG_4858-01_thumb.jpg',130, 195,0, 0,'Another shot taken from the pleasure boat on Lake Ontario, the white building to the left of centre is the Rogers Skydome, the home of the Toronto Blue Jays baseball team. To the right is the CN Tower, which at 1,815 feet is the world\'s tallest building.<br><br>\n','','','','','');
photos[283] = new photo(120919,'4993','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4172.jpg',255,400,'Toronto Skyscraper','http://www1.clikpic.com/paulwhite/images/_MG_4172_thumb.jpg',130, 204,0, 0,'My personal favourite of all the shots I took in Toronto. I enjoy the way that the blue black of the building in the foreground contrasts with the rich bronze colour of the hotel behind.<br><br>\n','','','','','');
photos[284] = new photo(120922,'4993','','gallery','http://www1.clikpic.com/paulwhite/images/CRW_2789.jpg',400,328,'Toronto Reflections','http://www1.clikpic.com/paulwhite/images/CRW_2789_thumb.jpg',130, 107,0, 1,'Another shot taken by my wife, Ann. Toronto has some wonderful modern architecture and Ann has caught this view beautifully framed as a reflection in a window. Some judicious use of Photoshop has made sure all those verticals are correct!','','','','','');
photos[285] = new photo(1895392,'4993','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4012-01.jpg',595,397,' MG 4012-01','http://www1.clikpic.com/paulwhite/images/_MG_4012-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[286] = new photo(1895393,'4993','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4160-01.jpg',267,400,' MG 4160-01','http://www1.clikpic.com/paulwhite/images/_MG_4160-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[287] = new photo(120907,'4994','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0366.jpg',400,267,'Zabriskie Point (2)','http://www1.clikpic.com/paulwhite/images/_MG_0366_thumb.jpg',130, 87,0, 0,'Another view of Zabriskie Point. The area is known as badlands (because of its difficult terrain) and comprises sediment from the dried up Furnace Creek Lake.','','','','','');
photos[288] = new photo(120908,'4994','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0381.jpg',400,244,'Zabriskie Point (1)','http://www1.clikpic.com/paulwhite/images/_MG_0381_thumb.jpg',130, 79,0, 0,'This is a wonderful landscape of gullies and mudhills. Beyond is not sky but the dry salt lake.','','','','','');
photos[289] = new photo(120909,'4994','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0398.jpg',400,269,'Zabriskie Point (3)<br><br>\n','http://www1.clikpic.com/paulwhite/images/_MG_0398_thumb.jpg',130, 87,0, 0,'<br>\nThe area was named after Christian Brevoort Zabriskie, the Vice President and General Manager of the Pacific Coast Borax Company, who worked for that company from 1885 – 1933.<br><br><br>\n','','','','','');
photos[290] = new photo(120910,'4994','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0512.jpg',400,264,'Badwater, Death Valley','http://www1.clikpic.com/paulwhite/images/_MG_0512_thumb.jpg',130, 86,0, 0,'Although at first glance this appears to be a monochrome image, you’ll see it is in fact in colour. Taken late in the afternoon the hazy blue of the hills and mountains in the background contrast with the stark whiteness of the dry salt lake in the foreground. This is the lowest place in the Western Hemisphere at 282 feet below sea level. Even late in the afternoon the temperature at the time that this was taken in August was 116 degrees Fahrenheit!','','','','','');
photos[291] = new photo(120911,'4994','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0595-01.jpg',263,400,'Devil’s Golf Course, Death Valley','http://www1.clikpic.com/paulwhite/images/_MG_0595-01_thumb.jpg',130, 198,0, 0,'The lumpy mounds are salt deposits left by the lake that evaporated 2000 years ago. In effect it is a saltpan of pure salt crystals that is still occasionally flooded.','','','','','');
photos[292] = new photo(1895390,'4994','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0333-01.jpg',595,347,' MG 0333-01','http://www1.clikpic.com/paulwhite/images/_MG_0333-01_thumb.jpg',130, 76,0, 0,'','','','','','');
photos[293] = new photo(1895385,'4994','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0113-01.jpg',267,400,' MG 0113-01','http://www1.clikpic.com/paulwhite/images/_MG_0113-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[294] = new photo(1895391,'4994','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0347-01.jpg',595,397,' MG 0347-01','http://www1.clikpic.com/paulwhite/images/_MG_0347-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[295] = new photo(1895434,'4994','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0409-01.jpg',267,400,' MG 0409-01','http://www1.clikpic.com/paulwhite/images/_MG_0409-01_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[296] = new photo(120903,'11240','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0036.jpg',400,292,'White Tailed Antelope Squirrel','http://www1.clikpic.com/paulwhite/images/_MG_0036_thumb.jpg',130, 95,0, 1,'A charming little animal about six inches long, it holds its tail above its back when it runs exposing the white underside. It keeps watch by standing on its hind legs much like a meerkat. This particular one we saw in the Mojave Desert. It was extremely confiding (or very brave!) and allowed us to approach within a few feet.<br><br><br>\n','','','','','');
photos[297] = new photo(120925,'11240','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_99912.jpg',400,268,'Joshua Tree, Mojave Desert','http://www1.clikpic.com/paulwhite/images/_MG_99912_thumb.jpg',130, 87,0, 0,'This tree is found only in the Mojave Desert and the Joshua Tree National Park, both in California. The name was given by pioneering Mormons on the basis that the shape of the tree reminded them of the waving arms of Joshua pointing out the Promise Land. It is the largest of the yuccas and a member of the lily family.<br><br>\n','','','','','');
photos[298] = new photo(1895383,'11240','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0007-01.jpg',595,371,' MG 0007-01','http://www1.clikpic.com/paulwhite/images/_MG_0007-01_thumb.jpg',130, 81,0, 0,'','','','','','');
photos[299] = new photo(1895389,'11240','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0124-01.jpg',595,363,' MG 0124-01','http://www1.clikpic.com/paulwhite/images/_MG_0124-01_thumb.jpg',130, 79,0, 0,'','','','','','');
photos[300] = new photo(1895460,'11240','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9494-01.jpg',595,397,' MG 9494-01','http://www1.clikpic.com/paulwhite/images/_MG_9494-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[301] = new photo(1895384,'11240','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0008-01.jpg',595,397,' MG 0008-01','http://www1.clikpic.com/paulwhite/images/_MG_0008-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[302] = new photo(1895461,'11240','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9496-01.jpg',595,397,' MG 9496-01','http://www1.clikpic.com/paulwhite/images/_MG_9496-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[303] = new photo(1895462,'11240','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9651-01.jpg',595,397,' MG 9651-01','http://www1.clikpic.com/paulwhite/images/_MG_9651-01_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[304] = new photo(1895386,'11240','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0117-01.jpg',595,318,' MG 0117-01','http://www1.clikpic.com/paulwhite/images/_MG_0117-01_thumb.jpg',130, 69,0, 0,'','','','','','');
photos[305] = new photo(1895387,'11240','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_0123-01.jpg',595,345,' MG 0123-01','http://www1.clikpic.com/paulwhite/images/_MG_0123-01_thumb.jpg',130, 75,0, 0,'','','','','','');
photos[306] = new photo(120878,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_4139.jpg',400,212,'G. Bennett 250cc Anderson Kart, Oulton Park 2005','http://www1.clikpic.com/paulwhite/images/_MG_4139_thumb.jpg',130, 69,0, 0,'This was the first time that I had seen kart racing on an open circuit. These machines are really small but incredibly fast and as such are difficult to photograph. In the shot I was looking for the idea of \"man and machine” and the driver sharing the cockpit with the engine fitted the bill exactly. The repeated striking pattern of red and yellow was a bonus.','','','','','');
photos[307] = new photo(120879,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/Panel ARPS 3.jpg',400,264,'','http://www1.clikpic.com/paulwhite/images/Panel ARPS 3_thumb.jpg',130, 86,0, 1,'Having gained my LRPS in February 2005 I decided to attempt the ARPS distinction in September 2005. In this gallery I have shown the images from my successful ARPS Documentary panel. My LRPS panel was on the theme of \"motorsport”, although in fact an LRPS panel is not required to have a theme. My original intention was simply to add a further five prints to the ten LRPS prints but in the end for the sake of variety and to achieve a balanced panel only five of the original LRPS prints were retained.<br><br>\nIf anyone is considering attempting an RPS distinction full details appear on www.rps.org. My grateful thanks also to Andy Moore, Qualifications and Distinctions Deputy Manager, for his patient help and advice in getting my panel together.<br><br>\n','','','','','');
photos[308] = new photo(120880,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/Panel ARPS 31.jpg',400,264,'','http://www1.clikpic.com/paulwhite/images/Panel ARPS 31_thumb.jpg',130, 86,0, 0,'An ARPS panel has to be accompanied by a statement of intent not exceeding 150 words. Writing such a statement is not as easy as it sounds! Mine appears below. It would certainly not challenge the works of Shakespeare but I hope it conveys what I had set out to achieve.<br><br>\nMotorsport<br><br>\nThe purpose of the panel is to demonstrate some of the varieties and contrasts in motorsport.  Traditionally colour is dictated by the country’s racing colour (10) but nowadays more frequently by the colour scheme of the manufacturer (2,13) or sponsor (6,12,14). The race circuit’s smooth surface contrasts with the unpredictable dust, mud and water of rallies and motocross (1,3,13,15). Contrast the agility of the modern superbike (8,9,14) with the classic bike (5) although the determination of the riders is clearly the same.  Contrast also the power; the engine in the 1950s sports car (10) almost 20 times larger than that in the 250cc kart (7). <br>\nHowever the common desire is excellence in machine and competitor; a desire that inspires not only the “young chargers” in modern single-seaters (4,11) but also keeps machinery 50 years old or more competing, despite the clear risk to a cherished and valuable item (10).<br>\n','','','','','');
photos[309] = new photo(120881,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_7407.jpg',400,267,'Alex Storckenfeldt, Formula Audi, Oulton Park 2005<br><br>\n','http://www1.clikpic.com/paulwhite/images/_MG_7407_thumb.jpg',130, 87,0, 0,'For the sake of variety I was looking for a close-up of a modern single seater. Good weather tends to mean that drivers and riders fit dark visors to their full-face helmets and so prevent the \"eye contact\" so beloved of photographic judges.  I thought that the iridium visor used by Alex Storckenfeldt still created interest however. For those familiar with Oulton Park this was taken through the gap in the barrier at the crossing point at Lodge Corner and so there was only a very narrow “window” available to get the shot.','','','','','');
photos[310] = new photo(120882,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_7675 new 2.jpg',400,243,'Shaun Lynn and Stephen Gibson, Lister Jaguars, Oulton Park Gold Cup 2005<br><br>\n','http://www1.clikpic.com/paulwhite/images/_MG_7675 new 2_thumb.jpg',130, 79,0, 0,'I have always found it difficult to take motor racing images when there is more than one vehicle involved; the composition almost inevitably falls apart. However in this shot I liked the diagonal made by the vehicles with the “ stop” in the top right-hand corner formed by the marker posts. This image also enabled me to make comments about traditional racing colours (British Racing Green in this case) and the size of the engines compared to the kart.  The damage to Stephen Gibson\'s car also helped to make the point about the risk to the precious machinery.','','','','','');
photos[311] = new photo(120883,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/_MG_9217 (2).jpg',400,257,'Leon Haslam (Airwaves Ducati) and Dean Thomas (Hawk Kawasaki) British Superbikes, Oulton Park 2005','http://www1.clikpic.com/paulwhite/images/_MG_9217 (2)_thumb.jpg',130, 84,0, 0,'In this shot for variety I was looking for more than one bike. Pure luck plays a major part in this type of shot as the bikes are constantly and unpredictably changing their relative positions.  The only solution is to take lots of photographs and hope! This was the best of many similar shots I took on that day. A 500 millimetres lens compresses the perspective and emphasises the close racing.','','','','','');
photos[312] = new photo(120884,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/A.jpg',400,243,'Renault Clio, Sweet Lamb Stages, North Wales 2004','http://www1.clikpic.com/paulwhite/images/A_thumb.jpg',130, 79,0, 0,'Not an easy shot as I had to keep my balance on a tyre and plank to prevent sinking into the marshy ground! The backlighting picked out the water splash beautifully but meant that I had to use fill-in flash to open up the shadows at the front of the car. Flash photography in my experience is generally banned at circuit racing but rally drivers (and marshals) appear to have no problem with it.<br><br>\n','','','','','');
photos[313] = new photo(120885,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/Crossed_Up1.jpg',277,400,'Hawkstone Park 2004','http://www1.clikpic.com/paulwhite/images/Crossed_Up1_thumb.jpg',130, 188,0, 0,'This was taken on the straight where there is a series of undulations. As a result many of the bikes rear up in this dramatic fashion. It’s a case of trying to identify the likely spot where it’s going to happen and taking plenty of shots! When I first visited a motocross event I was struck by the fact that the spectators could get much closer to the track than is possible at circuit racing. Make sure that in addition to the normal telephoto lenses you take a wide-angle lens with you!','','','','','');
photos[314] = new photo(120887,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/CRW_3272.jpg',400,237,'Noriyuki Haga, Ducati World Superbike','http://www1.clikpic.com/paulwhite/images/CRW_3272_thumb.jpg',130, 77,0, 0,'A bit of a “mystery pic” this as it’s a World Superbike but at Oulton Park in May 2004. Haga and Leon Haslam rode their Renegade Ducatis in a “one off” wild card appearance in the British Superbike series at the circuit. This was the meeting that was famous for the \"wall of fire\" photograph of Haga avoiding a bike that had crashed in flames in front of him. I missed that shot!','','','','','');
photos[315] = new photo(120890,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/evo_381.jpg',400,243,'Mitsubisihi Evo, Astra Stages Rally 2003','http://www1.clikpic.com/paulwhite/images/evo_381_thumb.jpg',130, 79,0, 0,'Taken on a beautiful spring day in Cloclaenog Forest in North Wales (it rained on the following two years), this is a good example of how you cannot please all the people all the time! Having failed to find favour with the judge at the annual Chester Photographic Society competition, the print was subsequently accepted by the Lancashire and Cheshire Photographic Union for its exhibition and folio in 2004. It was also accepted by the Grange Photographic Society for its annual exhibition in 2005 when it was awarded \"highly commended\".<br><br>\n','','','','','');
photos[316] = new photo(120893,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/H.jpg',326,400,'Yukio Kagayama, Rizla-Suzuki, Oulton Park May 2004','http://www1.clikpic.com/paulwhite/images/H_thumb.jpg',130, 160,0, 0,'A very popular rider with the crowds whose lean- off style of riding makes him a dream to photograph.<br><br>\n','','','','','');
photos[317] = new photo(120894,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/J.jpg',400,306,'Classic Bike, Oulton Park 2005','http://www1.clikpic.com/paulwhite/images/J_thumb.jpg',130, 99,0, 0,'Compare the cornering style to the shot elsewhere in this gallery of Leon Haslam and Dean Richards at the same corner. The open face helmet, however, really gives you a chance to show the determination of the rider.<br><br>\n','','','','','');
photos[318] = new photo(120896,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/N.jpg',400,217,'James Thompson, Vauxhall Astra Coupe Oulton Park 2004<br><br>\n','http://www1.clikpic.com/paulwhite/images/N_thumb.jpg',130, 71,0, 0,'Taken at Clay Hill this is a relatively straightforward pan shot. The car was going uphill but tilting the camera emphasised the diagonal even more. James Thompson went on to win the BTCC Championship that year.','','','','','');
photos[319] = new photo(120897,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/O.jpg',400,201,'Formula BMW, Oulton Park 2004','http://www1.clikpic.com/paulwhite/images/O_thumb.jpg',130, 65,0, 0,'This was taken at Oulton Park when using its \"Island Circuit” configuration. It was simply a case of waiting for the right car to come out of the hairpin wide and cross the rumble strip in order to get the repeated red and white pattern. Tilting the camera gave the diagonal effect that added to the sense of speed.','','','','','');
photos[320] = new photo(120898,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/Porsche 50.jpg',400,284,'Mike Johnson, Porsche 911 SC Oulton Park May 2005','http://www1.clikpic.com/paulwhite/images/Porsche 50_thumb.jpg',130, 92,0, 0,'Again a relatively straightforward shot but the only true “head on” shot in the panel. In my experience because of the spectator restrictions there are not many circuits where an amateur photographer can get such a shot nowadays. One of the problems with such a shot is that a high shutter speed has to be used in order to keep the car sharp. Try working out for yourself how many feet a car travelling at 60 miles an hour covers in a second and you’ll see the problem! In this case I think that the wheel in the air and the tyre smoke still retain the impression of speed although the car is sharp.','','','','','');
photos[321] = new photo(120899,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/P.jpg',282,400,'Kawasaki, Hawkstone Park, March 2005','http://www1.clikpic.com/paulwhite/images/P_thumb.jpg',130, 184,0, 0,'I was looking for some \"human interest” shot to add to the panel. The open face helmets worn by the motocross riders give the opportunity to show the facial expression. This was one of the few shots that I thought was successful out of the many that I took at this corner.  The problem was the overhanging trees that blocked out a lot of light (being sprayed with mud from the bikes didn’t help either!)  By luck in this shot a shaft of light just caught the rider as he passed. <br><br>\n','','','','','');
photos[322] = new photo(120901,'11183','','gallery','http://www1.clikpic.com/paulwhite/images/C.jpg',400,273,'Aprilla Mille, Oulton Park 2005<br><br>\n','http://www1.clikpic.com/paulwhite/images/C_thumb.jpg',130, 89,0, 0,'Taken on the approach to Hill Top, the more powerful bikes tend to pull wheelies as they approach the crest of the hill. A relatively straightforward side pan shot, ideally I would like to have used a slower shutter speed but found that I had to keep the shutter speed quite high as the bike was not only moving from left to right (which the panning would take care of) but also upwards within the frame as the wheel left the ground (which the panning could not take into account). Here was the benefit of digital photography as I was immediately able to review the image I was taking and so spot the problem.','','','','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(126670,'1895463,1895426,1895425,1895418,1895417,1895416,1895415,1895405,1895404,1895398','British Superbikes','gallery');
galleries[1] = new gallery(126653,'1888798,1888797,1886905,1886904,1886895,1886894,1886265,1886264,1886263,1886262','BTCC Thruxton 2008','gallery');
galleries[2] = new gallery(126673,'1894875,1894874,1894873,1894872,1894871,1894868,1894867,1894866,1894865,1894864','China','gallery');
galleries[3] = new gallery(126656,'1895423,1895410,1888795,1886898,1886897,1886896,1886891,1885973,1885971,1885950','Classic Rally Cars','gallery');
galleries[4] = new gallery(126668,'1885955,1885954,1885943','Classic Scramble','gallery');
galleries[5] = new gallery(127079,'','Miscellaneous','gallery');
galleries[6] = new gallery(126669,'10766','MotoGP','gallery');
galleries[7] = new gallery(126650,'1895456,1895422,1895411,1894854,1889003,1889002,1889001,1889000,1888799,1885947','Nature','gallery');
galleries[8] = new gallery(126711,'1895454,1895453,1895452,1895447,1895424,1886888','New England','gallery');
galleries[9] = new gallery(126672,'1895446,1895445,1895444,1895443,1895436,1895435,1895413,1895412,1886840,1886839','New York','gallery');
galleries[10] = new gallery(11224,'120932','Niagara','gallery');
galleries[11] = new gallery(126654,'1885972,1885970,1885969,1885968,1885967','Rally Finland 2007','gallery');
galleries[12] = new gallery(126655,'1885965,1885962,1885959,1885957,1885956','Rally Sweden 2008','gallery');
galleries[13] = new gallery(126675,'1889051,1889050,1889045,1886903,1886902','Wales','gallery');
galleries[14] = new gallery(126674,'1886870,1886869','Wales Rally GB, 2007','gallery');
galleries[15] = new gallery(126713,'1894889,1894887,1894886,1894885,1894881,1894880,1894879,1894878,1894877,1886868','Xian Warriors','gallery');
galleries[16] = new gallery(1451,'1894780,1894779,1894778,1894777,1894776,1894775,1894774,1894773,1894772,1894771','Egypt','gallery');
galleries[17] = new gallery(1450,'1895472,1895471,1895464,1895414,1895409,1895406,1895403,1895402,1895401,1895400','Motorsports','gallery');
galleries[18] = new gallery(1452,'1895473,1895468,1888999,1886901,11091,11081,10780,10774,10768','Slovenia','gallery');
galleries[19] = new gallery(1478,'11095,11094,11093,11090,11089,11088,11079,11076','Venice','gallery');
galleries[20] = new gallery(1479,'1895469,1895433,1895432,1889049,1889048,1889047,1889046,1886092,1886091,1886089','Scotland','gallery');
galleries[21] = new gallery(1453,'10773','Barcelona','gallery');
galleries[22] = new gallery(4993,'120922','Toronto','gallery');
galleries[23] = new gallery(4994,'1895434,1895391,1895390,1895385,120911,120910,120909,120908,120907','Death Valley','gallery');
galleries[24] = new gallery(11240,'120903','California','gallery');
galleries[25] = new gallery(11183,'120879','ARPS Panel','gallery');


