/***************************************************************************
* 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('1580333,1454150,1435153,1400921,1400915,1380011,1378616,1372094,1372058,1371976,1371880,1371867,1371837,1368433,1364161,1364160,1364157');
	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('1580333,1454150,1435153,1400921,1400915,1380011,1378616,1372094,1372058,1371976,1371880,1371867,1371837,1368433,1364161,1364160,1364157');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			if ('gallery' != '') {
						if (photos[j].galleries_id != '') {
						document.write('<a href="' + photos[j].section_code + '_' + photos[j].galleries_id + '.html">');
						}
						else {
						document.write('<a href="gallery.html">');
						}
			}
			document.write('<img src="' + photos[j].src + '" width="' + photos[j].width + '" height="' + photos[j].height + '" class="mainhomepageimage" id="mainSample" name="mainSample" alt="' + photos[j].caption  + '" border="0">');
			if ('gallery' != '') {
				document.write('</a>');
			}
			break;
		}
	}
	
}

/***************************************************************************
* Show the next image in a gallery.  field = hidden field containing       *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function next(field,img) {

	debug('IN next');
	imageID = field.value;
	
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k= j + 1;
	while (nextImg < 0) {
		for (; k < photos.length; k++) {
			debug('testing image ' + k + ': gallery = ' + photos[k].galleries_id + '(existing: ' + photos[j].galleries_id + ')');
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				debug('setting  nextImg = ' + k);
				break;
			}
		}
		if (nextImg == -1) {
			k = 0;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);
	}


}


/***************************************************************************
* Set a new image on the gallery detail page given its array position      *
***************************************************************************/
function updateImage (nextImg, field,img) {
	debug('Updating image');
	if (!basic && !((1) || (1))) {
		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 = 'Aldo Belmonte PHOTOGRAPHY: ' + photos[nextImg].caption;
										/* apply 'blank' classname to element where */			if ( photos[nextImg].caption == '') {
				document.getElementById('imageTitle').style.className = 'blank';
			}
			else {
				document.getElementById('imageTitle').style.className = 'normal';
			}
						temp = '';
			if (photos[nextImg].description != '') {
				temp = temp +  '<p id="imageDescription">' + photos[nextImg].description + '</p>';
			}
						if (photos[nextImg].photo_ref != '') {
				temp = temp + '<p class="imageinfo" id="imageRef"><strong>Ref: </strong>' + photos[nextImg].photo_ref + '</p>';
			}
						if (photos[nextImg].takendate != '') {
				debug('Resetting taken date');
				temp = temp + '<p class="imageinfo" id="imageDate"><strong>Date: </strong>' + photos[nextImg].takendate + '</p>';
			}
			
			if (photos[nextImg].location != '') {
				debug('Resetting location');
				temp = temp + '<p class="imageinfo" id="imageLocation"><strong>Location: </strong>' +  photos[nextImg].location + '</p>';
			}
			
			if (photos[nextImg].photographer != '') {
				debug('Resetting photographer');
				temp = temp + '<p class="imageinfo" id="imagePhotographer"><strong>Photographer: </strong>' + photos[nextImg].photographer + '</p>';
			}
			if (temp != '') {				temp = temp + '<div class="spacer"></div>';			}					if (temp == '') {
			document.getElementById('imageDetails').style.display = 'none';
		}
		else {
			document.getElementById('imageDetails').style.display = 'block';
		}
		document.getElementById('imageDetails').innerHTML =temp;	
		
	}
	else {
		debug('Redirecting to id ' + photos[nextImg].id);
		window.location = 'photo_' + photos[nextImg].id + '.html';
	}
}

/***************************************************************************
* Show the previous image for a gallery. field = hidden field containing   *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function previous(field,img) {


	imageID = field.value;
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k = j -1;
	while (nextImg < 0) {
		for (; k >= 0; k--) {
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				break;
			}
		}
		if (nextImg == -1) {
			k = photos.length -1;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);	
	}
}

/***************************************************************************
* Pick a photo at random from the featured images of a gallery.
        *
* Gallery_id = id of gallery to choose                                     *
* 
 img = reference to html image                                       *
* in which to show image                                                   *
***************************************************************************/
function showGalleryImage(gallery_id, img) {
	debug('Gallery = ' + gallery_id);
	for (i = 0; i < galleries.length; i++) {
		if (galleries[i].id == gallery_id) {
			imageID = randomListVal(galleries[i].featured_images);
				for (j = 0; j < photos.length; j++) {
					if (photos[j].id == imageID) {
						
						img.src = photos[j].thumbnail;
						img.width = photos[j].thumbnail_width;
						img.height = photos[j].thumbnail_height;
						
						break;
					}
				}
			break;
		}
	} 
	}

