/***************************************************************************
* 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('1395608,1367049,1279915,843100,716279,610851,520402,63369');
	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('1395608,1367049,1279915,843100,716279,610851,520402,63369');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			if ('section38610' != '') {
						if (photos[j].galleries_id != '') {
						document.write('<a href="' + photos[j].section_code + '_' + photos[j].galleries_id + '.html">');
						}
						else {
						document.write('<a href="section38610.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 ('section38610' != '') {
				document.write('</a>');
			}
			break;
		}
	}
	
}

/***************************************************************************
* Show the next image in a gallery.  field = hidden field containing       *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function next(field,img) {

	debug('IN next');
	imageID = field.value;
	
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k= j + 1;
	while (nextImg < 0) {
		for (; k < photos.length; k++) {
			debug('testing image ' + k + ': gallery = ' + photos[k].galleries_id + '(existing: ' + photos[j].galleries_id + ')');
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				debug('setting  nextImg = ' + k);
				break;
			}
		}
		if (nextImg == -1) {
			k = 0;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);
	}


}


/***************************************************************************
* Set a new image on the gallery detail page given its array position      *
***************************************************************************/
function updateImage (nextImg, field,img) {
	debug('Updating image');
	if (!basic && !((1) || (0))) {
		debug('In updateImage');
		debug('setting  img src = ' + photos[nextImg].src);
		
					
			document.getElementById('imagePhoto').innerHTML = '<img class="mainphoto" src="' + photos[nextImg].src + ' " id="mainPic" name="mainPic" width="' + photos[nextImg].width + '" height="' + photos[nextImg].height + '" alt="' + photos[nextImg].caption + '">';
						field.value = photos[nextImg].id;
			document.getElementById('imageTitle').innerHTML = photos[nextImg].caption;
									document.title = 'irish-landscapes.com: ' + 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(217264,'21550','','section38609','http://www1.clikpic.com/stu03/images/IMG_01311.jpg',400,270,'','http://www1.clikpic.com/stu03/images/IMG_01311_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[1] = new photo(217270,'21550','','section38609','http://www1.clikpic.com/stu03/images/SQUIREL00021.jpg',400,270,'<b>Grey squirrel</b>','http://www1.clikpic.com/stu03/images/SQUIREL00021_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[2] = new photo(239599,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_0906-fox.jpg',600,400,'','http://www1.clikpic.com/stu03/images/_MG_0906-fox_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[3] = new photo(239600,'21550','','section38609','http://www1.clikpic.com/stu03/images/foxMG_0933.jpg',600,400,'','http://www1.clikpic.com/stu03/images/foxMG_0933_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[4] = new photo(239602,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_0916-parrott1.jpg',400,600,'','http://www1.clikpic.com/stu03/images/_MG_0916-parrott1_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[5] = new photo(239603,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_1217-rab1.jpg',400,267,'<b> Bugs </b>','http://www1.clikpic.com/stu03/images/_MG_1217-rab1_thumb.jpg',130, 87,0, 0,'','','','',35.00,'mounted print');
photos[6] = new photo(271118,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_0870-heron1.jpg',400,267,'','http://www1.clikpic.com/stu03/images/_MG_0870-heron1_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[7] = new photo(271123,'21550','','section38609','http://www1.clikpic.com/stu03/images/IMG_01461.jpg',400,267,'','http://www1.clikpic.com/stu03/images/IMG_01461_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[8] = new photo(271125,'21550','','section38609','http://www1.clikpic.com/stu03/images/IMG_0159-hawk1.jpg',400,339,'','http://www1.clikpic.com/stu03/images/IMG_0159-hawk1_thumb.jpg',130, 110,0, 0,'','','','','','');
photos[9] = new photo(271126,'21550','','section38609','http://www1.clikpic.com/stu03/images/IMG_0206-ground owl1.jpg',400,600,'','http://www1.clikpic.com/stu03/images/IMG_0206-ground owl1_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[10] = new photo(271127,'21550','','section38609','http://www1.clikpic.com/stu03/images/IMG_0235-owlport1.jpg',400,390,'','http://www1.clikpic.com/stu03/images/IMG_0235-owlport1_thumb.jpg',130, 127,0, 0,'','','','','','');
photos[11] = new photo(271242,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_0880-fox.jpg',600,900,'<b> Watch Dog</b>','http://www1.clikpic.com/stu03/images/_MG_0880-fox_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[12] = new photo(336030,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_2207-donkey.jpg',600,610,'<b> Donkey </b>','http://www1.clikpic.com/stu03/images/_MG_2207-donkey_thumb.jpg',130, 132,0, 0,'','','','','','');
photos[13] = new photo(422847,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_7108.jpg',600,304,'<b>Finnish bear 2</b>','http://www1.clikpic.com/stu03/images/_MG_7108_thumb.jpg',130, 66,0, 0,'','','','','','');
photos[14] = new photo(422848,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_6880-woodpecker.jpg',600,400,'<b>Woodpecker<b/>','http://www1.clikpic.com/stu03/images/_MG_6880-woodpecker_thumb.jpg',130, 87,0, 0,'','','','',35.00,'mounted print');
photos[15] = new photo(466745,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_7839-monkey.jpg',600,575,'<b>Family troop</B>','http://www1.clikpic.com/stu03/images/_MG_7839-monkey_thumb.jpg',130, 125,0, 0,'','','','',35.00,'mounted print');
photos[16] = new photo(472370,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_7819-monkey.jpg',600,562,'<b> Vervet monkey</b>','http://www1.clikpic.com/stu03/images/_MG_7819-monkey_thumb.jpg',130, 122,0, 1,'','','','',35.00,'Mounted print');
photos[17] = new photo(472371,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_8249-monkey.jpg',600,400,'<b> Vervet 5</b>','http://www1.clikpic.com/stu03/images/_MG_8249-monkey_thumb.jpg',130, 87,0, 0,'','','','',35.00,'mounted print');
photos[18] = new photo(472373,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_8063-bab.jpg',600,770,'<b>Baboon</b>','http://www1.clikpic.com/stu03/images/_MG_8063-bab_thumb.jpg',130, 167,0, 0,'','','','',35.00,'Mounted print');
photos[19] = new photo(472379,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_8297-ger.jpg',600,400,'<b>Mouth wash</b>','http://www1.clikpic.com/stu03/images/_MG_8297-ger_thumb.jpg',130, 87,0, 0,'','','','',35.00,'Mounted print');
photos[20] = new photo(472381,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_8302-gir.jpg',500,645,'','http://www1.clikpic.com/stu03/images/_MG_8302-gir_thumb.jpg',130, 168,0, 0,'','','','',35.00,'mounted print');
photos[21] = new photo(472390,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_7981-imp.jpg',600,275,'<b>Animal in the enviroment</b>','http://www1.clikpic.com/stu03/images/_MG_7981-imp_thumb.jpg',130, 60,0, 0,'','','','',35.00,'Print only price');
photos[22] = new photo(472391,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_8312-ele.jpg',600,278,'<B> Elephant enviroment</b>','http://www1.clikpic.com/stu03/images/_MG_8312-ele_thumb.jpg',130, 60,0, 0,'','','','',35.00,'mounted print');
photos[23] = new photo(472392,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_8331.jpg',600,291,'<b>In Mothers footsteps</b>','http://www1.clikpic.com/stu03/images/_MG_8331_thumb.jpg',130, 63,0, 0,'','','','',35.00,'mounted print');
photos[24] = new photo(492538,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_8639-dolohin.jpg',600,232,'<b> Dolpins </b>','http://www1.clikpic.com/stu03/images/_MG_8639-dolohin_thumb.jpg',130, 50,0, 0,'','','','',35.00,'mounted print');
photos[25] = new photo(492542,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_8650redcol.jpg',600,400,'<b> Bad Hair Day </b>','http://www1.clikpic.com/stu03/images/_MG_8650redcol_thumb.jpg',130, 87,0, 0,'Portrait of the endangered Red Colobus','','','',35.00,'mounted print');
photos[26] = new photo(492547,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_8670redcol.jpg',526,561,'<b>Red Colobus</b>','http://www1.clikpic.com/stu03/images/_MG_8670redcol_thumb.jpg',130, 139,0, 0,'The red colobus monkey is on the endangered list as is found Only in Madagascar','','','',35.00,'mounted print');
photos[27] = new photo(492548,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_8817.jpg',600,392,'<b>Hump Back whale</b>','http://www1.clikpic.com/stu03/images/_MG_8817_thumb.jpg',130, 85,0, 0,'Image taken just off the comoros Islands','','','',35.00,'mounted print');
photos[28] = new photo(520402,'','','','http://www1.clikpic.com/stu03/images/_MG_2207-donkey-blk1.jpg',300,304,'','http://www1.clikpic.com/stu03/images/_MG_2207-donkey-blk1_thumb.jpg',130, 132,1, 0,'','','','','','');
photos[29] = new photo(523691,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_9347-deer.jpg',600,290,'<b>Fallow Deer </b>','http://www1.clikpic.com/stu03/images/_MG_9347-deer_thumb.jpg',130, 63,0, 0,'','','','','','');
photos[30] = new photo(610837,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_0150-glen.jpg',600,400,'<b>The Glen 1 </b>','http://www1.clikpic.com/stu03/images/_MG_0150-glen_thumb.jpg',130, 87,0, 1,'slow shutter speeds combined with lee filters give this image life','','','','','');
photos[31] = new photo(610851,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_0165-rock.jpg',600,400,'<b>The Glen 2 </b>','http://www1.clikpic.com/stu03/images/_MG_0165-rock_thumb.jpg',130, 87,1, 1,'Moving water and vibrant winter colours','','','','','');
photos[32] = new photo(610871,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_0179-glen.jpg',600,400,'<b>The Glen 3 </b>','http://www1.clikpic.com/stu03/images/_MG_0179-glen_thumb.jpg',130, 87,0, 1,'For those afraid to ask...no the effects are not done in photoshop...filters and a knowledge of aperature and shutter speed is all YOU need','','','','','');
photos[33] = new photo(610881,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_0180-rock.jpg',600,400,'<b>The Glen 4 </b>','http://www1.clikpic.com/stu03/images/_MG_0180-rock_thumb.jpg',130, 87,0, 1,'All images taken in Co.Armagh one dull and very overcast morning......','','','','','');
photos[34] = new photo(716279,'21555','','section38606','http://www1.clikpic.com/stu03/images/IMG_0059-causeway-people.jpg',600,400,'<b> Giants Causeway </b>','http://www1.clikpic.com/stu03/images/IMG_0059-causeway-people_thumb.jpg',130, 87,1, 1,'Northern Irelands most famous and naturally beautiful attraction the Giants Causeway photographed on a moody Winters day..','','','','','');
photos[35] = new photo(716280,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_0186-dunluce.jpg',600,400,'<b> Dunluce Castle </b>','http://www1.clikpic.com/stu03/images/_MG_0186-dunluce_thumb.jpg',130, 87,0, 0,'Dunluce castle taken fron the sea shore....a different view of this costal icon.','','','','','');
photos[36] = new photo(843100,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_0709-3.jpg',600,400,'<b>Early Morning snow topped mournes</b>','http://www1.clikpic.com/stu03/images/_MG_0709-3_thumb.jpg',130, 87,1, 1,'At last a dusting of snow March 2007...covering the tops of the Mourne Mountains Co.Down....will this be N.Irelands first National Park','','','','','');
photos[37] = new photo(843112,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_0718-2.jpg',600,400,'</B> The Mournes from Murlough nature reserve</b>','http://www1.clikpic.com/stu03/images/_MG_0718-2_thumb.jpg',130, 87,0, 1,'The Snow topped mountains of mourne sweeping down to the sea','','','','','');
photos[38] = new photo(1279848,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_2457-eagle.jpg',600,400,'<b> white tail sea eagle  Norway <b/>','http://www1.clikpic.com/stu03/images/_MG_2457-eagle_thumb.jpg',130, 87,0, 0,'','','stuart stevenson','norway','','');
photos[39] = new photo(1279857,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_2459-eagle.jpg',600,400,'<b> white tail sea eagle  Norway <b/>','http://www1.clikpic.com/stu03/images/_MG_2459-eagle_thumb.jpg',130, 87,0, 0,'','','stuart stevenson','','','');
photos[40] = new photo(1279858,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_2532-eagle.jpg',600,400,'<b> white tail sea eagle  Norway <b/>','http://www1.clikpic.com/stu03/images/_MG_2532-eagle_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[41] = new photo(1279860,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_2535-eagle.jpg',600,400,'<b> white tail sea eagle  Norway <b/>','http://www1.clikpic.com/stu03/images/_MG_2535-eagle_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[42] = new photo(1279900,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_2542-eagle.jpg',600,397,'<b> white tail sea eagle  Norway <b/>','http://www1.clikpic.com/stu03/images/_MG_2542-eagle_thumb.jpg',130, 86,0, 0,'','','stuart stevenson','Norway','','');
photos[43] = new photo(1279908,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_2692-EAGLE.jpg',600,400,'<b> white tail sea eagle  Norway <b/>','http://www1.clikpic.com/stu03/images/_MG_2692-EAGLE_thumb.jpg',130, 87,0, 0,'<b> white tail sea eagle taken at sunset Norway <b/>','','','','','');
photos[44] = new photo(1279911,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_3096-eagle.jpg',600,400,'<b> white tail sea eagle  Norway <b/>','http://www1.clikpic.com/stu03/images/_MG_3096-eagle_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[45] = new photo(1279915,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_3109-EAGLE.jpg',600,400,'<b> white tail sea eagle  Norway <b/>','http://www1.clikpic.com/stu03/images/_MG_3109-EAGLE_thumb.jpg',130, 87,1, 1,'','','','','','');
photos[46] = new photo(1367049,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_1044-causeway.jpg',600,400,'<B> Sunset colours <b/>','http://www1.clikpic.com/stu03/images/_MG_1044-causeway_thumb.jpg',130, 87,1, 1,'<b> The vibrant colours of an amazing causeway sunset </b>','','','','','');
photos[47] = new photo(1395608,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_0675-2-boat.jpg',600,400,'<b> Storm approach</b>','http://www1.clikpic.com/stu03/images/_MG_0675-2-boat_thumb.jpg',130, 87,1, 0,'<b> A little boat named Dundalk awaits the approaching winter storm </b>','','','','','');
photos[48] = new photo(1572275,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_3141.jpg',600,400,'<B> Gulls in Norway </b>','http://www1.clikpic.com/stu03/images/_MG_3141_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[49] = new photo(1572277,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_2662.jpg',600,400,'<b> Into the sun </b>','http://www1.clikpic.com/stu03/images/_MG_2662_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[50] = new photo(1572279,'11271','','section38610','http://www1.clikpic.com/stu03/images/_MG_3239.jpg',600,400,'<b> Gull </b>','http://www1.clikpic.com/stu03/images/_MG_3239_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[51] = new photo(247093,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_1181-appdog.jpg',600,400,'<b> Orchard dog </b>','http://www1.clikpic.com/stu03/images/_MG_1181-appdog_thumb.jpg',130, 87,0, 1,'','','','','','');
photos[52] = new photo(356874,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_3232-stone.jpg',600,400,'<b>water way 1</b>','http://www1.clikpic.com/stu03/images/_MG_3232-stone_thumb.jpg',130, 87,0, 1,'','','','','','');
photos[53] = new photo(81329,'21555','','section38606','http://www1.clikpic.com/stu03/images/tullymore_MG_9757-02.jpg',400,270,'<B> Stepping Stones </b>','http://www1.clikpic.com/stu03/images/tullymore_MG_9757-02_thumb.jpg',130, 88,0, 1,'A man made wonder amongst the beauty of the forest, the stepping stones of Tollymore Forest Park.','','','<B>TOLLYMORE</B>','','');
photos[54] = new photo(211048,'21559','','section38609','http://www1.clikpic.com/stu03/images/_MG_1835-218-daisy.jpg',400,600,'<b> Wild daisy <b/>','http://www1.clikpic.com/stu03/images/_MG_1835-218-daisy_thumb.jpg',130, 195,0, 1,'unfortunately wild flowers in Northern Ireland have been on the decline due to over usage of land and property development, but some fields still abound with what some call \'weeds\' but what i prefere to call wild flower','','','','','');
photos[55] = new photo(217278,'21555','','section38606','http://www1.clikpic.com/stu03/images/beach21.jpg',400,270,'<b>Portstewart strand</b>','http://www1.clikpic.com/stu03/images/beach21_thumb.jpg',130, 88,0, 0,'A fine example of an empty beach midwinter , portstewart strand at its best with out the cars and summer bustle','','','','','');
photos[56] = new photo(356872,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_3259-waterroc.jpg',600,400,'<b>Water way 2</b>','http://www1.clikpic.com/stu03/images/_MG_3259-waterroc_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[57] = new photo(301297,'21555','','section38606','http://www1.clikpic.com/stu03/images/causeway1853.jpg',600,400,'<b>Causeway sunset</b>','http://www1.clikpic.com/stu03/images/causeway1853_thumb.jpg',130, 87,0, 1,'','','','','','');
photos[58] = new photo(63322,'21555','','section38606','http://www1.clikpic.com/stu03/images/mournes from murlough.jpg',400,272,'<b>MURLOUGH IN BLUE</B>','http://www1.clikpic.com/stu03/images/mournes from murlough_thumb.jpg',130, 88,0, 1,'A view of the mourne mountains sweeping down to the sea from Murlough National Nature Reserve,a delicate eco system maintained by the <b> NATIONAL TRUST</b>....This unusual image shows the outline of Northern Irelands highest Mountain Slieve Donard and neighbouring Slieve Commedagh.','','','<B>NEWCASTLE Co.DOWN</B>','','');
photos[59] = new photo(70784,'21550','','section38609','http://www1.clikpic.com/stu03/images/crw_3929folio print.jpg',400,270,'<B> PANTHERA LEO </B>','http://www1.clikpic.com/stu03/images/crw_3929folio print_thumb.jpg',130, 88,0, 0,'A mother, a killer, a good parent, lionesses of the Massai Mara have many roles to play, this striking image was taken as the golden rays of sun set on the Massai Mara, this young lioness had just finished dinning  but was ever alert to her surroundings, a beautiful animal captured in stunning light,with a little lipstick !','','','<b> Massai Mara</b>','','');
photos[60] = new photo(217266,'21550','','section38609','http://www1.clikpic.com/stu03/images/crw_4105folio print1.jpg',400,270,'','http://www1.clikpic.com/stu03/images/crw_4105folio print1_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[61] = new photo(63324,'21555','','section38606','http://www1.clikpic.com/stu03/images/ballintoy harbour.jpg',400,270,'<b> BALLINTOY HARBOUR</B>','http://www1.clikpic.com/stu03/images/ballintoy harbour_thumb.jpg',130, 88,0, 0,'<B>BALLINTOY HARBOUR</B> Taken one cold blustery winters morning this Dramatic image shows this much loved harbour with a dark boulder strewn strand contrasting oddly with the pale limestone white rocks.','','','<b>NORTH ANTRIM COAST</b>','','');
photos[62] = new photo(70788,'21550','','section38609','http://www1.clikpic.com/stu03/images/crw_3238.jpg',400,272,'<b> CROCODYLUS </B>','http://www1.clikpic.com/stu03/images/crw_3238_thumb.jpg',130, 88,0, 0,'Its possible to get close to a crocodile,but a reptile that can move at up to 28mph across ground and can reach 20ft in length and weigh up to 900kg! is best photographed from a distance,this close up of the crocs eye shows nice detail in the skin and eye,hopefully this is the only time you will be eye to eye with such a killing machine.','','','','','');
photos[63] = new photo(238817,'21582','','section38468','http://www1.clikpic.com/stu03/images/_MG_2674-whirl.jpg',600,400,'','http://www1.clikpic.com/stu03/images/_MG_2674-whirl_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[64] = new photo(238820,'21582','','section38468','http://www1.clikpic.com/stu03/images/tart.jpg',600,615,'','http://www1.clikpic.com/stu03/images/tart_thumb.jpg',130, 133,0, 0,'','','','','','');
photos[65] = new photo(63336,'21559','','section38609','http://www1.clikpic.com/stu03/images/BLUEBELL meadow warrenpoint.jpg',400,272,'<b>BLUEBELL MEADOW</B>','http://www1.clikpic.com/stu03/images/BLUEBELL meadow warrenpoint_thumb.jpg',130, 88,0, 0,'The delicate bluebell heralds the start of spring as it emerges into the sunlight before the trees are in full leaf, reducing the sunlight to the woodland floor.<br>\r\nThis beautiful image urges your eye to follow the faint track through the bluebells evoking a feeling of spring and nature','','','<B>Co.DOWN</B>','','');
photos[66] = new photo(94427,'21555','','section38606','http://www1.clikpic.com/stu03/images/tolly-MG_9981.jpg',400,267,'<b> Tollymore Forest  </b>','http://www1.clikpic.com/stu03/images/tolly-MG_9981_thumb.jpg',130, 87,0, 1,'A New Autumnal image from Tollymore Forest Park...Tollymore has many bridges ,this image taken on a windy day shows movement in the trees and water bringing the image to life.','','','','','');
photos[67] = new photo(63335,'21555','','section38606','http://www1.clikpic.com/stu03/images/whitewater.jpg',400,257,'<b>FAIRY GLEN</B>','http://www1.clikpic.com/stu03/images/whitewater_thumb.jpg',130, 84,0, 0,'This image was the <b>BBC COUNTRYFILE RUNNER UP 2004</B>....This stunning image shows the autumnal colours in all their glory,with cascading water and quaint arched bridges relfected in a pool of still water..A difficult image to aquire due to the latitude of lighting contrast and the fact that you get very cold and wet....as with all dedicated photographers persistance and technical knowledge produced an award winning image','','stuart stevenson','<b>CO.DOWN</B>','','');
photos[68] = new photo(70801,'21550','','section38609','http://www1.clikpic.com/stu03/images/crw_3768folio print.jpg',400,270,'<B>LIONESS </B>','http://www1.clikpic.com/stu03/images/crw_3768folio print_thumb.jpg',130, 88,0, 0,'At 160kg, 120cm tall and 250-300cm in length the Lion will kill anything, hunting as a pride they are extremly successful in their hunts as this image shows, this is life on the Mara ,and once on the Masra you are not top of the food chain.','','','<b> masai mara</b>','','');
photos[69] = new photo(71265,'21550','','section38609','http://www1.clikpic.com/stu03/images/b+w lemur A2.jpg',400,282,'<b> LEMUR </B>','http://www1.clikpic.com/stu03/images/b+w lemur A2_thumb.jpg',130, 92,0, 0,'Madagascar broke away from Africa 165+ million Years ago, moving just 280 miles across the Mozambique strait,it was far enough to allow creatures to evole that were to be found no where else on earth.More than 80% of the species found on Madagascar are unique to this the worlds fourth largest Island.This beautiful Lemur Portrait shows one of those special Madagascar animals.','','','<b> MADAGASCAR </B>','','');
photos[70] = new photo(238825,'21582','','section38468','http://www1.clikpic.com/stu03/images/dee1.jpg',400,267,'','http://www1.clikpic.com/stu03/images/dee1_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[71] = new photo(63337,'21559','','section38609','http://www1.clikpic.com/stu03/images/woodland portglenone.jpg',400,270,'<B>TOLLYMORE</B>','http://www1.clikpic.com/stu03/images/woodland portglenone_thumb.jpg',130, 88,0, 0,'TOLLYMORE forest park lies at the foothills of the Mourne Mountains,extolled as a place of tranquillity and beauty Tollymore was opened for all to enjoy in 1955 when it became Northern Irelands first Forest Park.<br>\r\nThis stunning image shows beauty and movement  of the delicate bluebell and the fresh and vibrant green of the first leaves of spring.','','','<b>TOLLYMORE FOREST PARK</B>','','');
photos[72] = new photo(71266,'21550','','section38609','http://www1.clikpic.com/stu03/images/animal 0007.jpg',400,272,'<b> Lemur kiss</B>','http://www1.clikpic.com/stu03/images/animal 0007_thumb.jpg',130, 88,0, 0,'Have you ever seen a Lemur blink, lemurs have a brilliantly reflective retinal tapetum,plus extra large corneas that revel more eye surface than in most other primates....Hence seeing a lemur blink is a rare thing!<br>\r\nThis image of Lemur affection is quite common as lemurs are extremely sociable.','','','<b> Madagascar </b>','','');
photos[73] = new photo(66896,'21555','','section38606','http://www1.clikpic.com/stu03/images/kilkeel.jpg',400,270,'<b>THE ROCK </B>','http://www1.clikpic.com/stu03/images/kilkeel_thumb.jpg',130, 88,0, 0,'A slightly different angle on the <B> Fairy Glen</b> image,this moss covered boulder gives detailed forground interest to this October scene, the rich vibrant tones make this a very eye catching and involved image','','','<b> Co.Down </b>','','');
photos[74] = new photo(67031,'21555','','section38606','http://www1.clikpic.com/stu03/images/Murlough 9023.jpg',400,270,'<B>SLIEVE DONARD</B>','http://www1.clikpic.com/stu03/images/Murlough 9023_thumb.jpg',130, 88,0, 0,'Looking from Murlough National Nature reserve this fine view of the mournes shows newcastle nestling at the mountains feet,The Mournes are a relatively youthfull set of granite mountains with comparatively unweathered peaks...suited to both the serious and sunday walker.This image shows the fine mountain outline of those rugged mountains as they sweep down to the sea..to the image right the superb Royal County Down golf course can be seen','','','<b>MURLOUGH</b>','','');
photos[75] = new photo(63369,'21559','','section38609','http://www1.clikpic.com/stu03/images/2 apple blossom MG_9439.jpg',400,270,'<b>APPLE BLOSSOM</B>','http://www1.clikpic.com/stu03/images/2 apple blossom MG_9439_thumb.jpg',130, 88,1, 1,'Co.Armagh is well known for its amazing displays of Apple Blossom prior to producing some world class apples, This Bright image shows the mass of colour both in the blossom and wild flowers ,an unusual view of a well know subject','','','<B>Co ARMAGH</B>','','');
photos[76] = new photo(66890,'21559','','section38609','http://www1.clikpic.com/stu03/images/bluebell tree root.jpg',400,270,'<b> TWISTED </B>','http://www1.clikpic.com/stu03/images/bluebell tree root_thumb.jpg',130, 88,0, 0,'A display of bluebells in spring is a sight worth searching for,but when found its worth getting down to soil level and taking a closer look at what nature has provide, the twisted sculpture around this tree provides the focal point of this spring image with a carpet of bluebells forming the backdrop... if you go down to the woods today besure to take your time.','','','<b> NARROW WATER FOREST </B>','','');
photos[77] = new photo(67036,'21555','','section38606','http://www1.clikpic.com/stu03/images/irish bank dublin city.jpg',400,272,'<B>FAIR CITY</B>','http://www1.clikpic.com/stu03/images/irish bank dublin city_thumb.jpg',130, 88,0, 1,'Cosmopolitan Dublin has many fine nightscenes to wander around, though taking good photos of them is not an easy task,the city continues to hustle and move at an alarming pace .This night time Image shows the old and the new ,the abandoned cycles the Historic buildings and the ever moving Dublin traffic...all captured in this one stunning Image','','','<b>IRISH BANK DUBLIN</B>','','');
photos[78] = new photo(238828,'21582','','section38468','http://www1.clikpic.com/stu03/images/peco&bear1.jpg',400,267,'','http://www1.clikpic.com/stu03/images/peco&bear1_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[79] = new photo(67059,'21555','','section38606','http://www1.clikpic.com/stu03/images/dublin0004.jpg',400,272,'<B> DUBLIN BUSTLE </B>','http://www1.clikpic.com/stu03/images/dublin0004_thumb.jpg',130, 88,0, 0,'Another fine example of Dublin at night showing the continuing Bustle of city life...<br>\r\nNight photography has many challanges but images like this shows the dedication and indepth knowledge of a photographer at its best.','','','<B>DUBLIN CITY</B>','','');
photos[80] = new photo(67077,'21555','','section38606','http://www1.clikpic.com/stu03/images/dublin0009.jpg',400,272,'<b> LIFFY RIVER</b>','http://www1.clikpic.com/stu03/images/dublin0009_thumb.jpg',130, 88,0, 0,'Many bridges span the river liffy , this is one of several that reflects nicely the glow of the bridge lights ...interesting by day stunning by night.','','','<b>DUBLIN</b>','','');
photos[81] = new photo(238827,'21582','','section38468','http://www1.clikpic.com/stu03/images/_MG_85841.jpg',400,599,'','http://www1.clikpic.com/stu03/images/_MG_85841_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[82] = new photo(67094,'21559','','section38609','http://www1.clikpic.com/stu03/images/bog meadow.jpg',400,164,'<b> WILD MEADOW</B>','http://www1.clikpic.com/stu03/images/bog meadow_thumb.jpg',130, 53,0, 0,'Like most parts of the world development is taking over once wild and open spaces, but look hard enough throughout Ireland and the wildness can still be found, these wildflowers form a beautiful carpet in a wetland meadow and produced a stunning image of what nature can display if left alone.','','','<b> Co.Armagh</b>','','');
photos[83] = new photo(234708,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_0618.jpg',400,368,'','http://www1.clikpic.com/stu03/images/_MG_0618_thumb.jpg',130, 120,0, 0,'','','','','','');
photos[84] = new photo(356870,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_3300-glenarriff.jpg',400,600,'<b>water fall</b>','http://www1.clikpic.com/stu03/images/_MG_3300-glenarriff_thumb.jpg',130, 195,0, 0,'A small part of the glens of Antrim,an area of outstanding beauty.','','','','','');
photos[85] = new photo(81244,'21555','','section38606','http://www1.clikpic.com/stu03/images/tullymore_MG_9748-03.jpg',400,593,'<b> Stepping Stones </B>','http://www1.clikpic.com/stu03/images/tullymore_MG_9748-03_thumb.jpg',130, 193,0, 0,'The stepping stones at Tollymore forest park, in Newcastle Co.Down ,provide a natural platform to cross , stand and enjoy the beauty and sound of the river.','','','<B> tollymore forest park</b>','','');
photos[86] = new photo(146994,'21555','','section38606','http://www1.clikpic.com/stu03/images/_MG_3838mur sunrise2.jpg',400,600,'<b> Sunrise </b>','http://www1.clikpic.com/stu03/images/_MG_3838mur sunrise2_thumb.jpg',130, 195,0, 0,'Sometimes images just appear, unlike an artist with a brush and good imagination a photographer has to hope and wait to see what Nature will provide for that fleeting moment...this unrise image was not what i set out to get, exactly the opposite...this is what the weather forecast said was a clear and frosty morning !','','','','','');
photos[87] = new photo(234710,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_0666.jpg',400,532,'','http://www1.clikpic.com/stu03/images/_MG_0666_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[88] = new photo(220891,'21550','','section38609','http://www1.clikpic.com/stu03/images/IMG_0215-++owl.jpg',400,401,'','http://www1.clikpic.com/stu03/images/IMG_0215-++owl_thumb.jpg',130, 130,0, 1,'','','','','','');
photos[89] = new photo(217273,'21555','','section38606','http://www1.clikpic.com/stu03/images/rebate.jpg',400,200,'<b> sheep island view <b/>','http://www1.clikpic.com/stu03/images/rebate_thumb.jpg',130, 65,0, 1,'','','','','','');
photos[90] = new photo(226071,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_1157-rab.jpg',400,600,'','http://www1.clikpic.com/stu03/images/_MG_1157-rab_thumb.jpg',130, 195,0, 0,'','','','','','');
photos[91] = new photo(69021,'21555','','section38606','http://www1.clikpic.com/stu03/images/GLENVEAGH.jpg',400,159,'<b>GLENVEAGH NATIONAL PARK</B>','http://www1.clikpic.com/stu03/images/GLENVEAGH_thumb.jpg',130, 52,0, 0,'Nestling in North Donegal is Glenveagh National Park. Built in 1870 for George Adair Glenveagh Castle  nestles amongst Rhododendron filled gardens,this image was taken as cloud parted just long enough to light the castle and surrounding mountains','','','<b>North Donegal</B>','','');
photos[92] = new photo(63339,'21555','','section38606','http://www1.clikpic.com/stu03/images/lough shannagh-21.jpg',400,151,'<b>LOUGH SHANNAGH</B>','http://www1.clikpic.com/stu03/images/lough shannagh-21_thumb.jpg',130, 49,0, 0,'Lough Shannagh lies nestled amongst the Mourne Mountains, a small beach fringed lough in a beautiful location .<br>\r\nThis exceptional image shows the winter setting sun over the snow dusted Mournes and ice glased lough.Again the dedication of the photographer has produced an image that is visually stunning and hidden from most due to its remote location.','','','<b>MOURNE MOUNTAINS</B>','','');
photos[93] = new photo(67114,'21555','','section38606','http://www1.clikpic.com/stu03/images/ENNISKILLEN CASTLE.jpg',400,164,'<b>ENNISKILLEN CASTLE</B>','http://www1.clikpic.com/stu03/images/ENNISKILLEN CASTLE_thumb.jpg',130, 53,0, 0,'Enniskillen Castle rebuilt by William Cole stands on the site of the old Maguire castle damaged by siege in 1594, this image shows the castle nicely illuminated at night and perhaps more impressive than its day time image','','','<b>ENNISKILLEN CASTLE</B>','','');
photos[94] = new photo(69023,'21555','','section38606','http://www1.clikpic.com/stu03/images/mountains of mourne.jpg',400,152,'<B>SNOW COVERED MOURNES</B>','http://www1.clikpic.com/stu03/images/mountains of mourne_thumb.jpg',130, 49,0, 0,'Winter in the Mourne Mountains can be a very harsh and unforgiving place ,with little to no vegetation or shelter its not a place to visit unprepared,<i> but</i> should you visit you will be amazed at the beauty ,this image was taken mid winter several days after the snow had cleared from most of Northern Ireland.The Mourne Mountains is Designated an Area of outstanding Natural Beauty','','','<b> Mid Mournes </b>','','');
photos[95] = new photo(69025,'21555','','section38606','http://www1.clikpic.com/stu03/images/LAGAN centre lisburn.jpg',400,149,'<B> LAGAN CENTER LISBURN</B>','http://www1.clikpic.com/stu03/images/LAGAN centre lisburn_thumb.jpg',130, 48,0, 0,'As the <i>Arts</i> in Northern Ireland become more recognised several new venues have arisen to facilitate the local talent and interest, one such venue can be seen picture with christmas decorations...the Lagan Center Lisburn','','','<b>LISBURN</B>','','');
photos[96] = new photo(69031,'21555','','section38606','http://www1.clikpic.com/stu03/images/musendun1.jpg',400,149,'<B>MUSSENDEN TEMPLE</B>','http://www1.clikpic.com/stu03/images/musendun1_thumb.jpg',130, 48,0, 0,'Hanging precariously to the ever eroding cliff edge, this ornate rotunda was built in the 1780\'s by Fredrick Augustus Hervey, Anglican Bishop of Derry.This sunset image shows the temple outline at the cliff edge whilst nature provides a melody of colours across the beach and sea','','','<b> Downhill </b>','','');
photos[97] = new photo(69036,'21555','','section38606','http://www1.clikpic.com/stu03/images/MOURNE PK LC3.jpg',400,155,'<b> FAIRY GLEN </B>','http://www1.clikpic.com/stu03/images/MOURNE PK LC3_thumb.jpg',130, 50,0, 0,'A panoramic view of <b> image fairy glen </b>....<br>\r\nrich dark colours were captured as the light faded on a beautiful location ,unfortunately even this unique place was littered by tell tale signs of human involvement, before taking the images cans,bags and other discarded waste had to be removed.','','','<b>Co.Down</b>','','');
photos[98] = new photo(234707,'21550','','section38609','http://www1.clikpic.com/stu03/images/_MG_0587-butfly.jpg',400,515,'','http://www1.clikpic.com/stu03/images/_MG_0587-butfly_thumb.jpg',130, 167,0, 1,'','','','','','');
photos[99] = new photo(69040,'21555','','section38606','http://www1.clikpic.com/stu03/images/musendun 2.jpg',400,149,'<b>MUSSENDEN TEMPLE</B>','http://www1.clikpic.com/stu03/images/musendun 2_thumb.jpg',130, 48,0, 0,'Hanging precariously to the ever eroding cliff edge, this ornate rotunda was built in the 1780\'s by Fredrick Augustus Hervey, Anglican Bishop of Derry.This sunset image shows the temple outline at the cliff edge .A slightly different view to the other panoramic image of Mussenden, with the light levels a little higher.','','','<b>Mussenden Temple</b>','','');
photos[100] = new photo(69042,'21555','','section38606','http://www1.clikpic.com/stu03/images/spelga  damn.jpg',400,156,'<b>SPELGA DAM </B>','http://www1.clikpic.com/stu03/images/spelga  damn_thumb.jpg',130, 51,0, 0,'This winter image was taken not far from Hilltown on the road to Spelga Dam, This is one of the last trees at the base of the mournes before the shelterless Mourne Mountains climb to their 850m peak.The Mountains were designated an Area of Outstanding Natural Beauty (AONB) by the DOE in 1986','','','<b>Spelga Dam</b>','','');
photos[101] = new photo(69045,'21555','','section38606','http://www1.clikpic.com/stu03/images/rapeseed field co.Armagh.jpg',400,152,'<b>RAPE SEED FIELD</B>','http://www1.clikpic.com/stu03/images/rapeseed field co_thumb.Armagh.jpg',130, 49,0, 0,'Vibrant ,bright yellow fields can be spotted across N.Ireland as farmers try new crops and ventures in an attempt to make Farming a viable way of life. This vibrant field in co.Armagh saw many visitors with cameras attempting to capture its vivid beauty','','','<b>Co.Armagh</b>','','');
photos[102] = new photo(69057,'21555','','section38606','http://www1.clikpic.com/stu03/images/sky3-2.jpg',400,157,'<b>WINTERS BEACH</b>','http://www1.clikpic.com/stu03/images/sky3-2_thumb.jpg',130, 51,0, 0,'Summer beaches can be waveless and busy...but winter brings Atlantic swell,open spaces and Heavy Clouds, this image captures all that is Dark and Moody at the coast.','','','<b> The Coast</b>','','');
photos[103] = new photo(69058,'21555','','section38606','http://www1.clikpic.com/stu03/images/waterfront Belfast.jpg',400,155,'<b> BELFASTS WATERFRONT HALL </B>','http://www1.clikpic.com/stu03/images/waterfront Belfast_thumb.jpg',130, 50,0, 0,'Belfast , Northern Irelands capital city plays host to many great musicians and artists, the Waterfront hall in which may have appeared sits along the banks of the lagan, this image is no longer to be seen as further development has occured changing the area once again.','','','<b>BELFAST</B>','','');
photos[104] = new photo(69049,'21555','','section38606','http://www1.clikpic.com/stu03/images/sunset.jpg',400,150,'<B> WILD WEST </B>','http://www1.clikpic.com/stu03/images/sunset_thumb.jpg',130, 49,0, 0,'The sun setting over the western skies is a beautiful sight,this image was taken from the Donegal coast line near Muckros Head','','','<b> DONEGAL </b>','','');
photos[105] = new photo(220865,'21550','','section38609','http://www1.clikpic.com/stu03/images/Copy of IMG_0217-owl.jpg',400,170,'','http://www1.clikpic.com/stu03/images/Copy of IMG_0217-owl_thumb.jpg',130, 55,0, 0,'','','','','','');
photos[106] = new photo(63352,'21555','','section38606','http://www1.clikpic.com/stu03/images/SWANLAKE LC5.jpg',400,155,'<B>SWAN LAKE</B>','http://www1.clikpic.com/stu03/images/SWANLAKE LC5_thumb.jpg',130, 50,0, 0,'A beautiful image of two swans against the setting sun, the beauty of two magnificent birds has been captured due to the photographers patience and foresight.','','','<b>NORTHERN IRELAND</B>','','');
photos[107] = new photo(268584,'6792','','section38611','http://www1.clikpic.com/stu03/images/nyday.jpg',600,222,'<b>Brooklyn bridge</b>','http://www1.clikpic.com/stu03/images/nyday_thumb.jpg',130, 48,0, 0,'','','','','','');
photos[108] = new photo(237520,'6792','','section38611','http://www1.clikpic.com/stu03/images/nyniteskyline.jpg',600,217,'<b>Times Square</b>','http://www1.clikpic.com/stu03/images/nyniteskyline_thumb.jpg',130, 47,0, 1,'','','','New york','','');
photos[109] = new photo(238829,'6792','','section38611','http://www1.clikpic.com/stu03/images/NYtimessquare.jpg',600,221,'<b>Times square Newyork</b>','http://www1.clikpic.com/stu03/images/NYtimessquare_thumb.jpg',130, 48,0, 1,'','','','','','Cityscape-travelscape');
photos[110] = new photo(71273,'6792','','section38611','http://www1.clikpic.com/stu03/images/matterhorn 5 LC2.jpg',400,151,'<b> MATTERHORN </B>','http://www1.clikpic.com/stu03/images/matterhorn 5 LC2_thumb.jpg',130, 49,0, 1,'Situated in the upper Mattertal below the towering form of the Matterhorn (1620m) lies Zermatt, a traditional mountain town free of traffic.A beautiful and relaxing place.<br>\r\nThis image was taken from one of the many well signed walking paths and shows the Matterhorn towering amongst the clouds,','','','<b> Zermatt </b>','','');
photos[111] = new photo(71279,'6792','','section38611','http://www1.clikpic.com/stu03/images/prague bridge.jpg',400,146,'<b> CHARLES BRIDGE </b>','http://www1.clikpic.com/stu03/images/prague bridge_thumb.jpg',130, 47,0, 0,'Taken very early one June morning this stunning image shows the usually busy Charles Bridge in Prague with the almost sinister saints on the parapets gesticulating against the rising sun,','','','<b>Prague</b>','','');
photos[112] = new photo(71285,'6792','','section38611','http://www1.clikpic.com/stu03/images/prague stitch.jpg',400,144,'<b> PRAGUE </b>','http://www1.clikpic.com/stu03/images/prague stitch_thumb.jpg',130, 47,0, 0,'A city roof top view taken from one of the towers at the end of Charles Bridge, the bridge was a triumph of gothic engineering and is still richly ornamented...the view of the old city from the tower is staggering and worth the steep climb.','','','<b>PRAGUE </B>','','');
photos[113] = new photo(271131,'6792','','section38611','http://www1.clikpic.com/stu03/images/matterhorn1+rocks.jpg',400,153,'<b> Matterhorn Reflection</b>','http://www1.clikpic.com/stu03/images/matterhorn1+rocks_thumb.jpg',130, 50,0, 0,'','','','','','');
photos[114] = new photo(70031,'6792','','section38611','http://www1.clikpic.com/stu03/images/downtown bus hk.jpg',400,270,'<b>HONGKONG NITES</B>','http://www1.clikpic.com/stu03/images/downtown bus hk_thumb.jpg',130, 88,0, 0,'An abstract image of bustling Honk Kong, a fantastic fast moving city full of unfamiliar sights and smells , day and nite merge into one as this former British colony thrives around the clock, this image captures the colours and fast moving pace of one of the worlds most entertaining cities.','','','<b> Kowloon Island</b>','','');
photos[115] = new photo(177683,'6792','','section38611','http://www1.clikpic.com/stu03/images/_MG_4528-tuffturn.jpg',400,267,'<b> Matterhorn zermatt switzerland</b>','http://www1.clikpic.com/stu03/images/_MG_4528-tuffturn_thumb.jpg',130, 87,0, 1,'Taken from the high mountain village of tuffturn high above Zermatt switzerland  looking towards the iconic <b> Matterhorn </b>','','','<b> Zermatt </b>','','');
photos[116] = new photo(70044,'6792','','section38611','http://www1.clikpic.com/stu03/images/eiffle at night paris.jpg',400,266,'<b> PARIS NITES </B>','http://www1.clikpic.com/stu03/images/eiffle at night paris_thumb.jpg',130, 86,0, 0,'The world famous Eiffle Tower, over 191 million people have climbed the tower , it attracts 6 million people a year and weights a massive 7,000ton, with that amount of visitors getting an image that was different from all the other cameras was not an easy task..this image shows the tower in all its glorry  with the Busy city life continuing beneath, .','','','<b> PARIS </b>','','');
photos[117] = new photo(70768,'6792','','section38611','http://www1.clikpic.com/stu03/images/hk harbour.jpg',400,270,'<b> HONG KONG HARBOUR</B>','http://www1.clikpic.com/stu03/images/hk harbour_thumb.jpg',130, 88,0, 0,'You havent been to Hong Kong until you have crossed the Harbour on the STAR FERRY, a wonderful fleet of boots first launched in 1888, with names such as twinkling star and night star its a beautiful way to see the amazing skyline of Central when crossing from Kowloon.This abstract image captures not only the lights of Central but also of a passing ferry, the vibrancy of the colours captures all that is Hong Kong at night','','','<B> kOWLOON HARBOUR FRONT</B>','','');
photos[118] = new photo(70774,'6792','','section38611','http://www1.clikpic.com/stu03/images/london-0018.jpg',400,272,'<b> BIG BEN </B>','http://www1.clikpic.com/stu03/images/london-0018_thumb.jpg',130, 88,0, 0,'This city-scape needs little introduction - a classic night time shot of a well know London landmark.','','','','','');
photos[119] = new photo(271129,'6792','','section38611','http://www1.clikpic.com/stu03/images/LOUVRE21.jpg',400,270,'','http://www1.clikpic.com/stu03/images/LOUVRE21_thumb.jpg',130, 88,0, 0,'','','','','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(11271,'1279915','<b>LATEST IMAGES </b>','section38610');
galleries[1] = new gallery(21555,'1367049,843112,843100,716279,610881,610871,610851,610837,356874,301297,247093,217273,94427,81329,67036,63322','irish landscape','section38606');
galleries[2] = new gallery(21559,'211048,63369','Plant and tree beauty','section38609');
galleries[3] = new gallery(21582,'238828,238827,238825,238820,238817','Product work','section38468');
galleries[4] = new gallery(21550,'472370,234707,220891','Wildlife','section38609');
galleries[5] = new gallery(6792,'238829,237520,177683,71273','<b>World Travelscapes</b>','section38611');

