/***************************************************************************
* 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('1011799,1011788,1011781,1011776,1011764,1011760,1011757,1011740,1011729,1011724,1011710,1011706,1008506,918487,918475,916150,915503,915502,915501,915486,915484,915481,915480,915477,913620,913605,913594,913590,913589,913586,913584,913570,913561,913551,913530,913503,913478,913469,913467,913452,913448,913446,913443,913439,913436,913435,913433,913431,913429,913426,913424,913423,913421');
	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('1011799,1011788,1011781,1011776,1011764,1011760,1011757,1011740,1011729,1011724,1011710,1011706,1008506,918487,918475,916150,915503,915502,915501,915486,915484,915481,915480,915477,913620,913605,913594,913590,913589,913586,913584,913570,913561,913551,913530,913503,913478,913469,913467,913452,913448,913446,913443,913439,913436,913435,913433,913431,913429,913426,913424,913423,913421');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			if ('gallery' != '') {
						if (photos[j].galleries_id != '') {
						document.write('<a href="' + photos[j].section_code + '_' + photos[j].galleries_id + '.html">');
						}
						else {
						document.write('<a href="gallery.html">');
						}
			}
			document.write('<img src="' + photos[j].src + '" width="' + photos[j].width + '" height="' + photos[j].height + '" class="mainhomepageimage" id="mainSample" name="mainSample" alt="' + photos[j].caption  + '" border="0">');
			if ('gallery' != '') {
				document.write('</a>');
			}
			break;
		}
	}
	
}

/***************************************************************************
* Show the next image in a gallery.  field = hidden field containing       *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function next(field,img) {

	debug('IN next');
	imageID = field.value;
	
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k= j + 1;
	while (nextImg < 0) {
		for (; k < photos.length; k++) {
			debug('testing image ' + k + ': gallery = ' + photos[k].galleries_id + '(existing: ' + photos[j].galleries_id + ')');
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				debug('setting  nextImg = ' + k);
				break;
			}
		}
		if (nextImg == -1) {
			k = 0;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);
	}


}


/***************************************************************************
* Set a new image on the gallery detail page given its array position      *
***************************************************************************/
function updateImage (nextImg, field,img) {
	debug('Updating image');
	if (!basic && !(0)) {
		debug('In updateImage');
		debug('setting  img src = ' + photos[nextImg].src);
		
					
			document.getElementById('imagePhoto').innerHTML = '<img class="mainphoto" src="' + photos[nextImg].src + ' " id="mainPic" name="mainPic" width="' + photos[nextImg].width + '" height="' + photos[nextImg].height + '" alt="' + photos[nextImg].caption + '" border="0">';
						field.value = photos[nextImg].id;
			document.getElementById('imageTitle').innerHTML = photos[nextImg].caption;
			/* apply 'blank' classname to element where */			if ( photos[nextImg].caption == '') {
				document.getElementById('imageTitle').style.className = 'blank';
			}
			else {
				document.getElementById('imageTitle').style.className = 'normal';
			}
						temp = '';
			if (photos[nextImg].description != '') {
				temp = temp +  '<p id="imageDescription">' + photos[nextImg].description + '</p>';
			}
			if (photos[nextImg].photo_ref != '') {
				temp = temp + '<p class="imageinfo" id="imageRef"><strong>Ref: </strong>' + photos[nextImg].photo_ref + '</p>';
			}
			if (photos[nextImg].takendate != '') {
				debug('Resetting taken date');
				temp = temp + '<p class="imageinfo" id="imageDate"><strong>Date: </strong>' + photos[nextImg].takendate + '</p>';
			}
			
			if (photos[nextImg].location != '') {
				debug('Resetting location');
				temp = temp + '<p class="imageinfo" id="imageLocation"><strong>Location: </strong>' +  photos[nextImg].location + '</p>';
			}
			
			if (photos[nextImg].photographer != '') {
				debug('Resetting photographer');
				temp = temp + '<p class="imageinfo" id="imagePhotographer"><strong>Photographer: </strong>' + photos[nextImg].photographer + '</p>';
			}
			if (temp != '') {				temp = temp + '<div class="spacer"></div>';			}					if (temp == '') {
			document.getElementById('imageDetails').style.display = 'none';
		}
		else {
			document.getElementById('imageDetails').style.display = 'block';
		}
		document.getElementById('imageDetails').innerHTML =temp;	
		
	}
	else {
		debug('Redirecting to id ' + photos[nextImg].id);
		window.location = 'photo_' + photos[nextImg].id + '.html';
	}
}