/***************************************************************************
* If we have dynamic HTML                                                  *
*  replace the galleries link with a list that                             *
* doesn't include the current gallery                                      *
***************************************************************************/
function showGalleries(gallery_id) {
	debug('Showing links for gallery ' + gallery_id);
	
	if (!basic) {
		temp = '';
		for (i = 0; i < galleries.length; i++) {
			debug('Testing gallery ' + galleries[i].id);
			
			if (galleries[i].id != gallery_id) {
				debug('Adding link');
				if (temp != '') {
					temp = temp + ' | ';
				}
				temp = temp + '<a href="gallery_' + galleries[i].id + '.html">' + galleries[i].title + '</a>';
			}
		}
		document.all.galleryLinks.innerHTML = 'Other galleries: ' + temp;
	}
}
/***************************************************************************
* Create the array of Photo objects                                        *
***************************************************************************/
photos = new Array();
photos[0] = new photo(1362344,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Adrigole-Church-[tn]3.jpg',432,260,'Adrigole Church','http://www4.clikpic.com/aldobelmonte/images/Adrigole-Church-[tn]3_thumb.jpg',130, 78,0, 1,'Adrigole Church is seen here against the backdrop of Hungry Hill, covered in a rare layer of snow.','','','Beara','','');
photos[1] = new photo(1368433,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Post Box [TN].jpg',432,291,'irish postbox','http://www4.clikpic.com/aldobelmonte/images/Post Box [TN]_thumb.jpg',130, 88,1, 0,'','','','','','');
photos[2] = new photo(1371837,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/493-E6-[TN] 1.jpg',432,285,'\'Olive\' Tree','http://www4.clikpic.com/aldobelmonte/images/493-E6-[TN] 1_thumb.jpg',130, 86,1, 1,'','','','','','');
photos[3] = new photo(1380011,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Boreen-[tn]2.jpg',432,276,'Boreen','http://www4.clikpic.com/aldobelmonte/images/Boreen-[tn]2_thumb.jpg',130, 83,1, 1,'I never went out specifically to take pictures of roads.<br>\r\n<br>\r\nWalking the lanes of  the Beara Peninsula, I would look up, and there the image would be.<br>\r\n<br>\r\nThe local name for a small road is \'boreen\'.','','','','','');
photos[4] = new photo(1380050,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Car-in-mist-[TN]1.jpg',432,266,'\'Soft Day\'','http://www4.clikpic.com/aldobelmonte/images/Car-in-mist-[TN]1_thumb.jpg',130, 80,0, 0,'','','','','','');
photos[5] = new photo(1400915,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/OldCitroen 213-B3-[TN].jpg',432,276,'Old Citroen','http://www4.clikpic.com/aldobelmonte/images/OldCitroen 213-B3-[TN]_thumb.jpg',130, 83,1, 1,'Only in Ireland could a dumped car look like a piece of art...','','','','','');
photos[6] = new photo(1400919,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Road-2-[TN].jpg',432,258,'Molly','http://www4.clikpic.com/aldobelmonte/images/Road-2-[TN]_thumb.jpg',130, 78,0, 0,'','','','','','');
photos[7] = new photo(1400920,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Tin-Mine-[TN].jpg',432,287,'Tin Mine','http://www4.clikpic.com/aldobelmonte/images/Tin-Mine-[TN]_thumb.jpg',130, 86,0, 1,'','','','Allihies, West Cork','','');
photos[8] = new photo(1404807,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/568-D6-[cobhChurch]-[TN].jpg',430,285,'Cobh Cathedral','http://www4.clikpic.com/aldobelmonte/images/568-D6-[cobhChurch]-[TN]_thumb.jpg',130, 86,0, 1,'','','','','','');
photos[9] = new photo(1435153,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/HH.Tradrask[TN].jpg',432,280,'Hungry Hill','http://www4.clikpic.com/aldobelmonte/images/HH_thumb.Tradrask[TN].jpg',130, 84,1, 1,'Hungry Hill dominates the landscape here.<br>\r\n<br>\r\nHere, seen from Trafrask on the Beara Peninsula, with \'Serrach\' in the foreground.','','','','','');
photos[10] = new photo(1457317,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Boreen-2-[TN].jpg',432,278,'boreen 2','http://www4.clikpic.com/aldobelmonte/images/Boreen-2-[TN]_thumb.jpg',130, 84,0, 1,'This is the small lane that takes us to Jerry and Kathleen, our nearest neighbours.<br>\r\n<br>\r\nIt also became a friend.','','','','','');
photos[11] = new photo(1527582,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/olive-tree3-[TN].jpg',432,226,'\'olive\' tree 3','http://www4.clikpic.com/aldobelmonte/images/olive-tree3-[TN]_thumb.jpg',130, 68,0, 1,'','','','','','');
photos[12] = new photo(1364157,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/568 C6 [cobhChurch] copy.jpg',400,269,'cobh','http://www4.clikpic.com/aldobelmonte/images/568 C6 [cobhChurch] copy_thumb.jpg',130, 87,1, 1,'','','','','','');
photos[13] = new photo(1364158,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/tn.jpg',432,275,'\'erratic\'','http://www4.clikpic.com/aldobelmonte/images/tn_thumb.jpg',130, 83,0, 1,'\"...a rock left behind once the glacier melted...\" I was told.<br>\r\n<br>\r\nHungry Hill is in the background','','','Adrigole, Beara','','');
photos[14] = new photo(1362339,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Road 3 [TN].jpg',432,287,'roosk','http://www4.clikpic.com/aldobelmonte/images/Road 3 [TN]_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[15] = new photo(1380063,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Boreen 4[TN].jpg',268,432,'Boreen 4','http://www4.clikpic.com/aldobelmonte/images/Boreen 4[TN]_thumb.jpg',130, 210,0, 0,'','','','','','');
photos[16] = new photo(1400917,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Hayrick-[TN].jpg',285,432,'Hayrick','http://www4.clikpic.com/aldobelmonte/images/Hayrick-[TN]_thumb.jpg',130, 197,0, 0,'','','','','','');
photos[17] = new photo(1400918,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/\'Leitrim-Beg\'-[TN].jpg',288,432,'\'Leitrim Beg\'','http://www4.clikpic.com/aldobelmonte/images/\'Leitrim-Beg\'-[TN]_thumb.jpg',130, 195,0, 0,'Leitrim Beg is a standing stone with real presence.<br>\r\n<br>\r\nStanding close to it, you feel it\'s alive.','','','Adrigole, West Cork','','');
photos[18] = new photo(1435145,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/PBoxIceCream [TN].jpg',286,432,'post box','http://www4.clikpic.com/aldobelmonte/images/PBoxIceCream [TN]_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[19] = new photo(1456650,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/462-D1-[TN].jpg',290,432,'road 3','http://www4.clikpic.com/aldobelmonte/images/462-D1-[TN]_thumb.jpg',130, 194,0, 0,'','','','','','');
photos[20] = new photo(1457319,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/olive tree 2[TN].jpg',300,432,'\'olive tree\' 2','http://www4.clikpic.com/aldobelmonte/images/olive tree 2[TN]_thumb.jpg',130, 187,0, 0,'','','','','','');
photos[21] = new photo(1456563,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Boreen-3-[TN].jpg',308,432,'boreen 3','http://www4.clikpic.com/aldobelmonte/images/Boreen-3-[TN]_thumb.jpg',130, 182,0, 0,'...and this boreen would take us to see Timmy.<br>\r\n<br>\r\nHe was a dairy farmer, and our neighbour.<br>\r\n <br>\r\nHe became a very special friend.','','','','','');
photos[22] = new photo(1457336,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/Tin-Mine-2-[TN].jpg',286,432,'tin mine 2','http://www4.clikpic.com/aldobelmonte/images/Tin-Mine-2-[TN]_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[23] = new photo(1652061,'84880','','gallery','http://www4.clikpic.com/aldobelmonte/images/487-F3-[TN].jpg',292,432,'CLOUDS','http://www4.clikpic.com/aldobelmonte/images/487-F3-[TN]_thumb.jpg',130, 192,0, 0,'','','','','','');
photos[24] = new photo(1371867,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/TN2.jpg',432,274,'gannets','http://www4.clikpic.com/aldobelmonte/images/TN2_thumb.jpg',130, 82,1, 1,'I spent a short time working as a fisherman on a Castletownbere trawler.<br>\r\n<br>\r\nThis image was taken whilst we were several hundred miles west of the Irish coast.','','','','','');
photos[25] = new photo(1383285,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/Small Boats[TN].jpg',432,303,'Small Boats','http://www4.clikpic.com/aldobelmonte/images/Small Boats[TN]_thumb.jpg',130, 91,0, 1,'...out of the mist of a \'soft day\' came this image.....in Glengariff harbour.','','','West Cork','','');
photos[26] = new photo(1407426,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/167-G2=-[Rio][TN].jpg',432,287,'\'Rio\'','http://www4.clikpic.com/aldobelmonte/images/167-G2=-[Rio][TN]_thumb.jpg',130, 86,0, 1,'Christ blessing the fleet.   <br>\r\n<br>\r\nThis statue always reminds me of the statue of Christ in Rio de Janeiro.','','','Castletownbere, West Cork, Beara Peninsula','','');
photos[27] = new photo(1434941,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/\'Cahermore [TN].jpg',432,284,'Cahermore','http://www4.clikpic.com/aldobelmonte/images/\'Cahermore [TN]_thumb.jpg',130, 85,0, 1,'','','','','','');
photos[28] = new photo(1454150,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/sailing Boat in Bantry Bay -[TN].jpg',432,284,'Bantry Bay','http://www4.clikpic.com/aldobelmonte/images/sailing Boat in Bantry Bay -[TN]_thumb.jpg',130, 85,1, 1,'...I looked up and saw this shape gliding past...','','','West Cork','','');
photos[29] = new photo(1580333,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/Wreck[tn].jpg',432,288,'wreck at Roancarrig','http://www4.clikpic.com/aldobelmonte/images/Wreck[tn]_thumb.jpg',130, 87,1, 1,'','','','','','');
photos[30] = new photo(1646298,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/Fastnet-20E5[TN].jpg',400,283,'fastnet lighthouse','http://www4.clikpic.com/aldobelmonte/images/Fastnet-20E5[TN]_thumb.jpg',130, 92,0, 1,'I took this photo from a helicopter on a very rainy day.','','','','','');
photos[31] = new photo(1652030,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/474-a3-[TN].jpg',432,284,'lone boatman','http://www4.clikpic.com/aldobelmonte/images/474-a3-[TN]_thumb.jpg',130, 85,0, 1,'','','','','','');
photos[32] = new photo(1364160,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/Ardnakinna261-F4-[TN].jpg',432,285,'Ardnakinna Lighthouse','http://www4.clikpic.com/aldobelmonte/images/Ardnakinna261-F4-[TN]_thumb.jpg',130, 86,1, 1,'Many of my images seem to present themselves to me, whilst I\'m doing something else...<br>\r\n<br>\r\nI was on the clifftops west of Castletownbere, photographing the work of a sculptor who lives there.<br>\r\n<br>\r\nLooking down and east, the lighthouse was like an apparition in the mist, almost unreal.','','','','','');
photos[33] = new photo(1364161,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/\'Serrach\' [TN].jpg',432,254,'\'serrach\'','http://www4.clikpic.com/aldobelmonte/images/\'Serrach\' [TN]_thumb.jpg',130, 76,1, 1,'I was fascinated by this \'rock\'.<br>\r\n<br>\r\nIt\'s not made of rock but earth. <br>\r\n<br>\r\nI assume that at every tide it gets a little smaller.<br>\r\n<br>\r\n...looking south across Bantry Bay, one can see the hills of the next peninsula, Sheeps Head.','','','Beara ','','');
photos[34] = new photo(1407467,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/SmallBoat-[TN].jpg',351,432,'small boat','http://www4.clikpic.com/aldobelmonte/images/SmallBoat-[TN]_thumb.jpg',130, 160,0, 0,'I took this photo at night.<br>\r\n<br>\r\nIt was the brightest full moon I have ever seen.','','','Zetland Pier, West Cork','','');
photos[35] = new photo(1435313,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/Bull-Rock-[TN]1.jpg',295,432,'calf rock','http://www4.clikpic.com/aldobelmonte/images/Bull-Rock-[TN]1_thumb.jpg',130, 190,0, 0,'a wee island seen from Dursey Island in West Cork','','','','','');
photos[36] = new photo(1400916,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/Bantry Bay [TN].jpg',287,432,'Bantry Bay','http://www4.clikpic.com/aldobelmonte/images/Bantry Bay [TN]_thumb.jpg',130, 196,0, 0,'...looking west across Bantry Bay towards Bere Island.','','','','','');
photos[37] = new photo(1457340,'95751','','gallery','http://www4.clikpic.com/aldobelmonte/images/WRECK 2 [TN].jpg',432,387,'wreck at Roancarrig 2','http://www4.clikpic.com/aldobelmonte/images/WRECK 2 [TN]_thumb.jpg',130, 116,0, 0,'','','','Beara, West Cork','','');
photos[38] = new photo(1371956,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/Summer\'s-Day-[TN].jpg',432,274,'Summer\'s Day','http://www4.clikpic.com/aldobelmonte/images/Summer\'s-Day-[TN]_thumb.jpg',130, 82,0, 1,'','','','','','');
photos[39] = new photo(1371976,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/Horse-&-Cart-[TN].jpg',432,287,'Horse & Cart','http://www4.clikpic.com/aldobelmonte/images/Horse-&-Cart-[TN]_thumb.jpg',130, 86,1, 1,'','','','','','');
photos[40] = new photo(1408092,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/Cobbler-[TN].jpg',432,287,'Jim the cobbler','http://www4.clikpic.com/aldobelmonte/images/Cobbler-[TN]_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[41] = new photo(1408103,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/Horse-&-Cart-2-[TN].jpg',432,290,'Horse & Cart 2','http://www4.clikpic.com/aldobelmonte/images/Horse-&-Cart-2-[TN]_thumb.jpg',130, 87,0, 1,'','','','','','');
photos[42] = new photo(1408105,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/LeavingHome-[TN].jpg',432,262,'\'Leaving Home\'','http://www4.clikpic.com/aldobelmonte/images/LeavingHome-[TN]_thumb.jpg',130, 79,0, 1,'','','','','','');
photos[43] = new photo(1408109,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/priest [TN].jpg',432,287,'Priest','http://www4.clikpic.com/aldobelmonte/images/priest [TN]_thumb.jpg',130, 86,0, 1,'This image would have looked no different if it had been taken a hundred years ago.','','','','','');
photos[44] = new photo(1435141,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/Communio-Day-[TN].jpg',432,303,'Communion Day','http://www4.clikpic.com/aldobelmonte/images/Communio-Day-[TN]_thumb.jpg',130, 91,0, 1,'This is Emma and Tina on their Communion Day...a very special day in Ireland.<br>\r\n<br>\r\nThis is the only image on the site I didn\'t take.<br>\r\n<br>\r\nMy wife did.','','','','','');
photos[45] = new photo(1397474,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/timmy+pup-[TN].jpg',432,285,'Timmy and Peach','http://www4.clikpic.com/aldobelmonte/images/timmy+pup-[TN]_thumb.jpg',130, 86,0, 1,'Peach was the daughter of our beautiful Molly.<br>\r\n<br>\r\nWe gave her to Timmy. <br>\r\n<br>\r\nThis is the day he came to get her.','','','','','');
photos[46] = new photo(1397273,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/Timmy-&Scythe[TN].jpg',284,430,'timmy & scythe','http://www4.clikpic.com/aldobelmonte/images/Timmy-&Scythe[TN]_thumb.jpg',130, 197,0, 0,'Timmy was our very own. <br>\r\n<br>\r\nHe was \'given\' to us shortly after we arrived in Ireland','','','','','');
photos[47] = new photo(1397568,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/Timmy-at-Harvest[TN].jpg',365,405,'Timmy','http://www4.clikpic.com/aldobelmonte/images/Timmy-at-Harvest[TN]_thumb.jpg',130, 144,0, 0,'Timmy always made fantastic shapes, because he was at one with himself.','','','','','');
photos[48] = new photo(1397414,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/\'Timmy\'-TN1.jpg',304,432,'Timmy at harvest','http://www4.clikpic.com/aldobelmonte/images/\'Timmy\'-TN1_thumb.jpg',130, 185,0, 0,'Timmy never liked having his picture taken.<br>\r\n<br>\r\nSo....I took this with a 500mm mirror lens, <br>\r\n<br>\r\nHe never knew. I loved his hat.<br>\r\n<br>\r\nOne of my favourite images','','','','','');
photos[49] = new photo(1435150,'95756','','gallery','http://www4.clikpic.com/aldobelmonte/images/farmer-[TN].jpg',290,432,'farmer waiting for cows','http://www4.clikpic.com/aldobelmonte/images/farmer-[TN]_thumb.jpg',130, 194,0, 0,'John, seen here waiting for his cows to come up the road, was a neighbour.<br>\r\n<br>\r\nHe was completely unaware of how good he looked in his hat and wellies.','','','','','');
photos[50] = new photo(1371880,'95753','','gallery','http://www4.clikpic.com/aldobelmonte/images/\'Fiona-Patricia\'-[TN].jpg',432,288,'\'Fiona Patricia\'','http://www4.clikpic.com/aldobelmonte/images/\'Fiona-Patricia\'-[TN]_thumb.jpg',130, 87,1, 1,'I spent a week at sea on her taking photos of the fishermen.<br>\r\n<br>\r\nHere, alone and  out of her element, she still looked elegant and alive.','','','','','');
photos[51] = new photo(1380046,'95753','','gallery','http://www4.clikpic.com/aldobelmonte/images/Fisherman 1[TN].jpg',432,285,'Fisherman','http://www4.clikpic.com/aldobelmonte/images/Fisherman 1[TN]_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[52] = new photo(1400921,'95753','','gallery','http://www4.clikpic.com/aldobelmonte/images/Ice-Hose-[TN].jpg',432,288,'Ice Hose','http://www4.clikpic.com/aldobelmonte/images/Ice-Hose-[TN]_thumb.jpg',130, 87,1, 1,'This is the hose that\'s used to fill the hold with ice for a fishing trip.','','','Castletownbere, West Cork','','');
photos[53] = new photo(1457316,'95753','','gallery','http://www4.clikpic.com/aldobelmonte/images/Helping-Hand-[TN].jpg',432,285,'two helping hands','http://www4.clikpic.com/aldobelmonte/images/Helping-Hand-[TN]_thumb.jpg',130, 86,0, 1,'','','','','','');
photos[54] = new photo(1457322,'95753','','gallery','http://www4.clikpic.com/aldobelmonte/images/Welders-[TN].jpg',432,289,'welders','http://www4.clikpic.com/aldobelmonte/images/Welders-[TN]_thumb.jpg',130, 87,0, 1,'','','','Castletownbere, Beara','','');
photos[55] = new photo(1457326,'95753','','gallery','http://www4.clikpic.com/aldobelmonte/images/Taking on Provisions-[TN].jpg',432,309,'taking on provisions','http://www4.clikpic.com/aldobelmonte/images/Taking on Provisions-[TN]_thumb.jpg',130, 93,0, 0,'Traditionally, the last man employed on a particular boat is the cook...<br>\r\n<br>\r\n...and here he is bringing on the provisions for a fishing trip.','','','Castletownbere, Beara','','');
photos[56] = new photo(1380044,'95753','','gallery','http://www4.clikpic.com/aldobelmonte/images/\'Mistletoe\'--[TN].jpg',294,432,'\'Mistletoe\'','http://www4.clikpic.com/aldobelmonte/images/\'Mistletoe\'--[TN]_thumb.jpg',130, 191,0, 0,'','','','','','');
photos[57] = new photo(1453893,'95753','','gallery','http://www4.clikpic.com/aldobelmonte/images/IceHose-[TN].jpg',289,432,'taking on ice','http://www4.clikpic.com/aldobelmonte/images/IceHose-[TN]_thumb.jpg',130, 194,0, 0,'This is the last thing a fishing boat does before setting off for a fishing trip.','','','','','');
photos[58] = new photo(1578460,'95753','','gallery','http://www4.clikpic.com/aldobelmonte/images/3-Boats-[TN].jpg',295,432,'boats on the hard','http://www4.clikpic.com/aldobelmonte/images/3-Boats-[TN]_thumb.jpg',130, 190,0, 0,'','','','','','');
photos[59] = new photo(1372055,'95760','','gallery','http://www4.clikpic.com/aldobelmonte/images/Terri-[TN].jpg',432,287,'Terry','http://www4.clikpic.com/aldobelmonte/images/Terri-[TN]_thumb.jpg',130, 86,0, 1,'Terry was Timmy\'s dog, and the only dog our own Molly ever really \'fancied\'.<br>\r\n<br>\r\nHe had the most intelligent eyes I\'ve ever seen in any animal.','','','','','');
photos[60] = new photo(1380029,'95760','','gallery','http://www4.clikpic.com/aldobelmonte/images/Sid-&-Charlie-[TN].jpg',432,304,'Sid & Charlie','http://www4.clikpic.com/aldobelmonte/images/Sid-&-Charlie-[TN]_thumb.jpg',130, 91,0, 1,'Having a Guiness and a sandwich in McCarthy\'s Bar, I look down, and these two guys are watching me.<br>\r\n<br>\r\nThey turn out to be the landlady\'s dogs and are only interested in one thing...my sandwich.','','','McCarthy\'s Bar, Castletownbere, West Cork','','');
photos[61] = new photo(1380032,'95760','','gallery','http://www4.clikpic.com/aldobelmonte/images/Three-Hens-[TN].jpg',432,279,'Three Hens','http://www4.clikpic.com/aldobelmonte/images/Three-Hens-[TN]_thumb.jpg',130, 84,0, 1,'We kept hens. <br>\r\n<br>\r\nTheir eggs were delicious.<br>\r\n<br>\r\nBut I\'m sure they thought they \'kept\' us.','','','','','');
photos[62] = new photo(1597164,'95760','','gallery','http://www4.clikpic.com/aldobelmonte/images/puppy+barrow[TN].jpg',432,277,'\'peach\' in wheelbarrow','http://www4.clikpic.com/aldobelmonte/images/puppy+barrow[TN]_thumb.jpg',130, 83,0, 1,'','','','','','');
photos[63] = new photo(1434949,'95760','','gallery','http://www4.clikpic.com/aldobelmonte/images/DogNose-[TN].jpg',287,432,'\'Peach\' at door','http://www4.clikpic.com/aldobelmonte/images/DogNose-[TN]_thumb.jpg',130, 196,0, 0,'Her mother Molly was completely free to roam.<br>\r\n<br>\r\nPeach was not so lucky.<br>\r\n<br>\r\nTimmy would often lock her away in the shed.','','','','','');
photos[64] = new photo(1434953,'95760','','gallery','http://www4.clikpic.com/aldobelmonte/images/Dog-at-Window-[TN].jpg',287,432,'Dog at window','http://www4.clikpic.com/aldobelmonte/images/Dog-at-Window-[TN]_thumb.jpg',130, 196,0, 0,'','','','','','');
photos[65] = new photo(1372080,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/Nealie-Sullivan-[TN].jpg',430,286,'Nealie Sullivan','http://www4.clikpic.com/aldobelmonte/images/Nealie-Sullivan-[TN]_thumb.jpg',130, 86,0, 1,'Nealie was once a small boat fisherman living in Allihies.<br>\r\n<br>\r\nHe is now a painter who creates very emotional images of the sea.','','','','','');
photos[66] = new photo(1380248,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/Tim-Goulding---Painter[TN].jpg',440,292,'Tim Goulding','http://www4.clikpic.com/aldobelmonte/images/Tim-Goulding---Painter[TN]_thumb.jpg',130, 86,0, 1,'Tim Goulding is a well known painter who lives in Allihies','','','','','');
photos[67] = new photo(1389644,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/Cormac-74c6[TN].jpg',425,281,'Cormac Boydell','http://www4.clikpic.com/aldobelmonte/images/Cormac-74c6[TN]_thumb.jpg',130, 86,0, 1,'Cormac Boydell is regarded as one of Ireland\'s foremost ceramic artists.','','','','','');
photos[68] = new photo(1389665,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/Alastair---Dustman[TN].jpg',430,280,'Alistair','http://www4.clikpic.com/aldobelmonte/images/Alastair---Dustman[TN]_thumb.jpg',130, 85,0, 1,'Alistair... a gentle man,  taught my son his first few chords on guitar.<br>\r\n<br>\r\nHe worked at the local dump for a while.<br>\r\n<br>\r\nA man of dignity and charm.','','','','','');
photos[69] = new photo(1389854,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/John-\'Boat\'-288D1[TN].jpg',430,284,'John \'the Boat\'','http://www4.clikpic.com/aldobelmonte/images/John-\'Boat\'-288D1[TN]_thumb.jpg',130, 86,0, 1,'John bought a wooden sailing boat...practised for 2 weeks in local waters...then headed south for Greece. <br>\r\n<br>\r\nHence his nickname. <br>\r\n<br>\r\nNeedless to say, his adventures were many...','','','','','');
photos[70] = new photo(1390247,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/Marco-&-Flora[TN].jpg',430,289,'Marco & Flora','http://www4.clikpic.com/aldobelmonte/images/Marco-&-Flora[TN]_thumb.jpg',130, 87,0, 0,'This is my cousin Marco with his wife.<br>\r\n<br>\r\n...no excuses for showing this image...<br>\r\n<br>\r\n...the eyes are fantastic.','','','','','');
photos[71] = new photo(1547786,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/174-D4=[TN].jpg',432,297,'Maurice Henderson','http://www4.clikpic.com/aldobelmonte/images/174-D4=[TN]_thumb.jpg',130, 89,0, 0,'Artist/Painter','','','','','');
photos[72] = new photo(1596235,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/106-E5-[TN].jpg',432,290,'John Kingerlee','http://www4.clikpic.com/aldobelmonte/images/106-E5-[TN]_thumb.jpg',130, 87,0, 1,'\"John Kingerlee is one of the leading artists in Ireland. His meditative, intellectual work combined with his wonderful sense of colour brings great joy to the viewer seeing his work for the first time. <br>\r\n<br>\r\nHis figurative work owes a debt to Jorn, Appel, Corneille, Braque and Dubuffet and his colour is as wonderful as, Klee and Nolde.\"<br>\r\n<br>\r\nI enjoyed my time with him, he had a great sense of fun, but was also intense and passionate.<br>\r\n<br>\r\nI love his work.','','','','','');
photos[73] = new photo(1596293,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/71-G5[TN].jpg',432,300,'Sean McCarthy','http://www4.clikpic.com/aldobelmonte/images/71-G5[TN]_thumb.jpg',130, 90,0, 0,'I watched Sean over a period of months, at the National Sculpture Factory, working on his statue of Christy Ring [which you can see at Cork Airport].<br>\r\n<br>\r\nA fascinating man totally and passionately committed to his work.','','','','','');
photos[74] = new photo(1685365,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/cRed[TN].jpg',432,286,'joey bailey','http://www4.clikpic.com/aldobelmonte/images/cRed[TN]_thumb.jpg',130, 86,0, 1,'dancer','','','','','');
photos[75] = new photo(1390437,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/Jenny - Fashion Model1.jpg',500,327,'Marisa','http://www4.clikpic.com/aldobelmonte/images/Jenny - Fashion Model1_thumb.jpg',130, 85,0, 0,'Fashion Model','','','','','');
photos[76] = new photo(1389880,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/J.Turrell-[TN].jpg',430,380,'James Turrell','http://www4.clikpic.com/aldobelmonte/images/J_thumb.Turrell-[TN].jpg',130, 115,0, 0,'James Turrell is an internationally acclaimed light and space artist whose work can be found in collections worldwide. Since childhood, Turrell has been fascinated with the qualities of light.','','','','','');
photos[77] = new photo(1390394,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/Georgina---Actress[TN].jpg',420,430,'Georgina','http://www4.clikpic.com/aldobelmonte/images/Georgina---Actress[TN]_thumb.jpg',130, 133,0, 0,'Greek actress<br>\r\n<br>\r\n..her gaze transfixed me and I can still remember the feeling I had...','','','Greece','','');
photos[78] = new photo(1527304,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/Maria[TN].jpg',335,432,'maria','http://www4.clikpic.com/aldobelmonte/images/Maria[TN]_thumb.jpg',130, 168,0, 0,'This woman\'s son had recently died.<br>\r\n<br>\r\nHer eyes show her suffering.','','','','','');
photos[79] = new photo(1596591,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/044-F3-[TN].jpg',292,432,'Danny Osborne','http://www4.clikpic.com/aldobelmonte/images/044-F3-[TN]_thumb.jpg',130, 192,0, 0,'Enraptured by the rugged landscape of West Cork, where he lives, painter and sculptor, Danny Osborne dreamed of painting the glacial forces that created the region 10,000 years ago. <br>\r\n<br>\r\nHere seen with one of his beautiful pieces of art.','','','','','');
photos[80] = new photo(1560372,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/PeppiDYLAN[tn].jpg',354,432,'peppi','http://www4.clikpic.com/aldobelmonte/images/PeppiDYLAN[tn]_thumb.jpg',130, 159,0, 0,'Singer-songwriter.<br>\r\n<br>\r\nIf you want to hear him...<br>\r\n<a target=\"_blank\" href=\"http://www.myspace.com/pepebelmonte\">click here</a>','','','','','');
photos[81] = new photo(1651994,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/539-D5[TN].jpg',305,432,'Katrina','http://www4.clikpic.com/aldobelmonte/images/539-D5[TN]_thumb.jpg',130, 184,0, 0,'cellist','','','','','');
photos[82] = new photo(1667412,'95749','','gallery','http://www4.clikpic.com/aldobelmonte/images/394 f2 [TN].jpg',291,432,'claudio viscardi','http://www4.clikpic.com/aldobelmonte/images/394 f2 [TN]_thumb.jpg',130, 193,0, 0,'Claudio Viscardi has achieved international recognition for his imaginative approach to incorporating art in interior and exterior spaces.<br>\r\n<br>\r\nExhibiting widely, his works can be found in many public and private collections worldwide.<br>\r\n<br>\r\nA dual Irish-Swiss citizen, he now resides on the Beara peninsula in the South-west of Ireland and indeed many paintings are inspired by its <br>\r\nnatural beauty.','','','','','');
photos[83] = new photo(1372058,'95762','','gallery','http://www4.clikpic.com/aldobelmonte/images/\'Anima\'-[TN].jpg',432,285,'\'Anima\'','http://www4.clikpic.com/aldobelmonte/images/\'Anima\'-[TN]_thumb.jpg',130, 86,1, 1,'This is one of my favourite images. <br>\r\n<br>\r\nThe sculptor has imbued this piece of stone with real sensuality.<br>\r\n<br>\r\nHer name, \'Anima\', came to me spontaneously.<br>\r\n<br>\r\nShe \'lives\' in the grounds of Bantry House.','','','','','');
photos[84] = new photo(1372094,'95762','','gallery','http://www4.clikpic.com/aldobelmonte/images/Steel-Bird-[TN].jpg',432,288,'Steel Bird','http://www4.clikpic.com/aldobelmonte/images/Steel-Bird-[TN]_thumb.jpg',130, 87,1, 1,'','','','','','');
photos[85] = new photo(1547766,'95762','','gallery','http://www4.clikpic.com/aldobelmonte/images/434-b1[TN].jpg',432,299,'Concrete \'Buoy\'','http://www4.clikpic.com/aldobelmonte/images/434-b1[TN]_thumb.jpg',130, 90,0, 1,'','','','','','');
photos[86] = new photo(1435159,'95762','','gallery','http://www4.clikpic.com/aldobelmonte/images/Statue-Nue-[TN].jpg',296,432,'Statue nue','http://www4.clikpic.com/aldobelmonte/images/Statue-Nue-[TN]_thumb.jpg',130, 190,0, 0,'Seen in the grounds of Bantry House.<br>\r\n<br>\r\nA very sensual piece of sculpture.','','','','','');
photos[87] = new photo(1526294,'95762','','gallery','http://www4.clikpic.com/aldobelmonte/images/My-Bed-2-[TN]4.jpg',285,432,'bed','http://www4.clikpic.com/aldobelmonte/images/My-Bed-2-[TN]4_thumb.jpg',130, 197,0, 0,'','','','','','');
photos[88] = new photo(1371840,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/Flute Player.jpg',500,334,'flute player','http://www4.clikpic.com/aldobelmonte/images/Flute Player_thumb.jpg',130, 87,0, 1,'','','','','','');
photos[89] = new photo(1372068,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/Cello 2-[TN].jpg',432,290,'Cellist','http://www4.clikpic.com/aldobelmonte/images/Cello 2-[TN]_thumb.jpg',130, 87,0, 1,'Hmm...didn\'t think cellos could be sexy.','','','','','');
photos[90] = new photo(1408051,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/Violin-[TN].jpg',432,290,'Violin Case','http://www4.clikpic.com/aldobelmonte/images/Violin-[TN]_thumb.jpg',130, 87,0, 1,'','','','','','');
photos[91] = new photo(1408071,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/Violinist-[TN].jpg',432,295,'Violinist','http://www4.clikpic.com/aldobelmonte/images/Violinist-[TN]_thumb.jpg',130, 89,0, 1,'','','','','','');
photos[92] = new photo(1408073,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/483-E1-[TN].jpg',432,291,'Violin Player','http://www4.clikpic.com/aldobelmonte/images/483-E1-[TN]_thumb.jpg',130, 88,0, 1,'','','','','','');
photos[93] = new photo(1542440,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/greg-ELLIS[tn].jpg',432,323,'Greg Ellis','http://www4.clikpic.com/aldobelmonte/images/greg-ELLIS[tn]_thumb.jpg',130, 97,0, 1,'Greg Ellis is one of the four members of the Vanbrugh Quartet.','','','','','');
photos[94] = new photo(1547437,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/Natalie-Clein[tn].jpg',432,288,'Natalie Clein','http://www4.clikpic.com/aldobelmonte/images/Natalie-Clein[tn]_thumb.jpg',130, 87,0, 0,'\"The mesmerising cellist Natalie Clein….. was the highlight of the evening.\"<br>\r\n<br>\r\nMatthew Connolly, The Times, 15 July 2004','','','','','');
photos[95] = new photo(1547516,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/Sawa[TN].jpg',432,294,'Kazuki Sawa','http://www4.clikpic.com/aldobelmonte/images/Sawa[TN]_thumb.jpg',130, 88,0, 0,'One of the leading violinists in Japan today, <br>\r\n<br>\r\nKazuki Sawa plays the Arkwright Joseph Guarnerius del Gesu violin, dated 1732.','','','','','');
photos[96] = new photo(1551660,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/308-A6[TN].jpg',432,285,'Practice','http://www4.clikpic.com/aldobelmonte/images/308-A6[TN]_thumb.jpg',130, 86,0, 1,'Violin practice in the billiard room at Bantry House.','','','','','');
photos[97] = new photo(1551834,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/304-F6-[TN].jpg',432,295,'Hugh Tinney','http://www4.clikpic.com/aldobelmonte/images/304-F6-[TN]_thumb.jpg',130, 89,0, 1,'\"..he played with maturity and refinement and a fine sense of poetry\"   (The Guardian, UK)','','','','','');
photos[98] = new photo(1600554,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/538 B2 [TN].jpg',500,342,'violinist 2','http://www4.clikpic.com/aldobelmonte/images/538 B2 [TN]_thumb.jpg',130, 89,0, 1,'','','','','','');
photos[99] = new photo(1600628,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/484-F1-[TN].jpg',432,291,'sarah sexton','http://www4.clikpic.com/aldobelmonte/images/484-F1-[TN]_thumb.jpg',130, 88,0, 1,'Sarah is the 1st violinist of the Callino Quartet, which was established at the 1999 West Cork Chamber Music Festival.','','','','','');
photos[100] = new photo(1600653,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/543-E1[TN].jpg',432,286,'violinist 4','http://www4.clikpic.com/aldobelmonte/images/543-E1[TN]_thumb.jpg',130, 86,0, 1,'','','','','','');
photos[101] = new photo(1630834,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/294-C3[TN].jpg',430,288,'john tavener','http://www4.clikpic.com/aldobelmonte/images/294-C3[TN]_thumb.jpg',130, 87,0, 0,'It was the appearance of \'The Whale\' in 1968 that catapulted the mop-haired  prodigy to fame.  <br>\r\n<br>\r\n1968 was a year of discovery and innovation in the pop as well as the classical world. <br>\r\nTavener was the boy wonder of the year.<br>\r\n<br>\r\nThe Guardian called him \'the musical discovery of the year, the Times... \'among the very best creative talents of his generation\'.','','','','','');
photos[102] = new photo(1671626,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/545-B4-[TN].jpg',432,319,'elizabeth cooney','http://www4.clikpic.com/aldobelmonte/images/545-B4-[TN]_thumb.jpg',130, 96,0, 1,'Elizabeth has emerged as one of the most exciting and dynamic young artists of her generation. <br>\r\n<br>\r\nSelected as the National Concert Hall Ireland\'s Rising Star 2006 she is laureate of numerous international competitions.','','','','','');
photos[103] = new photo(1527222,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/VQ-[TN]col.jpg',434,273,'The Vanbrugh Quartet','http://www4.clikpic.com/aldobelmonte/images/VQ-[TN]col_thumb.jpg',130, 82,0, 0,'RTÉ Vanbrugh Quartet is the resident string quartet to Radio Telefís Éireann, Ireland\'s national broadcasting service, and Artists in residence to University College Cork and founders of the internationally acclaimed West Cork Chamber Music Festival.','','','Beara Peninsula','','');
photos[104] = new photo(1407396,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/Cello-Player-[TN] 2.jpg',308,432,'Anne Gastinel','http://www4.clikpic.com/aldobelmonte/images/Cello-Player-[TN] 2_thumb.jpg',130, 182,0, 0,'Anne Gastinel was nominated by Marta Casals-Istomin to receive the mythical Matteo Gofriller cello.<br>\r\n<br>\r\nThis belonged to Pablo Casals. <br>\r\n<br>\r\nPresently performs on a Testore made in 1690!','','','','','');
photos[105] = new photo(1408036,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/Cello-[TN].jpg',281,414,'Quirine Viersen','http://www4.clikpic.com/aldobelmonte/images/Cello-[TN]_thumb.jpg',130, 192,0, 0,'Dutch cellist Quirine Viersen is one of the leading musical personalities of the younger generation. <br>\r\n<br>\r\nHer powerful, intense and virtuoso playing,  has convinced the public, as well as the press and colleague musicians of her special musicality.<br>\r\n<br>\r\nQuirine plays on a Joseph Guarnerius Filius Andreae cello from 1715 placed at her disposal by the National Music Instrument Foundation.','','','','','');
photos[106] = new photo(1408063,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/Viola-Player[TN].jpg',290,432,'Viola Player','http://www4.clikpic.com/aldobelmonte/images/Viola-Player[TN]_thumb.jpg',130, 194,0, 0,'','','','','','');
photos[107] = new photo(1457330,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/TN3.jpg',265,432,'cello fingers','http://www4.clikpic.com/aldobelmonte/images/TN3_thumb.jpg',130, 212,0, 0,'I didn\'t know you needed this many fingers to play cello...','','','','','');
photos[108] = new photo(1527465,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/s.DOANE[TN.jpg',288,432,'Steven Doane','http://www4.clikpic.com/aldobelmonte/images/s_thumb.DOANE[TN.jpg',130, 195,0, 0,'Steven Doane is a Professor of Cello at the Eastman School of Music in Rochester.<br>\r\n<br>\r\nAwarded the Eisenhardt Award for Excellence in Teaching...<br>\r\n<br>\r\n<br>\r\n...and plays on a David Tecchler cello, dated 1720!','','','','','');
photos[109] = new photo(1542374,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/BERLINSKY-[TN].jpg',290,432,'Valentin Berlinsky','http://www4.clikpic.com/aldobelmonte/images/BERLINSKY-[TN]_thumb.jpg',130, 194,0, 0,'Cellist Valentin Berlinsky has performed with the Borodin Quartet [the world\'s longest-lived string quartet] from its inception and over the years has personally selected his colleagues.<br>\r\n<br>\r\nIt celebrated its 60th Anniversary in 2005.','','','','','');
photos[110] = new photo(1590505,'95763','','gallery','http://www4.clikpic.com/aldobelmonte/images/hanno-[tn].jpg',305,432,'hanno strydom','http://www4.clikpic.com/aldobelmonte/images/hanno-[tn]_thumb.jpg',130, 184,0, 0,'','','','','','');
photos[111] = new photo(1408154,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/PeppiWilly[TN]1.jpg',430,282,'Willy','http://www4.clikpic.com/aldobelmonte/images/PeppiWilly[TN]1_thumb.jpg',130, 85,0, 1,'','','','','','');
photos[112] = new photo(1435402,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/cLEG[TN].jpg',432,285,'leg at window','http://www4.clikpic.com/aldobelmonte/images/cLEG[TN]_thumb.jpg',130, 86,0, 1,'','','','','','');
photos[113] = new photo(1436292,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/fishermanGR[TN].jpg',432,291,'greek fisherman','http://www4.clikpic.com/aldobelmonte/images/fishermanGR[TN]_thumb.jpg',130, 88,0, 1,'','','','','','');
photos[114] = new photo(1436295,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/windmillGR[TN].jpg',432,291,'greek windmill','http://www4.clikpic.com/aldobelmonte/images/windmillGR[TN]_thumb.jpg',130, 88,0, 1,'','','','','','');
photos[115] = new photo(1456535,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/hAYRIX-+-HH-[TN].jpg',432,289,'Hayricks','http://www4.clikpic.com/aldobelmonte/images/hAYRIX-+-HH-[TN]_thumb.jpg',130, 87,0, 1,'','','','Beara','','');
photos[116] = new photo(1456545,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/My-Bed[TN].jpg',432,281,'My Bed','http://www4.clikpic.com/aldobelmonte/images/My-Bed[TN]_thumb.jpg',130, 85,0, 1,'','','','','','');
photos[117] = new photo(1456972,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/ArcTriomphe[TN].jpg',432,289,'Arc de Triomphe','http://www4.clikpic.com/aldobelmonte/images/ArcTriomphe[TN]_thumb.jpg',130, 87,0, 1,'','','','Paris France','','');
photos[118] = new photo(1527421,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/cPool-[TN].jpg',432,302,'White Umbrella','http://www4.clikpic.com/aldobelmonte/images/cPool-[TN]_thumb.jpg',130, 91,0, 1,'','','','Sicily','','');
photos[119] = new photo(1527617,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/cSofa-[TN].jpg',432,309,'sofa','http://www4.clikpic.com/aldobelmonte/images/cSofa-[TN]_thumb.jpg',130, 93,0, 1,'','','','','','');
photos[120] = new photo(1527639,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/BoySicily[TN].jpg',432,287,'boy with boat','http://www4.clikpic.com/aldobelmonte/images/BoySicily[TN]_thumb.jpg',130, 86,0, 1,'','','','Italy','','');
photos[121] = new photo(1547324,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/TreesBL[tn].jpg',432,285,'forest','http://www4.clikpic.com/aldobelmonte/images/TreesBL[tn]_thumb.jpg',130, 86,0, 1,'','','','','','');
photos[122] = new photo(1547332,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/LottieOF[tn].jpg',432,290,'lottie','http://www4.clikpic.com/aldobelmonte/images/LottieOF[tn]_thumb.jpg',130, 87,0, 1,'','','','','','');
photos[123] = new photo(1547376,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/Battersea-2[TN].jpg',432,280,'Battersea Power Station 2','http://www4.clikpic.com/aldobelmonte/images/Battersea-2[TN]_thumb.jpg',130, 84,0, 1,'','','','London','','');
photos[124] = new photo(1578469,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/adrigoleCHURCH[TN].jpg',432,291,'adrigole church','http://www4.clikpic.com/aldobelmonte/images/adrigoleCHURCH[TN]_thumb.jpg',130, 88,0, 1,'','','','','','');
photos[125] = new photo(1590501,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/mSide2-[TN].jpg',432,291,'moss side 2','http://www4.clikpic.com/aldobelmonte/images/mSide2-[TN]_thumb.jpg',130, 88,0, 1,'','','','','','');
photos[126] = new photo(1597484,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/the-skelligs[TN].jpg',432,282,'the skelligs','http://www4.clikpic.com/aldobelmonte/images/the-skelligs[TN]_thumb.jpg',130, 85,0, 1,'Skellig Michael and the Little Skellig are two islands which rise sheer out of the Atlantic, five miles off the coast. <br>\r\n<br>\r\nSix hundred feet above the sea are the remains of an expertly restored 6th century monastic settlement, complete with beehive huts, oratory and terraced garden.','','','','','');
photos[127] = new photo(1601097,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/Clare[TN].jpg',432,285,'clare','http://www4.clikpic.com/aldobelmonte/images/Clare[TN]_thumb.jpg',130, 86,0, 1,'','','','','','');
photos[128] = new photo(1685358,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/hairGlow[TN].jpg',432,315,'hair','http://www4.clikpic.com/aldobelmonte/images/hairGlow[TN]_thumb.jpg',130, 95,0, 0,'','','','','','');
photos[129] = new photo(1378616,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/Crookhaven[TN].jpg',430,278,'Crookhaven','http://www4.clikpic.com/aldobelmonte/images/Crookhaven[TN]_thumb.jpg',130, 84,1, 1,'Crookhaven (Irish: An Cruachán) is a scenic village on the most south-western tip of Ireland.','','','','','');
photos[130] = new photo(1378627,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/boysMossSide[TN].jpg',430,289,'Moss Side','http://www4.clikpic.com/aldobelmonte/images/boysMossSide[TN]_thumb.jpg',130, 87,0, 1,'','','','Manchester','','');
photos[131] = new photo(1378633,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/VENICE[TN].jpg',430,263,'Venice','http://www4.clikpic.com/aldobelmonte/images/VENICE[TN]_thumb.jpg',130, 80,0, 1,'','','','','','');
photos[132] = new photo(1435975,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/RedBelt[TN].jpg',432,417,'red belt','http://www4.clikpic.com/aldobelmonte/images/RedBelt[TN]_thumb.jpg',130, 125,0, 0,'','','','','','');
photos[133] = new photo(1375149,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/cVEIL-[TN].jpg',280,432,'Veil','http://www4.clikpic.com/aldobelmonte/images/cVEIL-[TN]_thumb.jpg',130, 201,0, 0,'','','','Sicily','','');
photos[134] = new photo(1407501,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/Hayrick-at-Roosk[TN].jpg',287,430,'Hayrick','http://www4.clikpic.com/aldobelmonte/images/Hayrick-at-Roosk[TN]_thumb.jpg',130, 195,0, 0,'','','','Adrigole, West Cork','','');
photos[135] = new photo(1436312,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/timmy-and-scythe[TN].jpg',291,432,'timmy & scythe','http://www4.clikpic.com/aldobelmonte/images/timmy-and-scythe[TN]_thumb.jpg',130, 193,0, 0,'This image reminds of paintings by Van Gogh.<br>\r\n<br>\r\nIt seems timeless.','','','','','');
photos[136] = new photo(1456556,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/2Girls-OF[TN].jpg',282,432,'two girls on boat','http://www4.clikpic.com/aldobelmonte/images/2Girls-OF[TN]_thumb.jpg',130, 199,0, 0,'','','','','','');
photos[137] = new photo(1435403,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/cRedABS[TN].jpg',242,432,'red swimsuit','http://www4.clikpic.com/aldobelmonte/images/cRedABS[TN]_thumb.jpg',130, 232,0, 0,'','','','','','');
photos[138] = new photo(1456559,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/Battersea-[TN].jpg',302,432,'Battersea Power Station','http://www4.clikpic.com/aldobelmonte/images/Battersea-[TN]_thumb.jpg',130, 186,0, 0,'','','','','','');
photos[139] = new photo(1527647,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/Abs.Car-2[TN].jpg',286,432,'abstract','http://www4.clikpic.com/aldobelmonte/images/Abs_thumb.Car-2[TN].jpg',130, 196,0, 0,'','','','','','');
photos[140] = new photo(1578485,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/sacrifice[TN].jpg',296,432,'\'sacrifice\'','http://www4.clikpic.com/aldobelmonte/images/sacrifice[TN]_thumb.jpg',130, 190,0, 0,'','','','Rhodes, Greece','','');
photos[141] = new photo(1685341,'96201','','gallery','http://www4.clikpic.com/aldobelmonte/images/OldManGreece[TN].jpg',297,432,'old man in Greece','http://www4.clikpic.com/aldobelmonte/images/OldManGreece[TN]_thumb.jpg',130, 189,0, 0,'','','','','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(84880,'1527582,1457317,1435153,1404807,1400920,1400915,1380011,1371837,1364158,1364157,1362344','Irish Landscapes','gallery');
galleries[1] = new gallery(95751,'1652030,1646298,1580333,1454150,1434941,1407426,1383285,1371867,1364161,1364160','Irish Seascapes','gallery');
galleries[2] = new gallery(95756,'1435141,1408109,1408105,1408103,1397474,1371976,1371956','People','gallery');
galleries[3] = new gallery(95753,'1457322,1457316,1400921,1371880','Fishing','gallery');
galleries[4] = new gallery(95760,'1597164,1380032,1380029,1372055','Animals','gallery');
galleries[5] = new gallery(95749,'1685365,1596235,1389854,1389665,1389644,1380248,1372080','Portraits','gallery');
galleries[6] = new gallery(95762,'1547766,1372094,1372058','Still-Life','gallery');
galleries[7] = new gallery(95763,'1671626,1600653,1600628,1600554,1551834,1551660,1542440,1408073,1408071,1408051,1372068,1371840','Musicians','gallery');
galleries[8] = new gallery(96201,'1601097,1597484,1590501,1578469,1547376,1547332,1547324,1527639,1527617,1527421,1456972,1456545,1456535,1436295,1436292,1435402,1408154,1378633,1378627,1378616','Colour','gallery');

