/***************************************************************************
* 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('420554');
	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('420554');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			if ('gallery' != '') {
						if (photos[j].galleries_id != '') {
						document.write('<a href="' + photos[j].section_code + '_' + photos[j].galleries_id + '.html">');
						}
						else {
						document.write('<a href="gallery.html">');
						}
			}
			document.write('<img src="' + photos[j].src + '" width="' + photos[j].width + '" height="' + photos[j].height + '" class="mainhomepageimage" id="mainSample" name="mainSample" alt="' + photos[j].caption  + '" border="0">');
			if ('gallery' != '') {
				document.write('</a>');
			}
			break;
		}
	}
	
}

/***************************************************************************
* Show the next image in a gallery.  field = hidden field containing       *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function next(field,img) {

	debug('IN next');
	imageID = field.value;
	
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k= j + 1;
	while (nextImg < 0) {
		for (; k < photos.length; k++) {
			debug('testing image ' + k + ': gallery = ' + photos[k].galleries_id + '(existing: ' + photos[j].galleries_id + ')');
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				debug('setting  nextImg = ' + k);
				break;
			}
		}
		if (nextImg == -1) {
			k = 0;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);
	}


}


/***************************************************************************
* Set a new image on the gallery detail page given its array position      *
***************************************************************************/
function updateImage (nextImg, field,img) {
	debug('Updating image');
	if (!basic && !((0) || (0))) {
		debug('In updateImage');
		debug('setting  img src = ' + photos[nextImg].src);
		
					
			document.getElementById('imagePhoto').innerHTML = '<img class="mainphoto" src="' + photos[nextImg].src + ' " id="mainPic" name="mainPic" width="' + photos[nextImg].width + '" height="' + photos[nextImg].height + '" alt="' + photos[nextImg].caption + '">';
						field.value = photos[nextImg].id;
			document.getElementById('imageTitle').innerHTML = photos[nextImg].caption;
									document.title = 'Fifth Province Images: ' + 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(420950,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496EvenAgentSmithGetsTheBlues.jpg',496,374,'Even Agent Smith Gets The Blues','http://www4.clikpic.com/eugenedonohoe/images/496EvenAgentSmithGetsTheBlues_thumb.jpg',130, 98,0, 0,'This is my first composite image built late 2005. It was selected for the Hall of Fame on the My Four Thirds website in 2006 and also selected for publication in the My Four Thirds Book of Images awaiting publication.','','','','','');
photos[1] = new photo(420554,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496HardStationAug2006.jpg',496,374,'Hard Station','http://www4.clikpic.com/eugenedonohoe/images/496HardStationAug2006_thumb.jpg',130, 98,1, 1,'This image was selected for publication in the My Four Thirds Website Book of Images awaiting publication.','','','','','');
photos[2] = new photo(420982,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496ItsAllInTheGameExtraLevels.jpg',496,374,'It\'s All In The Game','http://www4.clikpic.com/eugenedonohoe/images/496ItsAllInTheGameExtraLevels_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[3] = new photo(551986,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/BetweenWorldsFifthProvince.jpg',496,369,'Between Worlds','http://www4.clikpic.com/eugenedonohoe/images/BetweenWorldsFifthProvince_thumb.jpg',130, 97,0, 0,'The writing  on the page states<br>\r\n<br>\r\n\"Go then<br>\r\nThere are worlds<br>\r\nOther than this<br>\r\nStephen King<br>\r\nThe Dark Tower\"<br>\r\n<br>\r\nThe size of the image upload precludes seeing it clearly.','','','','','');
photos[4] = new photo(552031,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Dweller FifthProvince.jpg',496,374,'Dweller On A Threshold','http://www4.clikpic.com/eugenedonohoe/images/Dweller FifthProvince_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[5] = new photo(569339,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Ghosts Flattened PKS2.jpg',496,374,'Ghosts','http://www4.clikpic.com/eugenedonohoe/images/Ghosts Flattened PKS2_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[6] = new photo(613267,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/LostTimeFP4OPKS5thProvince.jpg',496,374,'Lost Time','http://www4.clikpic.com/eugenedonohoe/images/LostTimeFP4OPKS5thProvince_thumb.jpg',130, 98,0, 0,'This composite image is dedicated to one of my favourite composers and guitarists, Preston Reed, and was partly inspired by his compositon of the same name from the album History Of Now.','','','','','');
photos[7] = new photo(764363,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/StrangeFog_2046070 copy.jpg',456,456,'Strange Fog','http://www4.clikpic.com/eugenedonohoe/images/StrangeFog_2046070 copy_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[8] = new photo(892907,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/AndTheJackOfHearts.jpg',496,374,'And The Jack Of Hearts ...','http://www4.clikpic.com/eugenedonohoe/images/AndTheJackOfHearts_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[9] = new photo(1217229,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Alienated (Green Manalishi).jpg',456,456,'Alienated (Green Manalishi)','http://www4.clikpic.com/eugenedonohoe/images/Alienated (Green Manalishi)_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[10] = new photo(1282361,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Doubles_OneForMyBabyAndOneMoreForTheRoad_7289169.jpg',456,456,'Doubles (One For My Baby And One More For The Road)','http://www4.clikpic.com/eugenedonohoe/images/Doubles_OneForMyBabyAndOneMoreForTheRoad_7289169_thumb.jpg',130, 130,0, 0,'This composite image was inspired by the great song One For My baby, sung by Frank Sinatra from the excellent album, Only The Lonely. The bar was empty. The clock and the doubles (both human and whiskey) were captured in my kitchen and added later through PSCS3.<br>\r\n<br>\r\nThe background for this composite was obtained in Josie Kavanagh\'s bar, Dublin, a.k.a. The Gravediggers, and quite famous for it\'s history and  hospitality, with especial thanks to it\'s owner Eugene, for permission and support.','','','','','');
photos[11] = new photo(1366382,'33457','','gallery','http://www4.clikpic.com/eugenedonohoe/images/SGIYE V 1 Sept.jpg',496,406,'Smoke Gets In Your Eyes','http://www4.clikpic.com/eugenedonohoe/images/SGIYE V 1 Sept_thumb.jpg',130, 106,0, 0,'Inspired by the song of the same name, further information can be obtained at <a href=\" http://en.wikipedia.org/wiki/Smoke_Gets_in_Your_Eyes\" title=\"Wikipedia\">Wikipedia</a>   for those interested.<p><br>\r\n<br>\r\nThe female form is entirely made from many layers of smoke with the exception of the face, which was \'loaned\' by the model, Yvonne.<br>\r\n<br>\r\nI want to thank Eugene, the owner of Josie Kavanagh’s bar a.k.a. The Gravediggers, (a very old and well preserved dark bar with loads of atmosphere), for allowing me to use his bar as a backdrop for a series of images. It’s quite a famous bar in Dublin and has been seen in many movies.','','','','','');
photos[12] = new photo(2531506,'127594','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Dreamscape 1 Swimming.jpg',496,374,'Dreamscape 1 (Swimming)','http://www4.clikpic.com/eugenedonohoe/images/Dreamscape 1 Swimming_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[13] = new photo(2576762,'127594','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Dreamscape 2.jpg',496,374,'Dreamscape 2 (It\'s Raining Hats)','http://www4.clikpic.com/eugenedonohoe/images/Dreamscape 2_thumb.jpg',130, 98,0, 1,'','','','','','');
photos[14] = new photo(2654984,'127594','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Dreamscape 3 Magic_8185127-Edit.jpg',496,374,'Dreamscape 3 (Magic)','http://www4.clikpic.com/eugenedonohoe/images/Dreamscape 3 Magic_8185127-Edit_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[15] = new photo(2794523,'127594','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Dreamscape4 More Magic_6033209.jpg',374,496,'Dreamscape 4 More Magic','http://www4.clikpic.com/eugenedonohoe/images/Dreamscape4 More Magic_6033209_thumb.jpg',130, 172,0, 0,'','','','','','');
photos[16] = new photo(4172960,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/OurLadyStarOfTheSeaDSC_0200.jpg',496,332,'Visitation','http://www4.clikpic.com/eugenedonohoe/images/OurLadyStarOfTheSeaDSC_0200_thumb.jpg',130, 87,0, 0,'','','','Dollymount, Dublin, Ireland.','','');
photos[17] = new photo(3084691,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Renvyle _B026841.jpg',496,496,'Renvyle','http://www4.clikpic.com/eugenedonohoe/images/Renvyle _B026841_thumb.jpg',130, 130,0, 0,'','','','Renvyle Beach, Connemara, Ireland','','');
photos[18] = new photo(3084689,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Beach 1 Square Renvyle_B016543.jpg',496,496,'Beach 1','http://www4.clikpic.com/eugenedonohoe/images/Beach 1 Square Renvyle_B016543_thumb.jpg',130, 130,0, 0,'','','','Renvyle Beach, Connemara, Ireland','','');
photos[19] = new photo(3084678,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Beach 2 Renvyle Square_B016536.jpg',496,496,'Beach 2','http://www4.clikpic.com/eugenedonohoe/images/Beach 2 Renvyle Square_B016536_thumb.jpg',130, 130,0, 0,'','','','Renvyle Beach, Connemara, Ireland','','');
photos[20] = new photo(3084671,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Beach 3_B016549.jpg',496,496,'Beach 3','http://www4.clikpic.com/eugenedonohoe/images/Beach 3_B016549_thumb.jpg',130, 130,0, 0,'','','','Renvyle Beach, Connemara, Ireland','','');
photos[21] = new photo(2950547,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Donabate Rope Container_A136317-Edit.jpg',496,496,'On The Waterfront','http://www4.clikpic.com/eugenedonohoe/images/Donabate Rope Container_A136317-Edit_thumb.jpg',130, 130,0, 0,'','','','Donabate, Co. Dublin, Ireland','','');
photos[22] = new photo(2950542,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Malahide Poles 2_A116214-Edit.jpg',496,496,'Malahide','http://www4.clikpic.com/eugenedonohoe/images/Malahide Poles 2_A116214-Edit_thumb.jpg',130, 130,0, 0,'','','','Co. Dublin, Ireland','','');
photos[23] = new photo(2488390,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/SanDiego_6124315-Edit copy.jpg',496,496,'San Diego','http://www4.clikpic.com/eugenedonohoe/images/SanDiego_6124315-Edit copy_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[24] = new photo(1841561,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/SunkenVersion2_C281092_0598.jpg',456,456,'Sunken','http://www4.clikpic.com/eugenedonohoe/images/SunkenVersion2_C281092_0598_thumb.jpg',130, 130,0, 0,'','','','Carlingford Lough Ireland.','','');
photos[25] = new photo(1607890,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/SunriseDollymount_B171553.jpg',450,450,'Sunrise At Dollymount','http://www4.clikpic.com/eugenedonohoe/images/SunriseDollymount_B171553_thumb.jpg',130, 130,0, 0,'','','','Dublin, Ireland','','');
photos[26] = new photo(1607812,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/2CreelsRopes_A191133.jpg',450,450,'Two Creels and Ropes','http://www4.clikpic.com/eugenedonohoe/images/2CreelsRopes_A191133_thumb.jpg',130, 130,0, 0,'','','','Plockton, Northwest Scotland','','');
photos[27] = new photo(893027,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/gcI_3317040.jpg',456,456,'Giants Causeway I','http://www4.clikpic.com/eugenedonohoe/images/gcI_3317040_thumb.jpg',130, 130,0, 0,'','','','Northern Ireland','','');
photos[28] = new photo(893031,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/gcII_3317040.jpg',456,456,'Giants Causeway II','http://www4.clikpic.com/eugenedonohoe/images/gcII_3317040_thumb.jpg',130, 130,0, 0,'','','','Northern Ireland','','');
photos[29] = new photo(764367,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/CoastalFog III_2046099.jpg',456,456,'Coastal Fog','http://www4.clikpic.com/eugenedonohoe/images/CoastalFog III_2046099_thumb.jpg',130, 130,0, 0,'','','','Skerries, Co. Dublin.','','');
photos[30] = new photo(893034,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/wATER_3186663.jpg',456,456,'Water','http://www4.clikpic.com/eugenedonohoe/images/wATER_3186663_thumb.jpg',130, 130,0, 0,'','','','M50 motorway, Dublin.','','');
photos[31] = new photo(418683,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496AWalkOnTheWildWestSide.jpg',496,369,'A Walk On The Wild West Side','http://www4.clikpic.com/eugenedonohoe/images/496AWalkOnTheWildWestSide_thumb.jpg',130, 97,0, 1,'This image was published in a calander competition 2006.','','','Mullaghmore, Ireland','','');
photos[32] = new photo(583582,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Clontarf_8183083.jpg',456,456,'Submerged','http://www4.clikpic.com/eugenedonohoe/images/Clontarf_8183083_thumb.jpg',130, 130,0, 0,'','','','Clontarf, Dublin.','','');
photos[33] = new photo(418760,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/469BlueBoat.jpg',496,386,'Blue Boat','http://www4.clikpic.com/eugenedonohoe/images/469BlueBoat_thumb.jpg',130, 101,0, 0,'This image won first place and was published in a calander competition 2005.','','','Malcesine, Lake Garda, Italy.','','');
photos[34] = new photo(583580,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Clontarf_8183081.jpg',456,456,'Steps I','http://www4.clikpic.com/eugenedonohoe/images/Clontarf_8183081_thumb.jpg',130, 130,0, 0,'','','','Clontarf, Dublin.','','');
photos[35] = new photo(418765,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496KITTIWAKE.jpg',496,374,'KITTIWAKE','http://www4.clikpic.com/eugenedonohoe/images/496KITTIWAKE_thumb.jpg',130, 98,0, 0,'','','','Dollymount , Dublin, Ireland.','','');
photos[36] = new photo(418778,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/ringsend1BW.jpg',456,456,'Ringsend 1','http://www4.clikpic.com/eugenedonohoe/images/ringsend1BW_thumb.jpg',130, 130,0, 0,'','','','Clontarf, Dublin, Ireland','','');
photos[37] = new photo(573321,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/BoyFishing_9073368.jpg',456,456,'Fishin\'','http://www4.clikpic.com/eugenedonohoe/images/BoyFishing_9073368_thumb.jpg',130, 130,0, 0,'','','','Umag, Istria, Croatia','','');
photos[38] = new photo(418764,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496DollymountStrand.jpg',496,374,'Mudflats','http://www4.clikpic.com/eugenedonohoe/images/496DollymountStrand_thumb.jpg',130, 98,0, 0,'','','','Dollymount, Dublin, Ireland.','','');
photos[39] = new photo(583585,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/JettyRevised21-1106.jpg',496,337,'Jetty','http://www4.clikpic.com/eugenedonohoe/images/JettyRevised21-1106_thumb.jpg',130, 88,0, 0,'','','','Germany','','');
photos[40] = new photo(418785,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/DollymountBridgeToned2.jpg',456,456,'Dollymount Bridge 1','http://www4.clikpic.com/eugenedonohoe/images/DollymountBridgeToned2_thumb.jpg',130, 130,0, 0,'','','','Dublin, Ireland.','','');
photos[41] = new photo(418791,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496LeavesInAnEarlyMorningLake.jpg',496,374,'Leaves In An Early Morning Lake','http://www4.clikpic.com/eugenedonohoe/images/496LeavesInAnEarlyMorningLake_thumb.jpg',130, 98,0, 0,'This image was selected for the Hall of Fame on the My Four Thirds Website in 2004.<br>\r\n<br>\r\nIt was also selected for publication in the My Four Thirds calander in 2005.','','','Botanic Gardens, Dublin, Ireland.','','');
photos[42] = new photo(418787,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496flow.jpg',496,374,'Flow','http://www4.clikpic.com/eugenedonohoe/images/496flow_thumb.jpg',130, 98,0, 0,'','','','Dublin, Ireland','','');
photos[43] = new photo(418797,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496stranded.jpg',496,374,'Stranded','http://www4.clikpic.com/eugenedonohoe/images/496stranded_thumb.jpg',130, 98,0, 0,'','','','Kilkee, Ireland.','','');
photos[44] = new photo(418804,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/WaterRocks_60414111.jpg',456,456,'Water And Rocks','http://www4.clikpic.com/eugenedonohoe/images/WaterRocks_60414111_thumb.jpg',130, 130,0, 0,'','','','Glendalough, Wicklow, Ireland.','','');
photos[45] = new photo(418793,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/rain.jpg',456,456,'Rain','http://www4.clikpic.com/eugenedonohoe/images/rain_thumb.jpg',130, 130,0, 0,'','','','St. Stephen\'s Green, Dublin, Ireland.','','');
photos[46] = new photo(418800,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496SunriseInTheWestOfIrelandTully.jpg',496,279,'Sunrise In The West Of Ireland','http://www4.clikpic.com/eugenedonohoe/images/496SunriseInTheWestOfIrelandTully_thumb.jpg',130, 73,0, 0,'','','','Tully, Connemara, Ireland.','','');
photos[47] = new photo(418806,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496withinwithout_7122586.jpg',496,374,'Within And Without','http://www4.clikpic.com/eugenedonohoe/images/496withinwithout_7122586_thumb.jpg',130, 98,0, 0,'','','','Vali Losinj, Croatia.','','');
photos[48] = new photo(2488388,'33456','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Minimalist2_C301218_0490 2.jpg',496,253,'Minimalist','http://www4.clikpic.com/eugenedonohoe/images/Minimalist2_C301218_0490 2_thumb.jpg',130, 66,0, 0,'','','','','','');
photos[49] = new photo(425717,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/ParisienneWalkways5_4270607.jpg',456,456,'Parisienne Walkways # 5','http://www4.clikpic.com/eugenedonohoe/images/ParisienneWalkways5_4270607_thumb.jpg',130, 130,0, 0,'This image was selected for the Hall of Fame on the MyFourThirds website in 2006. It also won an award on the deviantArt website.','','','','','');
photos[50] = new photo(425943,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/ParisienneWalkways6_4250504.jpg',456,456,'Parisienne Walkways # 6','http://www4.clikpic.com/eugenedonohoe/images/ParisienneWalkways6_4250504_thumb.jpg',130, 130,0, 0,'Detail: The Pompidou Centre','','','','','');
photos[51] = new photo(425947,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/ParisienneWalkways7_4250501.jpg',456,456,'Parisienne Walkways # 7','http://www4.clikpic.com/eugenedonohoe/images/ParisienneWalkways7_4250501_thumb.jpg',130, 130,0, 0,'Deatil: The Pompidou Centre','','','','','');
photos[52] = new photo(1841829,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Two Leaves_A070663.jpg',456,456,'Two Leaves','http://www4.clikpic.com/eugenedonohoe/images/Two Leaves_A070663_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[53] = new photo(423790,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496WindowsPorec.jpg',496,374,'Windows','http://www4.clikpic.com/eugenedonohoe/images/496WindowsPorec_thumb.jpg',130, 98,0, 0,'','','','Porec, Istria, Croatia.','','');
photos[54] = new photo(424756,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/CubeLabyrintheHombroich.jpg',344,456,'Cube','http://www4.clikpic.com/eugenedonohoe/images/CubeLabyrintheHombroich_thumb.jpg',130, 172,0, 0,'','','','Housed at Labyrinth, Hombroich, Germany','','');
photos[55] = new photo(423787,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496VerySlow BandW.jpg',496,374,'Very Slow','http://www4.clikpic.com/eugenedonohoe/images/496VerySlow BandW_thumb.jpg',130, 98,0, 1,'','','','Co. Clare, Ireland.','','');
photos[56] = new photo(583587,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Kotle_9053221.jpg',456,456,'Kotle','http://www4.clikpic.com/eugenedonohoe/images/Kotle_9053221_thumb.jpg',130, 130,0, 0,'Istria, Croatia','','','','','');
photos[57] = new photo(817934,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/CrossingOver_3036597.jpg',456,456,'Crossing Over','http://www4.clikpic.com/eugenedonohoe/images/CrossingOver_3036597_thumb.jpg',130, 130,0, 0,'','','','Luas Tracks, St. Stephen\'s Green, Dublin, Ireland.','','');
photos[58] = new photo(424763,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496Open Window.jpg',496,398,'Open Window','http://www4.clikpic.com/eugenedonohoe/images/496Open Window_thumb.jpg',130, 104,0, 0,'I was mugged by four men in this spot and was kindly helped by a passing woman on the other side of the canal who got two guys to call the police and who responded immediately, capturing two of the men and getting all of my photography gear back for me.  A happy outcome to an otherwise unpleasant event.','','','Phibsboro, Dublin. Ireland.','','');
photos[59] = new photo(425110,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496MostarBridge.jpg',496,257,'Mostar Bridge','http://www4.clikpic.com/eugenedonohoe/images/496MostarBridge_thumb.jpg',130, 67,0, 0,'','','','Mostar, Bosnia Herzoveginia','','');
photos[60] = new photo(424761,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Leaves_6111641.jpg',456,456,'Leaves','http://www4.clikpic.com/eugenedonohoe/images/Leaves_6111641_thumb.jpg',130, 130,0, 0,'','','','Botanic Gardens, Dublin, Ireland.','','');
photos[61] = new photo(424768,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/TurmHombroich.jpg',344,456,'Turm','http://www4.clikpic.com/eugenedonohoe/images/TurmHombroich_thumb.jpg',130, 172,0, 0,'','','','Hombroich, Germany.','','');
photos[62] = new photo(2488394,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Walk Half Dome 1.jpg',496,496,'Walking To Half Dome','http://www4.clikpic.com/eugenedonohoe/images/Walk Half Dome 1_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[63] = new photo(2488400,'33458','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Walk Half Dome 2.jpg',496,496,'Walking To Half Dome II','http://www4.clikpic.com/eugenedonohoe/images/Walk Half Dome 2_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[64] = new photo(425934,'33459','','gallery','http://www4.clikpic.com/eugenedonohoe/images/IW1CallingYouA_4150286.jpg',456,456,'IW#1 I Am Calling You','http://www4.clikpic.com/eugenedonohoe/images/IW1CallingYouA_4150286_thumb.jpg',130, 130,0, 0,'','','','The Irish Film Institute, Dublin, Ireland.','','');
photos[65] = new photo(425465,'33459','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496DefenceBreach.jpg',496,190,'IW#2 Defence Breach','http://www4.clikpic.com/eugenedonohoe/images/496DefenceBreach_thumb.jpg',130, 50,0, 0,'Digitally manipulated image.','','','Roman ruins at Pula, Istria, Croatia.','','');
photos[66] = new photo(425470,'33459','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Transporter1.jpg',456,456,'IW#3 Transporter','http://www4.clikpic.com/eugenedonohoe/images/Transporter1_thumb.jpg',130, 130,0, 0,'','','','City Hall, Dublin, Ireland.','','');
photos[67] = new photo(425472,'33459','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Jail1.jpg',344,456,'IW#4 Jail','http://www4.clikpic.com/eugenedonohoe/images/Jail1_thumb.jpg',130, 172,0, 0,'','','','Kilmainham Jail, Dublin, Ireland.','','');
photos[68] = new photo(425468,'33459','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Beam2.jpg',344,456,'IW#5 Beam','http://www4.clikpic.com/eugenedonohoe/images/Beam2_thumb.jpg',130, 172,0, 0,'','','','Guinness Hop Store, Dublin, Ireland.','','');
photos[69] = new photo(425471,'33459','','gallery','http://www4.clikpic.com/eugenedonohoe/images/ThereIsHope.jpg',344,456,'IW#6 There Is Hope','http://www4.clikpic.com/eugenedonohoe/images/ThereIsHope_thumb.jpg',130, 172,0, 0,'','','','Dublin, Ireland','','');
photos[70] = new photo(425454,'33459','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496FastExitAug2006.jpg',496,374,'IW#7 Fast Exit','http://www4.clikpic.com/eugenedonohoe/images/496FastExitAug2006_thumb.jpg',130, 98,0, 1,'Model: Megan Harvey','','','Scotland','','');
photos[71] = new photo(818011,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/MusiciansClare05_7198817.jpg',456,456,'Hot Club Du Fumee','http://www4.clikpic.com/eugenedonohoe/images/MusiciansClare05_7198817_thumb.jpg',130, 130,0, 0,'','','','Galway, Ireland.','','');
photos[72] = new photo(818027,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/pr06_4280697.jpg',456,456,'Preston Reed','http://www4.clikpic.com/eugenedonohoe/images/pr06_4280697_thumb.jpg',130, 130,0, 1,'Preston Reed is one of my all time favourite guitarists and composers. He is undoubtedly one of the greatest guitar innovators of modern times with his unique sound of complex guitar arrangements  that draws on jazz, blues, folk, classical and his own individual blend of all of these styles.<br>\r\n<br>\r\nCheck out Preston\'s website via my links page where you can read more about him and also listen to his music live on the web.<br>\r\n<br>\r\nThis image was taken during one of Preston\'s highly acclaimed guitar recitals in the Green Room, Dublin.','','','','','');
photos[73] = new photo(422648,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Waitin\'Blues.jpg',345,456,'Waitin\' Blues','http://www4.clikpic.com/eugenedonohoe/images/Waitin\'Blues_thumb.jpg',130, 172,0, 0,'Self-portrait','','','','','');
photos[74] = new photo(422683,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Kiteflying.jpg',338,456,'Taut','http://www4.clikpic.com/eugenedonohoe/images/Kiteflying_thumb.jpg',130, 175,0, 0,'','','','Dollymount Strand, Dublin, Ireland.','','');
photos[75] = new photo(422686,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/pr10_4280712.jpg',344,456,'Preston Reed','http://www4.clikpic.com/eugenedonohoe/images/pr10_4280712_thumb.jpg',130, 172,0, 0,'Preston Reed is one of my all time favourite guitarists and composers. He is undoubtedly one of the greatest guitar innovators of modern times with his unique sound of complex guitar arrangements  that draws on jazz, blues, folk, classical and his own individual blend of all of these styles.<br>\r\n<br>\r\nCheck out Preston\'s website via my links page where you can read more about him and also listen to his music live on the web.<br>\r\n<br>\r\nThis image was taken during one of Preston\'s highly acclaimed guitar recitals in the Green Room, Dublin.','','','The Green Room, Dublin, Ireland.','','');
photos[76] = new photo(422607,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/BuskerPlaceDesVosges_42404641.jpg',456,456,'Busker','http://www4.clikpic.com/eugenedonohoe/images/BuskerPlaceDesVosges_42404641_thumb.jpg',130, 130,0, 0,'','','','Place Des Vosges, Paris.','','');
photos[77] = new photo(686459,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/LapSlideBlues_C225728.jpg',496,374,'Lap Slide Blues','http://www4.clikpic.com/eugenedonohoe/images/LapSlideBlues_C225728_thumb.jpg',130, 98,0, 0,'A well respected street musician ..','','','Grafton Street, Dublin, Ireland.','','');
photos[78] = new photo(817993,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/ClosingTime.jpg',456,456,'Closing Time','http://www4.clikpic.com/eugenedonohoe/images/ClosingTime_thumb.jpg',130, 130,0, 0,'','','','J.J. Smyth\'s, Dublin, Ireland','','');
photos[79] = new photo(422616,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496OBrotherWhereArtThou.jpg',496,374,'O Brother, Where Art Thou?','http://www4.clikpic.com/eugenedonohoe/images/496OBrotherWhereArtThou_thumb.jpg',130, 98,0, 0,'A visitor checks out the  photography exhibition entitled The Architects Brother by the Internationally renowned American Artists, Robert and Shana ParkeHarrison.','','','The Gallery Of Photography, Temple Bar, Dublin, Ireland.','','');
photos[80] = new photo(686447,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/AuRevoir2006_1025800.jpg',456,456,'Au Revoir 2006','http://www4.clikpic.com/eugenedonohoe/images/AuRevoir2006_1025800_thumb.jpg',130, 130,0, 0,'','','','St. Andrews, Scotland','','');
photos[81] = new photo(422629,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496BoyOnBikeRovinj.jpg',496,374,'Boy On Bike','http://www4.clikpic.com/eugenedonohoe/images/496BoyOnBikeRovinj_thumb.jpg',130, 98,0, 0,'This image won a travel competition.','','','Rovinj, Istria, Croatia.','','');
photos[82] = new photo(422645,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496Liberte.jpg',496,368,'Liberte','http://www4.clikpic.com/eugenedonohoe/images/496Liberte_thumb.jpg',130, 96,0, 0,'This image was taken on the 7th July 2004 at the Dublin Gay Pride March. At the time I was huddled in a doorway trying to escape this sudden,  torrential downpour. <br>\r\n<br>\r\nI captured this as a documentary style image and also because the scene reminded me of the famous painting Liberte by Delacroix.','','','Dublin, Ireland.','','');
photos[83] = new photo(422646,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496AFineSoftDay.jpg',496,380,'A Fine Soft Day','http://www4.clikpic.com/eugenedonohoe/images/496AFineSoftDay_thumb.jpg',130, 100,0, 0,'','','','Kilkee, Co. Clare, Ireland.','','');
photos[84] = new photo(422647,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496Westerns.jpg',496,433,'Westerns','http://www4.clikpic.com/eugenedonohoe/images/496Westerns_thumb.jpg',130, 113,0, 0,'Foreground: Mark Donohoe<br>\r\nBackground: Megan Harvey','','','Co. Clare, Ireland.','','');
photos[85] = new photo(422684,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Caroline\'sHuddleAndObservingGirlRovinj.jpg',344,456,'Huddle','http://www4.clikpic.com/eugenedonohoe/images/Caroline\'sHuddleAndObservingGirlRovinj_thumb.jpg',130, 172,0, 0,'In memory of Caroline Skilbred, R.I.P.','','','Rovinj, Istria, Croatia','','');
photos[86] = new photo(2488392,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/SF Cable Car_6012865-Edit.jpg',496,496,'Cable Car','http://www4.clikpic.com/eugenedonohoe/images/SF Cable Car_6012865-Edit_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[87] = new photo(422608,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/DiggingForRagworm.jpg',456,456,'Ragworm Dig','http://www4.clikpic.com/eugenedonohoe/images/DiggingForRagworm_thumb.jpg',130, 130,0, 0,'','','','Dollymount, Dublin, Ireland.','','');
photos[88] = new photo(2488379,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Invitation.jpg',496,496,'Invitation','http://www4.clikpic.com/eugenedonohoe/images/Invitation_thumb.jpg',130, 130,0, 0,'','','','San Francisco','','');
photos[89] = new photo(2488401,'33460','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Yesterday Is Here Neat_7064532-Edit copy.jpg',496,374,'Yesterday Is Here (Neat)','http://www4.clikpic.com/eugenedonohoe/images/Yesterday Is Here Neat_7064532-Edit copy_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[90] = new photo(421301,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Witness.jpg',456,456,'Witness','http://www4.clikpic.com/eugenedonohoe/images/Witness_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[91] = new photo(421295,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/KindaBlue.jpg',456,456,'Kind Of Blue','http://www4.clikpic.com/eugenedonohoe/images/KindaBlue_thumb.jpg',130, 130,0, 0,'Miles Davis\' album, Kind Of Blue, is one of my all-time favourite albums.','','','','','');
photos[92] = new photo(421329,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/PolesApart.jpg',456,456,'Poles Apart','http://www4.clikpic.com/eugenedonohoe/images/PolesApart_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[93] = new photo(421321,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496RobotInSmokingJacket.jpg',496,374,'Robot In Smoking Jacket','http://www4.clikpic.com/eugenedonohoe/images/496RobotInSmokingJacket_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[94] = new photo(421316,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496EvenPeppersDoIt.jpg',496,374,'Even Peppers Do it','http://www4.clikpic.com/eugenedonohoe/images/496EvenPeppersDoIt_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[95] = new photo(421330,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/496NutsWithLaughter.jpg',496,374,'Nuts With Laughter','http://www4.clikpic.com/eugenedonohoe/images/496NutsWithLaughter_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[96] = new photo(421327,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/DeleriumTremens.jpg',456,456,'Delerium Tremens','http://www4.clikpic.com/eugenedonohoe/images/DeleriumTremens_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[97] = new photo(764382,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Fissure_C175574.jpg',456,456,'Fissure','http://www4.clikpic.com/eugenedonohoe/images/Fissure_C175574_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[98] = new photo(817966,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/TheSecretLifeOfWater_2036019.jpg',456,456,'The Secret Life Of Water','http://www4.clikpic.com/eugenedonohoe/images/TheSecretLifeOfWater_2036019_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[99] = new photo(421305,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/AlexanderDumas.jpg',337,456,'Alexander Dumas','http://www4.clikpic.com/eugenedonohoe/images/AlexanderDumas_thumb.jpg',130, 176,0, 0,'','','','','','');
photos[100] = new photo(817959,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Equus_3036521.jpg',456,456,'Equus','http://www4.clikpic.com/eugenedonohoe/images/Equus_3036521_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[101] = new photo(3697480,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/WallCamP4047488.jpg',456,456,'Watcher','http://www4.clikpic.com/eugenedonohoe/images/WallCamP4047488_thumb.jpg',130, 130,0, 0,'','','','','','');
photos[102] = new photo(3702332,'33455','','gallery','http://www4.clikpic.com/eugenedonohoe/images/MetropolitanWalk_2077238.jpg',456,456,'Metropolitan Walk','http://www4.clikpic.com/eugenedonohoe/images/MetropolitanWalk_2077238_thumb.jpg',130, 130,0, 1,'','','','','','');
photos[103] = new photo(733168,'56508','','gallery','http://www4.clikpic.com/eugenedonohoe/images/NewFrontCover1.jpg',490,239,'Spirit - Cover','http://www4.clikpic.com/eugenedonohoe/images/NewFrontCover1_thumb.jpg',130, 63,0, 1,'','','','','','');
photos[104] = new photo(733170,'56508','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Inside1&21.jpg',490,237,'Pages - 1 & 2','http://www4.clikpic.com/eugenedonohoe/images/Inside1&21_thumb.jpg',130, 63,0, 0,'','','','','','');
photos[105] = new photo(733172,'56508','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Page 3&4.jpg',490,240,'Pages 3 & 4','http://www4.clikpic.com/eugenedonohoe/images/Page 3&4_thumb.jpg',130, 64,0, 0,'','','','','','');
photos[106] = new photo(733173,'56508','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Page 5&6.jpg',490,236,'Pages 5 & 6','http://www4.clikpic.com/eugenedonohoe/images/Page 5&6_thumb.jpg',130, 63,0, 0,'','','','','','');
photos[107] = new photo(733175,'56508','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Page 7&8.jpg',490,237,'Pages 7 & 8','http://www4.clikpic.com/eugenedonohoe/images/Page 7&8_thumb.jpg',130, 63,0, 0,'','','','','','');
photos[108] = new photo(733177,'56508','','gallery','http://www4.clikpic.com/eugenedonohoe/images/Page 9&10.jpg',490,239,'Pages 9 & 10','http://www4.clikpic.com/eugenedonohoe/images/Page 9&10_thumb.jpg',130, 63,0, 0,'','','','','','');
photos[109] = new photo(733179,'56508','','gallery','http://www4.clikpic.com/eugenedonohoe/images/CD.jpg',450,455,'CD','http://www4.clikpic.com/eugenedonohoe/images/CD_thumb.jpg',130, 131,0, 0,'','','','','','');
photos[110] = new photo(733180,'56508','','gallery','http://www4.clikpic.com/eugenedonohoe/images/InsideBackTray.jpg',490,380,'Inside Back Tray','http://www4.clikpic.com/eugenedonohoe/images/InsideBackTray_thumb.jpg',130, 101,0, 0,'','','','','','');
photos[111] = new photo(733182,'56508','','gallery','http://www4.clikpic.com/eugenedonohoe/images/BackCover.jpg',490,380,'Back Cover','http://www4.clikpic.com/eugenedonohoe/images/BackCover_thumb.jpg',130, 101,0, 0,'','','','','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(33457,'420554','Crossroads','gallery');
galleries[1] = new gallery(127594,'2576762','Series Of Dreams','gallery');
galleries[2] = new gallery(33456,'418683','Water & Coastal','gallery');
galleries[3] = new gallery(33458,'423787','Inland & Urban','gallery');
galleries[4] = new gallery(33459,'425454','Interior Worlds','gallery');
galleries[5] = new gallery(33460,'818027','People','gallery');
galleries[6] = new gallery(33455,'3702332','Abstracts','gallery');
galleries[7] = new gallery(56508,'733168','Album Photography','gallery');