/***************************************************************************
* Show the previous image for a gallery. field = hidden field containing   *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function previous(field,img) {


	imageID = field.value;
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k = j -1;
	while (nextImg < 0) {
		for (; k >= 0; k--) {
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				break;
			}
		}
		if (nextImg == -1) {
			k = photos.length -1;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);	
	}
}

/***************************************************************************
* Pick a photo at random from the featured images of a gallery.
        *
* Gallery_id = id of gallery to choose                                     *
* 
 img = reference to html image                                       *
* in which to show image                                                   *
***************************************************************************/
function showGalleryImage(gallery_id, img) {
	debug('Gallery = ' + gallery_id);
	for (i = 0; i < galleries.length; i++) {
		if (galleries[i].id == gallery_id) {
			imageID = randomListVal(galleries[i].featured_images);
				for (j = 0; j < photos.length; j++) {
					if (photos[j].id == imageID) {
						
						img.src = photos[j].thumbnail;
						img.width = photos[j].thumbnail_width;
						img.height = photos[j].thumbnail_height;
						
						break;
					}
				}
			break;
		}
	} 
	}

/***************************************************************************
* If we have dynamic HTML                                                  *
*  replace the galleries link with a list that                             *
* doesn't include the current gallery                                      *
***************************************************************************/
function showGalleries(gallery_id) {
	debug('Showing links for gallery ' + gallery_id);
	
	if (!basic) {
		temp = '';
		for (i = 0; i < galleries.length; i++) {
			debug('Testing gallery ' + galleries[i].id);
			
			if (galleries[i].id != gallery_id) {
				debug('Adding link');
				if (temp != '') {
					temp = temp + ' | ';
				}
				temp = temp + '<a href="gallery_' + galleries[i].id + '.html">' + galleries[i].title + '</a>';
			}
		}
		document.all.galleryLinks.innerHTML = 'Other galleries: ' + temp;
	}
}
/***************************************************************************
* Create the array of Photo objects                                        *
***************************************************************************/
photos = new Array();
photos[0] = new photo(1011706,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2652.JPG',450,338,'Flotsem','http://www1.clikpic.com/penelope/images/DSCF2652_thumb.JPG',130, 98,1, 0,'Mixed media<br>\napprox 80x50cms £300<br>\n','25/05/07','','corsica','','');
photos[1] = new photo(1011710,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2374.JPG',450,338,'Mountain path','http://www1.clikpic.com/penelope/images/DSCF2374_thumb.JPG',130, 98,1, 0,'Acrylic on canvas<br>\nFramed. 105x85cms £650','25/05/07','','Corsica 2006','','');
photos[2] = new photo(1011724,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2637.JPG',450,338,'Overlook','http://www1.clikpic.com/penelope/images/DSCF2637_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFramed approx 100x80cms £550','25/05/07','','','','');
photos[3] = new photo(1011729,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2638.JPG',450,338,'Dark rock','http://www1.clikpic.com/penelope/images/DSCF2638_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFramed approx 100x80cms £550','25/05/07','','Corsica 2007','','');
photos[4] = new photo(1011737,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2640.JPG',338,450,'Green path','http://www1.clikpic.com/penelope/images/DSCF2640_thumb.JPG',98, 130,0, 0,'Mixed media<br>\nFramed approx 100x80cms £450','25/05/07','','Corsica2007','','');
photos[5] = new photo(1011740,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2639.JPG',450,338,'Gate-stead','http://www1.clikpic.com/penelope/images/DSCF2639_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nApprox 100x80cms £525','25/05/07','','Corsica 2007','','');
photos[6] = new photo(1011757,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2641.JPG',450,338,'Pops way','http://www1.clikpic.com/penelope/images/DSCF2641_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nApprox 100x80cms £550','25/05/07','','Corsica 2007','','');
photos[7] = new photo(1011760,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2642.JPG',450,338,'Old lane','http://www1.clikpic.com/penelope/images/DSCF2642_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nApprox 100X80cms £525','25/05/07','','Corsica 2007','','');
photos[8] = new photo(1011764,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2643.JPG',450,338,'Light splash','http://www1.clikpic.com/penelope/images/DSCF2643_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFramed approx100x80cms £550','25/05/07','','Corsica 2007','','');
photos[9] = new photo(1011776,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2648.JPG',450,338,'Poppy orchard','http://www1.clikpic.com/penelope/images/DSCF2648_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFramed approx 80x50cms £300','25/05/07','','Corsica 2007','','');
photos[10] = new photo(1011781,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2649.JPG',450,338,'Corse wave','http://www1.clikpic.com/penelope/images/DSCF2649_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFramed approx 80x50cms £295','25/05/07','','Corsica 2007','','');
photos[11] = new photo(1011788,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2653.JPG',450,338,'Wild sea','http://www1.clikpic.com/penelope/images/DSCF2653_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFramed approx 100x80cms £525','25/05/07','','Corsica 2007','','');
photos[12] = new photo(1011794,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2651.JPG',450,338,'Corse spray','http://www1.clikpic.com/penelope/images/DSCF2651_thumb.JPG',130, 98,0, 0,'Mixed media<br>\nFramed approx80x50cms £295','25/05/07','','Corsica 2007','','');
photos[13] = new photo(1011799,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2654.JPG',450,338,'Corsica gorse','http://www1.clikpic.com/penelope/images/DSCF2654_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFramed approx 100x80cms £550','25/05/07','','Corsica 2007','','');
photos[14] = new photo(1008506,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2366.JPG',338,450,'Gill\'s Bluebells','http://www1.clikpic.com/penelope/images/DSCF2366_thumb.JPG',98, 130,1, 0,'Mixed media framed<br>\n£450','23/05/07','','Shropshire','','');
photos[15] = new photo(918475,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_1208lalalala0001.JPG',450,338,'Stiper-light','http://www1.clikpic.com/penelope/images/2006_1208lalalala0001_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed Approx 75x85cms. £450','20/04/07','','Shropshire 2005','','');
photos[16] = new photo(918487,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_1208lalalala0009.JPG',450,338,'Siesta','http://www1.clikpic.com/penelope/images/2006_1208lalalala0009_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed for sale with Bridgegate gallery','20/04/07','','Spain 2005','','');
photos[17] = new photo(915477,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2216.JPG',450,338,'Green Landcsape','http://www1.clikpic.com/penelope/images/DSCF2216_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx 70x80cms  £350','19/04/07','','Madeira 2007','','');
photos[18] = new photo(915480,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2215.JPG',450,338,'Fishing Boats','http://www1.clikpic.com/penelope/images/DSCF2215_thumb.JPG',130, 98,1, 1,'Mixed media  Framed,   Approx 65x55cms.  £350','19/04/07','','Madeira 2007','','');
photos[19] = new photo(915481,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2214.JPG',450,338,'Distance','http://www1.clikpic.com/penelope/images/DSCF2214_thumb.JPG',130, 98,1, 1,'Mixed Media<br>\nApprox 85x75cms. £450','19/04/07','','Pembrokeshire 2007','','');
photos[20] = new photo(915484,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2213.JPG',450,338,'Boats','http://www1.clikpic.com/penelope/images/DSCF2213_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed.  Approx 70x60cms   £350','19/04/07','','Madeira 2007','','');
photos[21] = new photo(915486,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2212.JPG',450,338,'Flora Hills','http://www1.clikpic.com/penelope/images/DSCF2212_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed Approx 85x75cms. £550','19/04/07','','Madeira 2007','','');
photos[22] = new photo(915501,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2211.JPG',450,338,'There','http://www1.clikpic.com/penelope/images/DSCF2211_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed Approx 75x85cms. £450','19/04/07','','Madeira 2007','','');
photos[23] = new photo(915502,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2210.JPG',450,338,'Coast','http://www1.clikpic.com/penelope/images/DSCF2210_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx 75x85cms. £650','19/04/07','','Pembrokeshire','','');
photos[24] = new photo(915503,'64372','','gallery','http://www1.clikpic.com/penelope/images/DSCF2206.JPG',450,338,'Side Sea','http://www1.clikpic.com/penelope/images/DSCF2206_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed Approx 75x85cms','19/04/07','','Pembrokeshire 2007','','');
photos[25] = new photo(916133,'64372','','gallery','http://www1.clikpic.com/penelope/images/2005_0324Image0072.JPG',450,338,'Stretton Light','http://www1.clikpic.com/penelope/images/2005_0324Image0072_thumb.JPG',130, 98,0, 1,'Mixed media<br>\nSOLD','19/04/07','','','','');
photos[26] = new photo(916138,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0215lalalala0068.JPG',450,338,'Powys Sheep','http://www1.clikpic.com/penelope/images/2006_0215lalalala0068_thumb.JPG',130, 98,0, 1,'Mixed media<br>\nSOLD','19/04/07','','','','');
photos[27] = new photo(916141,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0215lalalala0070.JPG',450,338,'Fore-red','http://www1.clikpic.com/penelope/images/2006_0215lalalala0070_thumb.JPG',130, 98,0, 1,'Mixed media<br>\nSOLD','19/04/07','','','','');
photos[28] = new photo(916145,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0215lalalala0074.JPG',450,338,'Winter Briar','http://www1.clikpic.com/penelope/images/2006_0215lalalala0074_thumb.JPG',130, 98,0, 1,'Acrylic on canvas<br>\nSOLD','19/04/07','','','','');
photos[29] = new photo(916148,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0011.JPG',450,338,'Hills to the Mynd','http://www1.clikpic.com/penelope/images/2006_0502lalalala0011_thumb.JPG',130, 98,0, 1,'Mixed Media<br>\nSOLD','19/04/07','','','','');
photos[30] = new photo(916149,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0096.JPG',450,338,'Coastline','http://www1.clikpic.com/penelope/images/2006_0502lalalala0096_thumb.JPG',130, 98,0, 1,'Mixed Media<br>\nSOLD','19/04/07','','','','');
photos[31] = new photo(916150,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0099.JPG',450,338,'Madeira house','http://www1.clikpic.com/penelope/images/2006_0502lalalala0099_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed Approx 75x85cms. £375','19/04/07','','Madeira','','');
photos[32] = new photo(916151,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0100.JPG',450,338,'Pink sun','http://www1.clikpic.com/penelope/images/2006_0502lalalala0100_thumb.JPG',130, 98,0, 1,'Mixed media<br>\nSOLD','19/04/07','','','','');
photos[33] = new photo(916152,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0106.JPG',450,338,'Wood','http://www1.clikpic.com/penelope/images/2006_0502lalalala0106_thumb.JPG',130, 98,0, 1,'Mixed Media','19/04/07','','','','');
photos[34] = new photo(913421,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080005.JPG',450,338,'<br>\nBluebell Wood','http://www1.clikpic.com/penelope/images/2006_12080005_thumb.JPG',130, 98,1, 0,'Acrylic.<br>\nFramed. Approx 75x85cms. £350','18/04/07','','Leigh Wood 2004','','');
photos[35] = new photo(913423,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080006.JPG',450,338,'<br>\nHeat','http://www1.clikpic.com/penelope/images/2006_12080006_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFramed. Approx 75x85cms £450','18/04/07','','Corsica 2006','','');
photos[36] = new photo(913424,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080007.JPG',450,338,'','http://www1.clikpic.com/penelope/images/2006_12080007_thumb.JPG',130, 98,1, 0,'<br>\nActon Burnall. Shropshire','18/04/07','','Shropshire 2006','','');
photos[37] = new photo(913426,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080008.JPG',450,338,'<br>\nRising Sun','http://www1.clikpic.com/penelope/images/2006_12080008_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFremed. Approx 65x75 cms £295<br>\n.','18/04/07','','Corsica 2006','','');
photos[38] = new photo(913429,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080009.JPG',450,338,'<br>\nSunflowers','http://www1.clikpic.com/penelope/images/2006_12080009_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFramed. Approx 75x85cms. £350','18/04/07','','France. 2006','','');
photos[39] = new photo(913431,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080010.JPG',450,338,'Trees 111','http://www1.clikpic.com/penelope/images/2006_12080010_thumb.JPG',130, 98,1, 0,'Mixed mrdia<br>\nFramed. Approx 75x85cms  £450','18/04/07','','Shropshire 2001','','');
photos[40] = new photo(913433,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080012.JPG',450,338,'cock-a-doodle-doo','http://www1.clikpic.com/penelope/images/2006_12080012_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFramed. Approx 75x85cms £450','18/04/07','','Leigh Hall Farm','','');
photos[41] = new photo(913435,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080013.JPG',450,338,'Light fall','http://www1.clikpic.com/penelope/images/2006_12080013_thumb.JPG',130, 98,1, 0,'Mixed media<br>\nFramed Approx 75x85 cms £550','18/04/07','','Cyprus 2004','','');
photos[42] = new photo(913436,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080014.JPG',450,338,'Lane bend','http://www1.clikpic.com/penelope/images/2006_12080014_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx 80x90 cms £450','18/04/07','','Cyprus 2005','','');
photos[43] = new photo(913439,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0014 (2).JPG',338,450,'Pembrokeshire Drop','http://www1.clikpic.com/penelope/images/2007_0227lalalala0014 (2)_thumb.JPG',98, 130,1, 1,'Mixed media<br>\nFramed Approx 75x895 cms. £395','18/04/07','','St.Davids. Pembrokeshire. 2007','','');
photos[44] = new photo(913443,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0015.JPG',450,338,'St. Julians','http://www1.clikpic.com/penelope/images/2007_0227lalalala0015_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx 75x85cms. £550','18/04/07','','Pembrokeshire 2007','','');
photos[45] = new photo(913446,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0016.JPG',450,338,'Around St. Davids','http://www1.clikpic.com/penelope/images/2007_0227lalalala0016_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nApprox 75x85cms. Framed.','18/04/07','','Pembrokeshire 2007','','');
photos[46] = new photo(913448,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0017.JPG',450,338,'Skrinkle head','http://www1.clikpic.com/penelope/images/2007_0227lalalala0017_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx75x85cms. £450','18/04/07','','Pembrokeshire 2007','','');
photos[47] = new photo(913452,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0018.JPG',450,338,'Cliffs nr St.Davids','http://www1.clikpic.com/penelope/images/2007_0227lalalala0018_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx75x85cms. £550','18/04/07','','Pembrokeshire 2007','','');
photos[48] = new photo(913469,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0020.JPG',450,338,'Cold Skrinkle','http://www1.clikpic.com/penelope/images/2007_0227lalalala0020_thumb.JPG',130, 98,1, 1,'  Mixed media Framed. Approx 75x85cms. £450','18/04/07','','Pembrokeshire 2007','','');
photos[49] = new photo(913503,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0022.JPG',450,338,'Beach','http://www1.clikpic.com/penelope/images/2007_0227lalalala0022_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. For sale with \"Art Matters\"','18/04/07','','Pembrokeshire 2005','','');
photos[50] = new photo(913530,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0024 (2).JPG',338,450,'Tulips','http://www1.clikpic.com/penelope/images/2007_0227lalalala0024 (2)_thumb.JPG',98, 130,1, 1,'Mixed media<br>\nFramed. Approx 85x95cms. For sale in \"Halls Contemporary Art Sale\".  Email..FineArt@halls.to','18/04/07','','Home 2006','','');
photos[51] = new photo(913551,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0025.JPG',450,338,'Carfaei','http://www1.clikpic.com/penelope/images/2007_0227lalalala0025_thumb.JPG',130, 98,1, 1,'Graphite sketch with inks<br>\nFramed. £550','18/04/07','','Pembrokeshire','','');
photos[52] = new photo(913561,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080031.JPG',450,338,'Trees 11','http://www1.clikpic.com/penelope/images/2006_12080031_thumb.JPG',130, 98,1, 1,'Mixed media.<br>\nSOLD','18/04/07','','Shropshire','','');
photos[53] = new photo(913570,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080033.JPG',450,338,'Nude','http://www1.clikpic.com/penelope/images/2006_12080033_thumb.JPG',130, 98,1, 1,'Canvas<br>\nAcrylic. Approx 100x100cms. £450','18/04/07','','Shrewsbury 2004','','');
photos[54] = new photo(913584,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080035.JPG',450,338,'Winter Gatten','http://www1.clikpic.com/penelope/images/2006_12080035_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx 75x85cms £550','18/04/07','','Shropshire. 2005','','');
photos[55] = new photo(913586,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080036.JPG',450,338,'Winter tree','http://www1.clikpic.com/penelope/images/2006_12080036_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx 45x35 £220','18/04/07','','Shropshire 2005','','');
photos[56] = new photo(913589,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080038.JPG',450,338,'Madeira Dawn','http://www1.clikpic.com/penelope/images/2006_12080038_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx 75x85cms £400','18/04/07','','Madeira 2006','','');
photos[57] = new photo(913590,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080039.JPG',450,338,'Cyprus hills','http://www1.clikpic.com/penelope/images/2006_12080039_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx 75x85cms £325','18/04/07','','Cyprus 2005','','');
photos[58] = new photo(913594,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_120800421.JPG',450,338,'Claire\'s Callow','http://www1.clikpic.com/penelope/images/2006_120800421_thumb.JPG',130, 98,1, 1,'Acrylic on canvas.<br>\nFramed. Approx 80x100cms. £650','18/04/07','','Shropshire','','');
photos[59] = new photo(913605,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_120800431.JPG',450,338,'Estuary','http://www1.clikpic.com/penelope/images/2006_120800431_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx 75x85cms £325','18/04/07','','West Wales 2004','','');
photos[60] = new photo(913625,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0001.JPG',450,338,'Cliff Drop','http://www1.clikpic.com/penelope/images/2006_0502lalalala0001_thumb.JPG',130, 98,0, 1,'Graphite sketch with watercolour SOLD','18/04/07','','Pembrokeshire','','');
photos[61] = new photo(913630,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0004.JPG',450,338,'Carfaei 1','http://www1.clikpic.com/penelope/images/2006_0502lalalala0004_thumb.JPG',130, 98,0, 1,'Mixed media SOLD','18/04/07','','Pembrokeshire, 2006','','');
photos[62] = new photo(913632,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0006.JPG',450,338,'Almond Tree','http://www1.clikpic.com/penelope/images/2006_0502lalalala0006_thumb.JPG',130, 98,0, 1,'Mixed media SOLD','18/04/07','','Spain 2005','','');
photos[63] = new photo(913698,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0007.JPG',450,338,'Backwater','http://www1.clikpic.com/penelope/images/2006_0502lalalala0007_thumb.JPG',130, 98,0, 1,'Mixed media SOLD','18/04/07','','','','');
photos[64] = new photo(913738,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0005.JPG',450,338,'Grass Light','http://www1.clikpic.com/penelope/images/2006_0502lalalala0005_thumb.JPG',130, 98,0, 1,'Mixed media<br>\nFramed. £395 Approx 75x85cms','18/04/07','','Corsica2005','','');
photos[65] = new photo(913747,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0008.JPG',450,338,'Solva Head','http://www1.clikpic.com/penelope/images/2006_0502lalalala0008_thumb.JPG',130, 98,0, 1,'Mixed media  SOLD','18/04/07','','Pembrokeshire','','');
photos[66] = new photo(913757,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0009.JPG',450,338,'Sea Wave','http://www1.clikpic.com/penelope/images/2006_0502lalalala0009_thumb.JPG',130, 98,0, 1,'Mixed media SOLD','18/04/07','','Pembrokeshire','','');
photos[67] = new photo(911489,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080015.JPG',450,338,'Haughmond Abbey','http://www1.clikpic.com/penelope/images/2006_12080015_thumb.JPG',130, 98,0, 1,'Mixed media.Framed. Approx 75cms x 85cms','17/04/07','','','','');
photos[68] = new photo(911507,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250005.JPG',450,338,'Stormy Waters','http://www1.clikpic.com/penelope/images/2006_11250005_thumb.JPG',130, 98,0, 0,'Graphite Sketch.<br>\nFramed.  Approx 70 cms x 80 cms.','17/04/07','','','','');
photos[69] = new photo(911512,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250008.JPG',450,338,'<br>\nCedar Blue','http://www1.clikpic.com/penelope/images/2006_11250008_thumb.JPG',130, 98,0, 1,'Mixed Media.<br>\nFramed. Approx 75x85cms  £550','17/04/07','','','','');
photos[70] = new photo(911519,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250009.JPG',450,338,'<br>\nCallow Haven','http://www1.clikpic.com/penelope/images/2006_11250009_thumb.JPG',130, 98,0, 0,'Acrylic on canvas.<br>\nApprox 3ftx4ft. £1200','17/04/07','','','','');
photos[71] = new photo(911529,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250002.JPG',450,338,'<br>\nFiers Gorge','http://www1.clikpic.com/penelope/images/2006_11250002_thumb.JPG',130, 98,0, 0,'Acrylic on canvas.<br>\nApprox 100x80 cms. £650','17/04/07','','','','');
photos[72] = new photo(911542,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250014.JPG',450,338,'<br>\nSea between the trees','http://www1.clikpic.com/penelope/images/2006_11250014_thumb.JPG',130, 98,0, 0,'Mixed media.<br>\nApprox 75x85 cms £450','17/04/07','','','','');
photos[73] = new photo(911548,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250015.JPG',450,338,'<br>\nSea trees','http://www1.clikpic.com/penelope/images/2006_11250015_thumb.JPG',130, 98,0, 0,'<br>\n SOLD','17/04/07','','','','');
photos[74] = new photo(911562,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080001.JPG',450,338,' Shropshire Way','http://www1.clikpic.com/penelope/images/2006_12080001_thumb.JPG',130, 98,0, 0,'Mixed media<br>\nFramed. Approx 75x85 cms £550  SOLD','17/04/07','','','','');
photos[75] = new photo(911573,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080002.JPG',450,338,'<br>\nOlive Shade','http://www1.clikpic.com/penelope/images/2006_12080002_thumb.JPG',130, 98,0, 0,'<br>\n  Not for sale','17/04/07','','','','');
photos[76] = new photo(911601,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080003.JPG',450,338,'<br>\n Cockeral','http://www1.clikpic.com/penelope/images/2006_12080003_thumb.JPG',130, 98,0, 0,'<br>\n  SOLD','17/04/07','','','','');
photos[77] = new photo(911616,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080004.JPG',450,338,'<br>\nLilies','http://www1.clikpic.com/penelope/images/2006_12080004_thumb.JPG',130, 98,0, 0,'<br>\n  SOLD','17/04/07','','','','');
photos[78] = new photo(907792,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0004.JPG',450,338,'sunsea','http://www1.clikpic.com/penelope/images/2007_0227lalalala0004_thumb.JPG',130, 98,0, 0,'','16/04/07','','','','');
photos[79] = new photo(907804,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0005.JPG',450,338,'Manorbier','http://www1.clikpic.com/penelope/images/2007_0227lalalala0005_thumb.JPG',130, 98,0, 0,'','16/04/07','','','','');
photos[80] = new photo(907809,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0006.JPG',450,338,'My Barafundle','http://www1.clikpic.com/penelope/images/2007_0227lalalala0006_thumb.JPG',130, 98,0, 0,'','16/04/07','','','','');
photos[81] = new photo(907819,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0010 (2).JPG',338,450,'Pheasants Two','http://www1.clikpic.com/penelope/images/2007_0227lalalala0010 (2)_thumb.JPG',98, 130,0, 0,'','16/04/07','','','','');
photos[82] = new photo(907825,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0008.JPG',450,338,'Skrinkle Set','http://www1.clikpic.com/penelope/images/2007_0227lalalala0008_thumb.JPG',130, 98,0, 0,'','16/04/07','','','','');
photos[83] = new photo(907834,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0011 (2).JPG',338,450,'Pheasants Three','http://www1.clikpic.com/penelope/images/2007_0227lalalala0011 (2)_thumb.JPG',98, 130,0, 0,'','16/04/07','','','','');
photos[84] = new photo(907842,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0012 (2).JPG',338,450,'Manorbier View','http://www1.clikpic.com/penelope/images/2007_0227lalalala0012 (2)_thumb.JPG',98, 130,0, 0,'','16/04/07','','','','');
photos[85] = new photo(907848,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0013 (2).JPG',338,450,'Strumble','http://www1.clikpic.com/penelope/images/2007_0227lalalala0013 (2)_thumb.JPG',98, 130,0, 0,'','16/04/07','','','','');
photos[86] = new photo(907916,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_112500011.JPG',450,338,'Solva Head','http://www1.clikpic.com/penelope/images/2006_112500011_thumb.JPG',130, 98,0, 0,'','16/04/07','','','','');
photos[87] = new photo(834413,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080041 (2).JPG',338,450,'purple flower','http://www1.clikpic.com/penelope/images/2006_12080041 (2)_thumb.JPG',98, 130,0, 0,'','18/03/07','','','','');
photos[88] = new photo(834439,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080043.JPG',450,338,'seaside','http://www1.clikpic.com/penelope/images/2006_12080043_thumb.JPG',130, 98,0, 0,'','18/03/07','','','','');
photos[89] = new photo(834440,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080044 (2).JPG',338,450,'grazing sheep','http://www1.clikpic.com/penelope/images/2006_12080044 (2)_thumb.JPG',98, 130,0, 0,'','18/03/07','','','','');
photos[90] = new photo(834447,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080045 (2).JPG',338,450,'welsh valley','http://www1.clikpic.com/penelope/images/2006_12080045 (2)_thumb.JPG',98, 130,0, 0,'','18/03/07','','','','');
photos[91] = new photo(834467,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250001.JPG',450,338,'coastline wales','http://www1.clikpic.com/penelope/images/2006_11250001_thumb.JPG',130, 98,0, 0,'','18/03/07','','','','');
photos[92] = new photo(834471,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250003 (2).JPG',338,450,'farmyard animals and cat','http://www1.clikpic.com/penelope/images/2006_11250003 (2)_thumb.JPG',98, 130,0, 0,'','18/03/07','','','','');
photos[93] = new photo(834473,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250004 (2).JPG',338,450,'apples','http://www1.clikpic.com/penelope/images/2006_11250004 (2)_thumb.JPG',98, 130,0, 0,'','18/03/07','','','','');
photos[94] = new photo(834476,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250007.JPG',450,338,'fishing boats,madeira','http://www1.clikpic.com/penelope/images/2006_11250007_thumb.JPG',130, 98,0, 0,'','18/03/07','','','','');
photos[95] = new photo(834482,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250011.JPG',450,338,'olive grove,madeira','http://www1.clikpic.com/penelope/images/2006_11250011_thumb.JPG',130, 98,0, 0,'','18/03/07','','','','');
photos[96] = new photo(834484,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250012.JPG',450,338,'two olive trees,madeira','http://www1.clikpic.com/penelope/images/2006_11250012_thumb.JPG',130, 98,0, 0,'','18/03/07','','','','');
photos[97] = new photo(832851,'64372','penelope1','gallery','http://www1.clikpic.com/penelope/images/2006_12080022.JPG',450,338,'Newgale','http://www1.clikpic.com/penelope/images/2006_12080022_thumb.JPG',130, 98,0, 0,'','','','','','');
photos[98] = new photo(832883,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080017.JPG',450,338,'Termitemound','http://www1.clikpic.com/penelope/images/2006_12080017_thumb.JPG',130, 98,0, 0,'','','','','','');
photos[99] = new photo(832889,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080016 (2)1.JPG',338,450,'2Janes','http://www1.clikpic.com/penelope/images/2006_12080016 (2)1_thumb.JPG',98, 130,0, 0,'','','','','','');
photos[100] = new photo(832902,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080020 (2).JPG',338,450,'Coastline','http://www1.clikpic.com/penelope/images/2006_12080020 (2)_thumb.JPG',98, 130,0, 0,'','','','','','');
photos[101] = new photo(832903,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080024.JPG',450,338,'Dawnsea','http://www1.clikpic.com/penelope/images/2006_12080024_thumb.JPG',130, 98,0, 0,'','','','','','');
photos[102] = new photo(832910,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080025 (2).JPG',338,450,'Pinklane','http://www1.clikpic.com/penelope/images/2006_12080025 (2)_thumb.JPG',98, 130,0, 0,'','','','','','');
photos[103] = new photo(832911,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080026.JPG',450,338,'Seafront','http://www1.clikpic.com/penelope/images/2006_12080026_thumb.JPG',130, 98,0, 0,'','','','','','');
photos[104] = new photo(832912,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080027.JPG',450,338,'Gorgeceiling','http://www1.clikpic.com/penelope/images/2006_12080027_thumb.JPG',130, 98,0, 0,'','','','','','');
photos[105] = new photo(832915,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080028 (2).JPG',338,450,'Absentmines','http://www1.clikpic.com/penelope/images/2006_12080028 (2)_thumb.JPG',98, 130,0, 0,'','','','','','');
photos[106] = new photo(832937,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080030 (2).JPG',338,450,'Redhouse','http://www1.clikpic.com/penelope/images/2006_12080030 (2)_thumb.JPG',98, 130,0, 0,'','','','','','');
photos[107] = new photo(832938,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080034.JPG',450,338,'Graphitesketch','http://www1.clikpic.com/penelope/images/2006_12080034_thumb.JPG',130, 98,0, 0,'','','','','','');
photos[108] = new photo(832963,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080037 (3).JPG',338,450,'Corndon','http://www1.clikpic.com/penelope/images/2006_12080037 (3)_thumb.JPG',98, 130,0, 0,'','','','','','');
photos[109] = new photo(834415,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_12080042.JPG',450,338,'olive grove','http://www1.clikpic.com/penelope/images/2006_12080042_thumb.JPG',130, 98,0, 0,'','','','','','');
photos[110] = new photo(911535,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250013.JPG',450,338,'<br>\nOversea','http://www1.clikpic.com/penelope/images/2006_11250013_thumb.JPG',130, 98,0, 0,'Mixed Media.<br>\nFramed. Approx 75x85cms. £350','','','','','');
photos[111] = new photo(911555,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_11250016.JPG',450,338,'<br>\nDeep Shadow','http://www1.clikpic.com/penelope/images/2006_11250016_thumb.JPG',130, 98,0, 0,'Mixed Media<br>\nFramed. Approx 75x85cms £450','','','','','');
photos[112] = new photo(913467,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0019.JPG',450,338,'Manorbier Dune','http://www1.clikpic.com/penelope/images/2007_0227lalalala0019_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed. Approx 75x85cms. £550','','','Pembrokeshire 2007','','');
photos[113] = new photo(913478,'64372','','gallery','http://www1.clikpic.com/penelope/images/2007_0227lalalala0021.JPG',450,338,'Skrinkle Wet','http://www1.clikpic.com/penelope/images/2007_0227lalalala0021_thumb.JPG',130, 98,1, 1,'Mixed media<br>\nFramed Approx75x85cms. £450','','','Pembrokeshire 2007','','');
photos[114] = new photo(913620,'64372','','gallery','http://www1.clikpic.com/penelope/images/2006_0502lalalala0003.JPG',450,338,'Pheasants','http://www1.clikpic.com/penelope/images/2006_0502lalalala0003_thumb.JPG',130, 98,1, 1,'Mixed media.<br>\nSold','','','','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(64372,'918487,918475,916152,916151,916150,916149,916148,916145,916141,916138,916133,915503,915502,915501,915486,915484,915481,915480,915477,913757,913747,913738,913698,913632,913630,913625,913620,913605,913594,913590,913589,913586,913584,913570,913561,913551,913530,913503,913478,913469,913467,913452,913448,913446,913443,913439,913436,911512,911489','Gallery2','gallery');

