/***************************************************************************
* 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) {
	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;
}
/***************************************************************************
* 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('815510,815509,815508,815507,815506,815504,815502,815500,815497,815494,815492,815490,815488,815486,815485,815483,815482,815480,815478,815475,815474,815473,815472,815470,815469,815467,815465,815464,815463,815462,815461,815460,815459,815458,815457,815456,815454,815453,815451,815450,815449,815448,815445,815441,815439,815438,815436,815435,815433,815432');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			if (!basic) {
			img.src = 'images/' + 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 = 'images/' + 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('815510,815509,815508,815507,815506,815504,815502,815500,815497,815494,815492,815490,815488,815486,815485,815483,815482,815480,815478,815475,815474,815473,815472,815470,815469,815467,815465,815464,815463,815462,815461,815460,815459,815458,815457,815456,815454,815453,815451,815450,815449,815448,815445,815441,815439,815438,815436,815435,815433,815432');
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			if (photos[j].galleries_id != '') {
						document.write('<a href="' + photos[j].section_code + '_' + photos[j].galleries_id + '.html">');
						}
						else {
						document.write('<a href="section90980.html">');
						}
			document.write('<img src="images/' + photos[j].src + '" width="' + photos[j].width + '" height="' + photos[j].height + '" class="mainhomepageimage" id="mainSample" name="mainSample" alt="' + photos[j].caption  + '" border="0">');
			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="images/' + 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;
			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.visibility = 'hidden';
		}
		else {
			document.getElementById('imageDetails').style.visibility = 'visible';
		}
		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('Image = ' + 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 = 'images/' + 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(811110,'62655','','section90993','Deborah&Declan_01.jpg',400,491,'','Deborah&Declan_01_thumb.jpg',130, 160,0, 0,'','','','');
photos[1] = new photo(811111,'62655','','section90993','Deborah&Declan_02.jpg',400,267,'','Deborah&Declan_02_thumb.jpg',130, 87,0, 0,'','','','');
photos[2] = new photo(811112,'62655','','section90993','Deborah&Declan_03.jpg',400,511,'','Deborah&Declan_03_thumb.jpg',130, 166,0, 0,'','','','');
photos[3] = new photo(811114,'62655','','section90993','Deborah&Declan_04.jpg',400,554,'','Deborah&Declan_04_thumb.jpg',130, 180,0, 0,'','','','');
photos[4] = new photo(811115,'62655','','section90993','Deborah&Declan_05.jpg',395,600,'','Deborah&Declan_05_thumb.jpg',130, 197,0, 0,'','','','');
photos[5] = new photo(811116,'62655','','section90993','Deborah&Declan_06.jpg',400,277,'','Deborah&Declan_06_thumb.jpg',130, 90,0, 0,'','','','');
photos[6] = new photo(811118,'62655','','section90993','Deborah&Declan_07.jpg',400,562,'','Deborah&Declan_07_thumb.jpg',130, 183,0, 0,'','','','');
photos[7] = new photo(811119,'62655','','section90993','Deborah&Declan_08.jpg',400,529,'','Deborah&Declan_08_thumb.jpg',130, 172,0, 0,'','','','');
photos[8] = new photo(811121,'62655','','section90993','Deborah&Declan_09.jpg',400,659,'','Deborah&Declan_09_thumb.jpg',130, 214,0, 0,'','','','');
photos[9] = new photo(811123,'62655','','section90993','Deborah&Declan_10.jpg',378,600,'','Deborah&Declan_10_thumb.jpg',130, 206,0, 0,'','','','');
photos[10] = new photo(811124,'62655','','section90993','Deborah&Declan_11.jpg',400,538,'','Deborah&Declan_11_thumb.jpg',130, 175,0, 0,'','','','');
photos[11] = new photo(811125,'62655','','section90993','Deborah&Declan_12.jpg',400,532,'','Deborah&Declan_12_thumb.jpg',130, 173,0, 0,'','','','');
photos[12] = new photo(811127,'62655','','section90993','Deborah&Declan_13.jpg',400,522,'','Deborah&Declan_13_thumb.jpg',130, 170,0, 0,'','','','');
photos[13] = new photo(811128,'62655','','section90993','Deborah&Declan_14.jpg',400,577,'','Deborah&Declan_14_thumb.jpg',130, 188,0, 0,'','','','');
photos[14] = new photo(811129,'62655','','section90993','Deborah&Declan_15.jpg',400,278,'','Deborah&Declan_15_thumb.jpg',130, 90,0, 0,'','','','');
photos[15] = new photo(811131,'62655','','section90993','Deborah&Declan_16.jpg',400,503,'','Deborah&Declan_16_thumb.jpg',130, 163,0, 0,'','','','');
photos[16] = new photo(811132,'62655','','section90993','Deborah&Declan_17.jpg',370,600,'','Deborah&Declan_17_thumb.jpg',130, 211,0, 0,'','','','');
photos[17] = new photo(811133,'62655','','section90993','Deborah&Declan_18.jpg',400,577,'','Deborah&Declan_18_thumb.jpg',130, 188,0, 0,'','','','');
photos[18] = new photo(811134,'62655','','section90993','Deborah&Declan_19.jpg',400,563,'','Deborah&Declan_19_thumb.jpg',130, 183,0, 0,'','','','');
photos[19] = new photo(811135,'62655','','section90993','Deborah&Declan_20.jpg',396,600,'','Deborah&Declan_20_thumb.jpg',130, 197,0, 0,'','','','');
photos[20] = new photo(811137,'62655','','section90993','Deborah&Declan_21.jpg',400,216,'','Deborah&Declan_21_thumb.jpg',130, 70,0, 0,'','','','');
photos[21] = new photo(811138,'62655','','section90993','Deborah&Declan_22.jpg',400,495,'','Deborah&Declan_22_thumb.jpg',130, 161,0, 0,'','','','');
photos[22] = new photo(811139,'62655','','section90993','Deborah&Declan_23.jpg',400,253,'','Deborah&Declan_23_thumb.jpg',130, 82,0, 0,'','','','');
photos[23] = new photo(811141,'62655','','section90993','Deborah&Declan_25.jpg',357,600,'','Deborah&Declan_25_thumb.jpg',130, 218,0, 0,'','','','');
photos[24] = new photo(811168,'62655','','section90993','Deborah&Declan_26.jpg',400,265,'','Deborah&Declan_26_thumb.jpg',130, 86,0, 0,'','','','');
photos[25] = new photo(811190,'62655','','section90993','Deborah&Declan_27.jpg',400,270,'','Deborah&Declan_27_thumb.jpg',130, 88,0, 0,'','','','');
photos[26] = new photo(811191,'62655','','section90993','Deborah&Declan_28.jpg',400,246,'','Deborah&Declan_28_thumb.jpg',130, 80,0, 0,'','','','');
photos[27] = new photo(811192,'62655','','section90993','Deborah&Declan_29.jpg',400,267,'','Deborah&Declan_29_thumb.jpg',130, 87,0, 0,'','','','');
photos[28] = new photo(811195,'62655','','section90993','Deborah&Declan_32.jpg',400,267,'','Deborah&Declan_32_thumb.jpg',130, 87,0, 0,'','','','');
photos[29] = new photo(811199,'62655','','section90993','Deborah&Declan_33.jpg',400,600,'','Deborah&Declan_33_thumb.jpg',130, 195,0, 0,'','','','');
photos[30] = new photo(811201,'62655','','section90993','Deborah&Declan_35.jpg',400,205,'','Deborah&Declan_35_thumb.jpg',130, 67,0, 0,'','','','');
photos[31] = new photo(811203,'62655','','section90993','Deborah&Declan_36.jpg',400,267,'','Deborah&Declan_36_thumb.jpg',130, 87,0, 0,'','','','');
photos[32] = new photo(811205,'62655','','section90993','Deborah&Declan_37.jpg',400,538,'','Deborah&Declan_37_thumb.jpg',130, 175,0, 0,'','','','');
photos[33] = new photo(811206,'62655','','section90993','Deborah&Declan_38.jpg',390,600,'','Deborah&Declan_38_thumb.jpg',130, 200,0, 0,'','','','');
photos[34] = new photo(811477,'62657','','section90993','Gallery 3_011.jpg',400,500,'','Gallery 3_011_thumb.jpg',130, 163,0, 0,'','','','');
photos[35] = new photo(811479,'62657','','section90993','Gallery 3_021.jpg',400,558,'','Gallery 3_021_thumb.jpg',130, 181,0, 0,'','','','');
photos[36] = new photo(811482,'62657','','section90993','Gallery 3_041.jpg',400,267,'','Gallery 3_041_thumb.jpg',130, 87,0, 0,'','','','');
photos[37] = new photo(811484,'62657','','section90993','Gallery 3_061.jpg',400,500,'','Gallery 3_061_thumb.jpg',130, 163,0, 0,'','','','');
photos[38] = new photo(811485,'62657','','section90993','Gallery 3_071.jpg',400,320,'','Gallery 3_071_thumb.jpg',130, 104,0, 0,'','','','');
photos[39] = new photo(811487,'62657','','section90993','Gallery 3_081.jpg',400,600,'','Gallery 3_081_thumb.jpg',130, 195,0, 0,'','','','');
photos[40] = new photo(811489,'62657','','section90993','Gallery 3_091.jpg',400,249,'','Gallery 3_091_thumb.jpg',130, 81,0, 0,'','','','');
photos[41] = new photo(811491,'62657','','section90993','Gallery 3_101.jpg',400,556,'','Gallery 3_101_thumb.jpg',130, 181,0, 0,'','','','');
photos[42] = new photo(811492,'62657','','section90993','Gallery 3_111.jpg',382,600,'','Gallery 3_111_thumb.jpg',130, 204,0, 0,'','','','');
photos[43] = new photo(811493,'62657','','section90993','Gallery 3_121.jpg',400,530,'','Gallery 3_121_thumb.jpg',130, 172,0, 0,'','','','');
photos[44] = new photo(811496,'62657','','section90993','Gallery 3_131.jpg',400,210,'','Gallery 3_131_thumb.jpg',130, 68,0, 0,'','','','');
photos[45] = new photo(811498,'62657','','section90993','Gallery 3_141.jpg',400,574,'','Gallery 3_141_thumb.jpg',130, 187,0, 0,'','','','');
photos[46] = new photo(811499,'62657','','section90993','Gallery 3_151.jpg',400,535,'','Gallery 3_151_thumb.jpg',130, 174,0, 0,'','','','');
photos[47] = new photo(811501,'62657','','section90993','Gallery 3_161.jpg',400,585,'','Gallery 3_161_thumb.jpg',130, 190,0, 0,'','','','');
photos[48] = new photo(811502,'62657','','section90993','Gallery 3_171.jpg',400,518,'','Gallery 3_171_thumb.jpg',130, 168,0, 0,'','','','');
photos[49] = new photo(811503,'62657','','section90993','Gallery 3_181.jpg',400,292,'','Gallery 3_181_thumb.jpg',130, 95,0, 0,'','','','');
photos[50] = new photo(811504,'62657','','section90993','Gallery 3_191.jpg',400,296,'','Gallery 3_191_thumb.jpg',130, 96,0, 0,'','','','');
photos[51] = new photo(811505,'62657','','section90993','Gallery 3_201.jpg',400,522,'','Gallery 3_201_thumb.jpg',130, 170,0, 0,'','','','');
photos[52] = new photo(811506,'62657','','section90993','Gallery 3_211.jpg',400,538,'','Gallery 3_211_thumb.jpg',130, 175,0, 0,'','','','');
photos[53] = new photo(811508,'62657','','section90993','Gallery 3_221.jpg',400,561,'','Gallery 3_221_thumb.jpg',130, 182,0, 0,'','','','');
photos[54] = new photo(811509,'62657','','section90993','Gallery 3_241.jpg',400,239,'','Gallery 3_241_thumb.jpg',130, 78,0, 0,'','','','');
photos[55] = new photo(811510,'62657','','section90993','Gallery 3_251.jpg',400,580,'','Gallery 3_251_thumb.jpg',130, 189,0, 0,'','','','');
photos[56] = new photo(811511,'62657','','section90993','Gallery 3_261.jpg',347,600,'','Gallery 3_261_thumb.jpg',130, 225,0, 0,'','','','');
photos[57] = new photo(811512,'62657','','section90993','Gallery 3_271.jpg',345,463,'','Gallery 3_271_thumb.jpg',130, 174,0, 0,'','','','');
photos[58] = new photo(811513,'62657','','section90993','Gallery 3_281.jpg',400,265,'','Gallery 3_281_thumb.jpg',130, 86,0, 0,'','','','');
photos[59] = new photo(811514,'62657','','section90993','Gallery 3_291.jpg',400,320,'','Gallery 3_291_thumb.jpg',130, 104,0, 0,'','','','');
photos[60] = new photo(811517,'62657','','section90993','Gallery 3_302.jpg',400,600,'','Gallery 3_302_thumb.jpg',130, 195,0, 0,'','','','');
photos[61] = new photo(811518,'62657','','section90993','Gallery 3_311.jpg',400,536,'','Gallery 3_311_thumb.jpg',130, 174,0, 0,'','','','');
photos[62] = new photo(811519,'62657','','section90993','Gallery 3_321.jpg',400,590,'','Gallery 3_321_thumb.jpg',130, 192,0, 0,'','','','');
photos[63] = new photo(811521,'62657','','section90993','Gallery 3_341.jpg',400,501,'','Gallery 3_341_thumb.jpg',130, 163,0, 0,'','','','');
photos[64] = new photo(811522,'62657','','section90993','Gallery 3_351.jpg',400,316,'','Gallery 3_351_thumb.jpg',130, 103,0, 0,'','','','');
photos[65] = new photo(811523,'62657','','section90993','Gallery 3_361.jpg',400,234,'','Gallery 3_361_thumb.jpg',130, 76,0, 0,'','','','');
photos[66] = new photo(811525,'62657','','section90993','Gallery 3_371.jpg',400,287,'','Gallery 3_371_thumb.jpg',130, 93,0, 0,'','','','');
photos[67] = new photo(811528,'62658','','section90993','Gallery 4_01.jpg',392,600,'','Gallery 4_01_thumb.jpg',130, 199,0, 0,'','','','');
photos[68] = new photo(811530,'62658','','section90993','Gallery 4_02.jpg',400,267,'','Gallery 4_02_thumb.jpg',130, 87,0, 0,'','','','');
photos[69] = new photo(811531,'62658','','section90993','Gallery 4_03.jpg',271,600,'','Gallery 4_03_thumb.jpg',130, 288,0, 0,'','','','');
photos[70] = new photo(811533,'62658','','section90993','Gallery 4_04.jpg',384,600,'','Gallery 4_04_thumb.jpg',130, 203,0, 0,'','','','');
photos[71] = new photo(811534,'62658','','section90993','Gallery 4_05.jpg',400,566,'','Gallery 4_05_thumb.jpg',130, 184,0, 0,'','','','');
photos[72] = new photo(811535,'62658','','section90993','Gallery 4_06.jpg',400,553,'','Gallery 4_06_thumb.jpg',130, 180,0, 0,'','','','');
photos[73] = new photo(811539,'62658','','section90993','Gallery 4_07.jpg',400,525,'','Gallery 4_07_thumb.jpg',130, 171,0, 0,'','','','');
photos[74] = new photo(811540,'62658','','section90993','Gallery 4_08.jpg',400,531,'','Gallery 4_08_thumb.jpg',130, 173,0, 0,'','','','');
photos[75] = new photo(811542,'62658','','section90993','Gallery 4_09.jpg',400,243,'','Gallery 4_09_thumb.jpg',130, 79,0, 0,'','','','');
photos[76] = new photo(811543,'62658','','section90993','Gallery 4_10.jpg',368,600,'','Gallery 4_10_thumb.jpg',130, 212,0, 0,'','','','');
photos[77] = new photo(811545,'62658','','section90993','Gallery 4_11.jpg',400,247,'','Gallery 4_11_thumb.jpg',130, 80,0, 0,'','','','');
photos[78] = new photo(811546,'62658','','section90993','Gallery 4_12.jpg',400,252,'','Gallery 4_12_thumb.jpg',130, 82,0, 0,'','','','');
photos[79] = new photo(811547,'62658','','section90993','Gallery 4_13.jpg',400,230,'','Gallery 4_13_thumb.jpg',130, 75,0, 0,'','','','');
photos[80] = new photo(811549,'62658','','section90993','Gallery 4_141.jpg',400,352,'','Gallery 4_141_thumb.jpg',130, 114,0, 0,'','','','');
photos[81] = new photo(811557,'62658','','section90993','Gallery 4_15.jpg',400,233,'','Gallery 4_15_thumb.jpg',130, 76,0, 0,'','','','');
photos[82] = new photo(811577,'62658','','section90993','Gallery 4_16.jpg',400,590,'','Gallery 4_16_thumb.jpg',130, 192,0, 0,'','','','');
photos[83] = new photo(811580,'62658','','section90993','Gallery 4_17.jpg',400,504,'','Gallery 4_17_thumb.jpg',130, 164,0, 0,'','','','');
photos[84] = new photo(811581,'62658','','section90993','Gallery 4_18.jpg',393,600,'','Gallery 4_18_thumb.jpg',130, 198,0, 0,'','','','');
photos[85] = new photo(811588,'62656','','section90993','Gallery 2_012.jpg',386,600,'','Gallery 2_012_thumb.jpg',130, 202,0, 0,'','','','');
photos[86] = new photo(811589,'62656','','section90993','Gallery 2_022.jpg',397,600,'','Gallery 2_022_thumb.jpg',130, 196,0, 0,'','','','');
photos[87] = new photo(811590,'62656','','section90993','Gallery 2_031.jpg',400,558,'','Gallery 2_031_thumb.jpg',130, 181,0, 0,'','','','');
photos[88] = new photo(811591,'62656','','section90993','Gallery 2_041.jpg',334,600,'','Gallery 2_041_thumb.jpg',130, 234,0, 0,'','','','');
photos[89] = new photo(811593,'62656','','section90993','Gallery 2_051.jpg',400,531,'','Gallery 2_051_thumb.jpg',130, 173,0, 0,'','','','');
photos[90] = new photo(811594,'62656','','section90993','Gallery 2_061.jpg',400,269,'','Gallery 2_061_thumb.jpg',130, 87,0, 0,'','','','');
photos[91] = new photo(811595,'62656','','section90993','Gallery 2_071.jpg',400,217,'','Gallery 2_071_thumb.jpg',130, 71,0, 0,'','','','');
photos[92] = new photo(811597,'62656','','section90993','Gallery 2_081.jpg',400,226,'','Gallery 2_081_thumb.jpg',130, 73,0, 0,'','','','');
photos[93] = new photo(811598,'62656','','section90993','Gallery 2_091.jpg',400,267,'','Gallery 2_091_thumb.jpg',130, 87,0, 0,'','','','');
photos[94] = new photo(811605,'62656','','section90993','Gallery 2_101.jpg',400,267,'','Gallery 2_101_thumb.jpg',130, 87,0, 0,'','','','');
photos[95] = new photo(811622,'62656','','section90993','Gallery 2_111.jpg',400,523,'','Gallery 2_111_thumb.jpg',130, 170,0, 0,'','','','');
photos[96] = new photo(811623,'62656','','section90993','Gallery 2_121.jpg',400,291,'','Gallery 2_121_thumb.jpg',130, 95,0, 0,'','','','');
photos[97] = new photo(811624,'62656','','section90993','Gallery 2_131.jpg',400,242,'','Gallery 2_131_thumb.jpg',130, 79,0, 0,'','','','');
photos[98] = new photo(811627,'62656','','section90993','Gallery 2_141.jpg',400,221,'','Gallery 2_141_thumb.jpg',130, 72,0, 0,'','','','');
photos[99] = new photo(811628,'62656','','section90993','Gallery 2_151.jpg',400,377,'','Gallery 2_151_thumb.jpg',130, 123,0, 0,'','','','');
photos[100] = new photo(811629,'62656','','section90993','Gallery 2_161.jpg',400,309,'','Gallery 2_161_thumb.jpg',130, 100,0, 0,'','','','');
photos[101] = new photo(811630,'62656','','section90993','Gallery 2_171.jpg',400,225,'','Gallery 2_171_thumb.jpg',130, 73,0, 0,'','','','');
photos[102] = new photo(811637,'62656','','section90993','Gallery 2_191.jpg',400,220,'','Gallery 2_191_thumb.jpg',130, 72,0, 0,'','','','');
photos[103] = new photo(811650,'62656','','section90993','Gallery 2_201.jpg',400,600,'','Gallery 2_201_thumb.jpg',130, 195,0, 0,'','','','');
photos[104] = new photo(811651,'62656','','section90993','Gallery 2_211.jpg',400,215,'','Gallery 2_211_thumb.jpg',130, 70,0, 0,'','','','');
photos[105] = new photo(811652,'62656','','section90993','Gallery 2_221.jpg',400,263,'','Gallery 2_221_thumb.jpg',130, 85,0, 0,'','','','');
photos[106] = new photo(811654,'62656','','section90993','Gallery 2_231.jpg',400,272,'','Gallery 2_231_thumb.jpg',130, 88,0, 0,'','','','');
photos[107] = new photo(811655,'62657','','section90993','Gallery 2_241.jpg',400,549,'','Gallery 2_241_thumb.jpg',130, 178,0, 0,'','','','');
photos[108] = new photo(811656,'62656','','section90993','Gallery 2_251.jpg',370,600,'','Gallery 2_251_thumb.jpg',130, 211,0, 0,'','','','');
photos[109] = new photo(811672,'62656','','section90993','Gallery 2_261.jpg',400,591,'','Gallery 2_261_thumb.jpg',130, 192,0, 0,'','','','');
photos[110] = new photo(811673,'62656','','section90993','Gallery 2_271.jpg',400,289,'','Gallery 2_271_thumb.jpg',130, 94,0, 0,'','','','');
photos[111] = new photo(811674,'62656','','section90993','Gallery 2_281.jpg',390,600,'','Gallery 2_281_thumb.jpg',130, 200,0, 0,'','','','');
photos[112] = new photo(811675,'62656','','section90993','Gallery 2_291.jpg',400,281,'','Gallery 2_291_thumb.jpg',130, 91,0, 0,'','','','');
photos[113] = new photo(811677,'62656','','section90993','Gallery 2_301.jpg',400,236,'','Gallery 2_301_thumb.jpg',130, 77,0, 0,'','','','');
photos[114] = new photo(811678,'62656','','section90993','Gallery 2_311.jpg',400,250,'','Gallery 2_311_thumb.jpg',130, 81,0, 0,'','','','');
photos[115] = new photo(811679,'62656','','section90993','Gallery 2_321.jpg',400,474,'','Gallery 2_321_thumb.jpg',130, 154,0, 0,'','','','');
photos[116] = new photo(811680,'62656','','section90993','Gallery 2_331.jpg',400,475,'','Gallery 2_331_thumb.jpg',130, 154,0, 0,'','','','');
photos[117] = new photo(811682,'62656','','section90993','Gallery 2_341.jpg',400,324,'','Gallery 2_341_thumb.jpg',130, 105,0, 0,'','','','');
photos[118] = new photo(811683,'62656','','section90993','Gallery 2_352.jpg',400,332,'','Gallery 2_352_thumb.jpg',130, 108,0, 0,'','','','');
photos[119] = new photo(811685,'62656','','section90993','Gallery 2_36.jpg',400,314,'','Gallery 2_36_thumb.jpg',130, 102,0, 0,'','','','');
photos[120] = new photo(811686,'62656','','section90993','Gallery 2_371.jpg',400,506,'','Gallery 2_371_thumb.jpg',130, 164,0, 0,'','','','');
photos[121] = new photo(811687,'62656','','section90993','Gallery 2_381.jpg',400,472,'','Gallery 2_381_thumb.jpg',130, 153,0, 0,'','','','');
photos[122] = new photo(811689,'62656','','section90993','Gallery 2_391.jpg',400,500,'','Gallery 2_391_thumb.jpg',130, 163,0, 0,'','','','');
photos[123] = new photo(811690,'62656','','section90993','Gallery 2_401.jpg',400,273,'','Gallery 2_401_thumb.jpg',130, 89,0, 0,'','','','');
photos[124] = new photo(811691,'62656','','section90993','Gallery 2_411.jpg',400,553,'','Gallery 2_411_thumb.jpg',130, 180,0, 0,'','','','');
photos[125] = new photo(811718,'62659','','section90993','Gallery 5_01.jpg',400,265,'','Gallery 5_01_thumb.jpg',130, 86,0, 0,'','','','');
photos[126] = new photo(811719,'62659','','section90993','Gallery 5_02.JPG',400,265,'','Gallery 5_02_thumb.JPG',130, 86,0, 0,'','','','');
photos[127] = new photo(811720,'62659','','section90993','Gallery 5_03.jpg',400,231,'','Gallery 5_03_thumb.jpg',130, 75,0, 0,'','','','');
photos[128] = new photo(811721,'62659','','section90993','Gallery 5_04.JPG',400,224,'','Gallery 5_04_thumb.JPG',130, 73,0, 0,'','','','');
photos[129] = new photo(811722,'62659','','section90993','Gallery 5_05.JPG',400,255,'','Gallery 5_05_thumb.JPG',130, 83,0, 0,'','','','');
photos[130] = new photo(811723,'62659','','section90993','Gallery 5_06.jpg',400,481,'','Gallery 5_06_thumb.jpg',130, 156,0, 0,'','','','');
photos[131] = new photo(811724,'62659','','section90993','Gallery 5_07.JPG',400,265,'','Gallery 5_07_thumb.JPG',130, 86,0, 0,'','','','');
photos[132] = new photo(811726,'62659','','section90993','Gallery 5_08.jpg',400,500,'','Gallery 5_08_thumb.jpg',130, 163,0, 0,'','','','');
photos[133] = new photo(811727,'62659','','section90993','Gallery 5_10.jpg',400,487,'','Gallery 5_10_thumb.jpg',130, 158,0, 0,'','','','');
photos[134] = new photo(811729,'62659','','section90993','Gallery 5_11.JPG',400,231,'','Gallery 5_11_thumb.JPG',130, 75,0, 0,'','','','');
photos[135] = new photo(811730,'62659','','section90993','Gallery 5_12.jpg',400,274,'','Gallery 5_12_thumb.jpg',130, 89,0, 0,'','','','');
photos[136] = new photo(811731,'62659','','section90993','Gallery 5_13.jpg',400,265,'','Gallery 5_13_thumb.jpg',130, 86,0, 0,'','','','');
photos[137] = new photo(811733,'62659','','section90993','Gallery 5_14.jpg',399,600,'','Gallery 5_14_thumb.jpg',130, 195,0, 0,'','','','');
photos[138] = new photo(811734,'62659','','section90993','Gallery 5_15.jpg',400,265,'','Gallery 5_15_thumb.jpg',130, 86,0, 0,'','','','');
photos[139] = new photo(811735,'62659','','section90993','Gallery 5_16.jpg',400,565,'','Gallery 5_16_thumb.jpg',130, 184,0, 0,'','','','');
photos[140] = new photo(811736,'62659','','section90993','Gallery 5_17.jpg',400,567,'','Gallery 5_17_thumb.jpg',130, 184,0, 0,'','','','');
photos[141] = new photo(811737,'62659','','section90993','Gallery 5_19.JPG',400,267,'','Gallery 5_19_thumb.JPG',130, 87,0, 0,'','','','');
photos[142] = new photo(811738,'62659','','section90993','Gallery 5_20.jpg',400,600,'','Gallery 5_20_thumb.jpg',130, 195,0, 0,'','','','');
photos[143] = new photo(811739,'62659','','section90993','Gallery 5_21.jpg',400,302,'','Gallery 5_21_thumb.jpg',130, 98,0, 0,'','','','');
photos[144] = new photo(811740,'62659','','section90993','Gallery 5_22.JPG',400,227,'','Gallery 5_22_thumb.JPG',130, 74,0, 0,'','','','');
photos[145] = new photo(811741,'62659','','section90993','Gallery 5_23.jpg',400,600,'','Gallery 5_23_thumb.jpg',130, 195,0, 0,'','','','');
photos[146] = new photo(811742,'62659','','section90993','Gallery 5_24.jpg',400,291,'','Gallery 5_24_thumb.jpg',130, 95,0, 0,'','','','');
photos[147] = new photo(811744,'62659','','section90993','Gallery 5_25.jpg',400,331,'','Gallery 5_25_thumb.jpg',130, 108,0, 0,'','','','');
photos[148] = new photo(811746,'62659','','section90993','Gallery 5_26.jpg',400,281,'','Gallery 5_26_thumb.jpg',130, 91,0, 0,'','','','');
photos[149] = new photo(811747,'62659','','section90993','Gallery 5_27.jpg',400,500,'','Gallery 5_27_thumb.jpg',130, 163,0, 0,'','','','');
photos[150] = new photo(811748,'62659','','section90993','Gallery 5_28.jpg',400,500,'','Gallery 5_28_thumb.jpg',130, 163,0, 0,'','','','');
photos[151] = new photo(811750,'62659','','section90993','Gallery 5_29.jpg',400,578,'','Gallery 5_29_thumb.jpg',130, 188,0, 0,'','','','');
photos[152] = new photo(811751,'62659','','section90993','Gallery 5_31.jpg',400,566,'','Gallery 5_31_thumb.jpg',130, 184,0, 0,'','','','');
photos[153] = new photo(811752,'62659','','section90993','Gallery 5_32.JPG',400,255,'','Gallery 5_32_thumb.JPG',130, 83,0, 0,'','','','');
photos[154] = new photo(811753,'62661','','section90993','Gallery 1_02.jpg',400,266,'','Gallery 1_02_thumb.jpg',130, 86,0, 0,'','','','');
photos[155] = new photo(811754,'62661','','section90993','Gallery 1_51.jpg',400,500,'','Gallery 1_51_thumb.jpg',130, 163,0, 0,'','','','');
photos[156] = new photo(811755,'62661','','section90993','Gallery 6_01.jpg',364,600,'','Gallery 6_01_thumb.jpg',130, 214,0, 0,'','','','');
photos[157] = new photo(811756,'62661','','section90993','Gallery 6_02.jpg',368,600,'','Gallery 6_02_thumb.jpg',130, 212,0, 0,'','','','');
photos[158] = new photo(811757,'62661','','section90993','Gallery 6_03.jpg',392,600,'','Gallery 6_03_thumb.jpg',130, 199,0, 0,'','','','');
photos[159] = new photo(811758,'62661','','section90993','Gallery 6_05.jpg',400,261,'','Gallery 6_05_thumb.jpg',130, 85,0, 0,'','','','');
photos[160] = new photo(811759,'62661','','section90993','Gallery 6_06.jpg',400,533,'','Gallery 6_06_thumb.jpg',130, 173,0, 0,'','','','');
photos[161] = new photo(811760,'62661','','section90993','Gallery 6_07.jpg',400,533,'','Gallery 6_07_thumb.jpg',130, 173,0, 0,'','','','');
photos[162] = new photo(811761,'62661','','section90993','Gallery 6_08.JPG',400,624,'','Gallery 6_08_thumb.JPG',130, 203,0, 0,'','','','');
photos[163] = new photo(811762,'62661','','section90993','Gallery 6_09.jpg',400,591,'','Gallery 6_09_thumb.jpg',130, 192,0, 0,'','','','');
photos[164] = new photo(811763,'62661','','section90993','Gallery 6_10.jpg',400,538,'','Gallery 6_10_thumb.jpg',130, 175,0, 0,'','','','');
photos[165] = new photo(811765,'62661','','section90993','Gallery 6_11.jpg',400,571,'','Gallery 6_11_thumb.jpg',130, 186,0, 0,'','','','');
photos[166] = new photo(811766,'62661','','section90993','Gallery 6_12.JPG',400,265,'','Gallery 6_12_thumb.JPG',130, 86,0, 0,'','','','');
photos[167] = new photo(811767,'62661','','section90993','Gallery 6_13.JPG',400,265,'','Gallery 6_13_thumb.JPG',130, 86,0, 0,'','','','');
photos[168] = new photo(811768,'62661','','section90993','Gallery 6_14.jpg',400,600,'','Gallery 6_14_thumb.jpg',130, 195,0, 0,'','','','');
photos[169] = new photo(811769,'62661','','section90993','Gallery 6_15.jpg',383,600,'','Gallery 6_15_thumb.jpg',130, 204,0, 0,'','','','');
photos[170] = new photo(811775,'62661','','section90993','Gallery 6_04.jpg',400,600,'','Gallery 6_04_thumb.jpg',130, 195,0, 0,'','','','');
photos[171] = new photo(811915,'62648','','section90980','Gallery1_01.jpg',400,500,'','Gallery1_01_thumb.jpg',130, 163,0, 0,'','','','');
photos[172] = new photo(811916,'62648','','section90980','Gallery1_02.jpg',400,499,'','Gallery1_02_thumb.jpg',130, 162,0, 0,'','','','');
photos[173] = new photo(811917,'62648','','section90980','Gallery1_03.jpg',400,475,'','Gallery1_03_thumb.jpg',130, 154,0, 0,'','','','');
photos[174] = new photo(811918,'62648','','section90980','Gallery1_04.jpg',400,500,'','Gallery1_04_thumb.jpg',130, 163,0, 0,'','','','');
photos[175] = new photo(811919,'62648','','section90980','Gallery1_05.jpg',400,478,'','Gallery1_05_thumb.jpg',130, 155,0, 0,'','','','');
photos[176] = new photo(811921,'62648','','section90980','Gallery1_06.jpg',400,521,'','Gallery1_06_thumb.jpg',130, 169,0, 0,'','','','');
photos[177] = new photo(811922,'62648','','section90980','Gallery1_07.jpg',400,500,'','Gallery1_07_thumb.jpg',130, 163,0, 0,'','','','');
photos[178] = new photo(811929,'62648','','section90980','Gallery1_09.jpg',400,500,'','Gallery1_09_thumb.jpg',130, 163,0, 0,'','','','');
photos[179] = new photo(815177,'62650','','section90980','Gallery2_01.jpg',387,600,'','Gallery2_01_thumb.jpg',130, 202,0, 0,'','','','');
photos[180] = new photo(815188,'62650','','section90980','Gallery2_02.jpg',400,227,'','Gallery2_02_thumb.jpg',130, 74,0, 0,'','','','');
photos[181] = new photo(815189,'62650','','section90980','Gallery2_04.jpg',400,714,'','Gallery2_04_thumb.jpg',130, 232,0, 0,'','','','');
photos[182] = new photo(815190,'62650','','section90980','Gallery2_031.jpg',400,320,'','Gallery2_031_thumb.jpg',130, 104,0, 0,'','','','');
photos[183] = new photo(815191,'62650','','section90980','Gallery2_05.jpg',400,273,'','Gallery2_05_thumb.jpg',130, 89,0, 0,'','','','');
photos[184] = new photo(815193,'62650','','section90980','Gallery2_062.JPG',400,288,'','Gallery2_062_thumb.JPG',130, 94,0, 0,'','','','');
photos[185] = new photo(815194,'62650','','section90980','Gallery2_07.jpg',400,626,'','Gallery2_07_thumb.jpg',130, 203,0, 0,'','','','');
photos[186] = new photo(815195,'62650','','section90980','Gallery2_08.jpg',400,706,'','Gallery2_08_thumb.jpg',130, 229,0, 0,'','','','');
photos[187] = new photo(815196,'62650','','section90980','Gallery2_09.jpg',400,227,'','Gallery2_09_thumb.jpg',130, 74,0, 0,'','','','');
photos[188] = new photo(815197,'62650','','section90980','Gallery2_10.jpg',400,602,'','Gallery2_10_thumb.jpg',130, 196,0, 0,'','','','');
photos[189] = new photo(815198,'62650','','section90980','Gallery2_11.JPG',400,484,'','Gallery2_11_thumb.JPG',130, 157,0, 0,'','','','');
photos[190] = new photo(815199,'62650','','section90980','Gallery2_12.JPG',400,600,'','Gallery2_12_thumb.JPG',130, 195,0, 0,'','','','');
photos[191] = new photo(815200,'62650','','section90980','Gallery2_13.jpg',400,601,'','Gallery2_13_thumb.jpg',130, 195,0, 0,'','','','');
photos[192] = new photo(815208,'62650','','section90980','Gallery2_14.jpg',400,256,'','Gallery2_14_thumb.jpg',130, 83,0, 0,'','','','');
photos[193] = new photo(815214,'62650','','section90980','Gallery2_15.jpg',400,518,'','Gallery2_15_thumb.jpg',130, 168,0, 0,'','','','');
photos[194] = new photo(815218,'62650','','section90980','Gallery2_16.jpg',400,253,'','Gallery2_16_thumb.jpg',130, 82,0, 0,'','','','');
photos[195] = new photo(815219,'62650','','section90980','Gallery2_17.jpg',400,572,'','Gallery2_17_thumb.jpg',130, 186,0, 0,'','','','');
photos[196] = new photo(815223,'62650','','section90980','Gallery2_21.JPG',400,223,'','Gallery2_21_thumb.JPG',130, 72,0, 0,'','','','');
photos[197] = new photo(815224,'62650','','section90980','Gallery2_22.jpg',400,258,'','Gallery2_22_thumb.jpg',130, 84,0, 0,'','','','');
photos[198] = new photo(815225,'62650','','section90980','Gallery2_23.jpg',400,599,'','Gallery2_23_thumb.jpg',130, 195,0, 0,'','','','');
photos[199] = new photo(815226,'62650','','section90980','Gallery2_24.jpg',400,577,'','Gallery2_24_thumb.jpg',130, 188,0, 0,'','','','');
photos[200] = new photo(815232,'62650','','section90980','Gallery2_25.jpg',400,550,'','Gallery2_25_thumb.jpg',130, 179,0, 0,'','','','');
photos[201] = new photo(815233,'62650','','section90980','Gallery2_26.jpg',400,265,'','Gallery2_26_thumb.jpg',130, 86,0, 0,'','','','');
photos[202] = new photo(815241,'62650','','section90980','Gallery2_27.jpg',400,650,'','Gallery2_27_thumb.jpg',130, 211,0, 0,'','','','');
photos[203] = new photo(815249,'62650','','section90980','Gallery2_28.jpg',400,329,'','Gallery2_28_thumb.jpg',130, 107,0, 0,'','','','');
photos[204] = new photo(815250,'62650','','section90980','Gallery2_29.jpg',400,192,'','Gallery2_29_thumb.jpg',130, 62,0, 0,'','','','');
photos[205] = new photo(815256,'62650','','section90980','Gallery2_30.jpg',400,500,'','Gallery2_30_thumb.jpg',130, 163,0, 0,'','','','');
photos[206] = new photo(815257,'62650','','section90980','Gallery2_31.JPG',400,539,'','Gallery2_31_thumb.JPG',130, 175,0, 0,'','','','');
photos[207] = new photo(815258,'62650','','section90980','Gallery2_32.JPG',400,565,'','Gallery2_32_thumb.JPG',130, 184,0, 0,'','','','');
photos[208] = new photo(815259,'62650','','section90980','Gallery2_33.JPG',400,553,'','Gallery2_33_thumb.JPG',130, 180,0, 0,'','','','');
photos[209] = new photo(815260,'62650','','section90980','Gallery2_34.JPG',400,539,'','Gallery2_34_thumb.JPG',130, 175,0, 0,'','','','');
photos[210] = new photo(815270,'62651','','section90980','Gallery3_01.jpg',400,533,'','Gallery3_01_thumb.jpg',130, 173,0, 0,'','','','');
photos[211] = new photo(815271,'62651','','section90980','Gallery3_02.jpg',394,700,'','Gallery3_02_thumb.jpg',130, 231,0, 0,'','','','');
photos[212] = new photo(815272,'62651','','section90980','Gallery3_03.jpg',400,570,'','Gallery3_03_thumb.jpg',130, 185,0, 0,'','','','');
photos[213] = new photo(815273,'62651','','section90980','Gallery3_04.jpg',400,240,'','Gallery3_04_thumb.jpg',130, 78,0, 0,'','','','');
photos[214] = new photo(815278,'62651','','section90980','Gallery3_05.jpg',400,510,'','Gallery3_05_thumb.jpg',130, 166,0, 0,'','','','');
photos[215] = new photo(815280,'62651','','section90980','Gallery3_06.jpg',400,556,'','Gallery3_06_thumb.jpg',130, 181,0, 0,'','','','');
photos[216] = new photo(815283,'62651','','section90980','Gallery3_071.jpg',400,496,'','Gallery3_071_thumb.jpg',130, 161,0, 0,'','','','');
photos[217] = new photo(815284,'62651','','section90980','Gallery3_08.jpg',400,265,'','Gallery3_08_thumb.jpg',130, 86,0, 0,'','','','');
photos[218] = new photo(815285,'62651','','section90980','Gallery3_09.jpg',400,337,'','Gallery3_09_thumb.jpg',130, 110,0, 0,'','','','');
photos[219] = new photo(815286,'62651','','section90980','Gallery3_10.jpg',400,608,'','Gallery3_10_thumb.jpg',130, 198,0, 0,'','','','');
photos[220] = new photo(815292,'62651','','section90980','Gallery3_11.jpg',400,613,'','Gallery3_11_thumb.jpg',130, 199,0, 0,'','','','');
photos[221] = new photo(815293,'62651','','section90980','Gallery3_12.jpg',400,600,'','Gallery3_12_thumb.jpg',130, 195,0, 0,'','','','');
photos[222] = new photo(815294,'62651','','section90980','Gallery3_13.jpg',400,648,'','Gallery3_13_thumb.jpg',130, 211,0, 0,'','','','');
photos[223] = new photo(815295,'62651','','section90980','Gallery3_14.jpg',400,494,'','Gallery3_14_thumb.jpg',130, 161,0, 0,'','','','');
photos[224] = new photo(815296,'62651','','section90980','Gallery3_15.jpg',400,213,'','Gallery3_15_thumb.jpg',130, 69,0, 0,'','','','');
photos[225] = new photo(815303,'62651','','section90980','Gallery3_16.jpg',400,215,'','Gallery3_16_thumb.jpg',130, 70,0, 0,'','','','');
photos[226] = new photo(815304,'62651','','section90980','Gallery3_17.jpg',400,600,'','Gallery3_17_thumb.jpg',130, 195,0, 0,'','','','');
photos[227] = new photo(815305,'62651','','section90980','Gallery3_18.jpg',400,535,'','Gallery3_18_thumb.jpg',130, 174,0, 0,'','','','');
photos[228] = new photo(815306,'62651','','section90980','Gallery3_19.jpg',400,324,'','Gallery3_19_thumb.jpg',130, 105,0, 0,'','','','');
photos[229] = new photo(815308,'62651','','section90980','Gallery3_20.jpg',400,542,'','Gallery3_20_thumb.jpg',130, 176,0, 0,'','','','');
photos[230] = new photo(815309,'62651','','section90980','Gallery3_21.jpg',391,342,'','Gallery3_21_thumb.jpg',130, 114,0, 0,'','','','');
photos[231] = new photo(815312,'62651','','section90980','Gallery3_22.jpg',400,566,'','Gallery3_22_thumb.jpg',130, 184,0, 0,'','','','');
photos[232] = new photo(815313,'62651','','section90980','Gallery3_23.jpg',400,546,'','Gallery3_23_thumb.jpg',130, 177,0, 0,'','','','');
photos[233] = new photo(815315,'62651','','section90980','Gallery3_24.jpg',400,513,'','Gallery3_24_thumb.jpg',130, 167,0, 0,'','','','');
photos[234] = new photo(815338,'62651','','section90980','Gallery3_25.jpg',400,285,'','Gallery3_25_thumb.jpg',130, 93,0, 0,'','','','');
photos[235] = new photo(815349,'62651','','section90980','Gallery3_26.jpg',400,559,'','Gallery3_26_thumb.jpg',130, 182,0, 0,'','','','');
photos[236] = new photo(815350,'62651','','section90980','Gallery3_27.jpg',365,504,'','Gallery3_27_thumb.jpg',130, 180,0, 0,'','','','');
photos[237] = new photo(815351,'62651','','section90980','Gallery3_28.jpg',400,177,'','Gallery3_28_thumb.jpg',130, 58,0, 0,'','','','');
photos[238] = new photo(815352,'62651','','section90980','Gallery3_29.jpg',400,598,'','Gallery3_29_thumb.jpg',130, 194,0, 0,'','','','');
photos[239] = new photo(815354,'62651','','section90980','Gallery3_30.jpg',400,452,'','Gallery3_30_thumb.jpg',130, 147,0, 0,'','','','');
photos[240] = new photo(815355,'62651','','section90980','Gallery3_31.jpg',400,230,'','Gallery3_31_thumb.jpg',130, 75,0, 0,'','','','');
photos[241] = new photo(815356,'62651','','section90980','Gallery3_32.jpg',400,322,'','Gallery3_32_thumb.jpg',130, 105,0, 0,'','','','');
photos[242] = new photo(815358,'62651','','section90980','Gallery3_34.jpg',400,245,'','Gallery3_34_thumb.jpg',130, 80,0, 0,'','','','');
photos[243] = new photo(815359,'62651','','section90980','Gallery3_35.jpg',400,325,'','Gallery3_35_thumb.jpg',130, 106,0, 0,'','','','');
photos[244] = new photo(815360,'62651','','section90980','Gallery3_36.jpg',400,577,'','Gallery3_36_thumb.jpg',130, 188,0, 0,'','','','');
photos[245] = new photo(815361,'62651','','section90980','Gallery3_37.jpg',400,525,'','Gallery3_37_thumb.jpg',130, 171,0, 0,'','','','');
photos[246] = new photo(815362,'62651','','section90980','Gallery3_38.jpg',400,602,'','Gallery3_38_thumb.jpg',130, 196,0, 0,'','','','');
photos[247] = new photo(815364,'62651','','section90980','Gallery3_39.JPG',400,257,'','Gallery3_39_thumb.JPG',130, 84,0, 0,'','','','');
photos[248] = new photo(815367,'62651','','section90980','Gallery3_40.JPG',400,243,'','Gallery3_40_thumb.JPG',130, 79,0, 0,'','','','');
photos[249] = new photo(815368,'62652','','section90980','Gallery4_01.jpg',349,345,'','Gallery4_01_thumb.jpg',130, 129,0, 0,'','','','');
photos[250] = new photo(815369,'62652','','section90980','Gallery4_02.jpg',400,591,'','Gallery4_02_thumb.jpg',130, 192,0, 0,'','','','');
photos[251] = new photo(815370,'62652','','section90980','Gallery4_03.jpg',400,577,'','Gallery4_03_thumb.jpg',130, 188,0, 0,'','','','');
photos[252] = new photo(815373,'62652','','section90980','Gallery4_04.jpg',400,590,'','Gallery4_04_thumb.jpg',130, 192,0, 0,'','','','');
photos[253] = new photo(815374,'62652','','section90980','Gallery4_05.jpg',400,503,'','Gallery4_05_thumb.jpg',130, 163,0, 0,'','','','');
photos[254] = new photo(815375,'62652','','section90980','Gallery4_06.jpg',400,596,'','Gallery4_06_thumb.jpg',130, 194,0, 0,'','','','');
photos[255] = new photo(815376,'62652','','section90980','Gallery4_07.jpg',400,250,'','Gallery4_07_thumb.jpg',130, 81,0, 0,'','','','');
photos[256] = new photo(815377,'62652','','section90980','Gallery4_08.jpg',400,528,'','Gallery4_08_thumb.jpg',130, 172,0, 0,'','','','');
photos[257] = new photo(815378,'62652','','section90980','Gallery4_09.jpg',400,250,'','Gallery4_09_thumb.jpg',130, 81,0, 0,'','','','');
photos[258] = new photo(815379,'62652','','section90980','Gallery4_10.jpg',400,276,'','Gallery4_10_thumb.jpg',130, 90,0, 0,'','','','');
photos[259] = new photo(815382,'62652','','section90980','Gallery4_11.jpg',400,249,'','Gallery4_11_thumb.jpg',130, 81,0, 0,'','','','');
photos[260] = new photo(815383,'62652','','section90980','Gallery4_12.jpg',397,330,'','Gallery4_12_thumb.jpg',130, 108,0, 0,'','','','');
photos[261] = new photo(815384,'62652','','section90980','Gallery4_13.jpg',400,254,'','Gallery4_13_thumb.jpg',130, 83,0, 0,'','','','');
photos[262] = new photo(815385,'62652','','section90980','Gallery4_14.jpg',387,332,'','Gallery4_14_thumb.jpg',130, 112,0, 0,'','','','');
photos[263] = new photo(815387,'62652','','section90980','Gallery4_15.jpg',400,536,'','Gallery4_15_thumb.jpg',130, 174,0, 0,'','','','');
photos[264] = new photo(815388,'62652','','section90980','Gallery4_16.jpg',400,279,'','Gallery4_16_thumb.jpg',130, 91,0, 0,'','','','');
photos[265] = new photo(815389,'62652','','section90980','Gallery4_17.jpg',400,595,'','Gallery4_17_thumb.jpg',130, 193,0, 0,'','','','');
photos[266] = new photo(815390,'62652','','section90980','Gallery4_18.jpg',400,553,'','Gallery4_18_thumb.jpg',130, 180,0, 0,'','','','');
photos[267] = new photo(815391,'62652','','section90980','Gallery4_19.jpg',400,497,'','Gallery4_19_thumb.jpg',130, 162,0, 0,'','','','');
photos[268] = new photo(815392,'62652','','section90980','Gallery4_20.jpg',400,513,'','Gallery4_20_thumb.jpg',130, 167,0, 0,'','','','');
photos[269] = new photo(815394,'62652','','section90980','Gallery4_21.jpg',400,506,'','Gallery4_21_thumb.jpg',130, 164,0, 0,'','','','');
photos[270] = new photo(815396,'62652','','section90980','Gallery4_22.jpg',400,565,'','Gallery4_22_thumb.jpg',130, 184,0, 0,'','','','');
photos[271] = new photo(815397,'62652','','section90980','Gallery4_23.jpg',400,558,'','Gallery4_23_thumb.jpg',130, 181,0, 0,'','','','');
photos[272] = new photo(815398,'62652','','section90980','Gallery4_24.jpg',400,561,'','Gallery4_24_thumb.jpg',130, 182,0, 0,'','','','');
photos[273] = new photo(815399,'62652','','section90980','Gallery4_25.jpg',400,268,'','Gallery4_25_thumb.jpg',130, 87,0, 0,'','','','');
photos[274] = new photo(815401,'62652','','section90980','Gallery4_26.jpg',400,535,'','Gallery4_26_thumb.jpg',130, 174,0, 0,'','','','');
photos[275] = new photo(815402,'62652','','section90980','Gallery4_27.jpg',400,580,'','Gallery4_27_thumb.jpg',130, 189,0, 0,'','','','');
photos[276] = new photo(815404,'62652','','section90980','Gallery4_28.jpg',400,600,'','Gallery4_28_thumb.jpg',130, 195,0, 0,'','','','');
photos[277] = new photo(815405,'62652','','section90980','Gallery4_29.jpg',400,600,'','Gallery4_29_thumb.jpg',130, 195,0, 0,'','','','');
photos[278] = new photo(815406,'62652','','section90980','Gallery4_30.jpg',400,600,'','Gallery4_30_thumb.jpg',130, 195,0, 0,'','','','');
photos[279] = new photo(815408,'62652','','section90980','Gallery5_01.jpg',400,702,'','Gallery5_01_thumb.jpg',130, 228,0, 0,'','','','');
photos[280] = new photo(815409,'62652','','section90980','Gallery5_02.jpg',400,305,'','Gallery5_02_thumb.jpg',130, 99,0, 0,'','','','');
photos[281] = new photo(815411,'62652','','section90980','Gallery5_04.jpg',400,537,'','Gallery5_04_thumb.jpg',130, 175,0, 0,'','','','');
photos[282] = new photo(815413,'62654','','section90980','Gallery5_05.jpg',400,639,'','Gallery5_05_thumb.jpg',130, 208,0, 0,'','','','');
photos[283] = new photo(815416,'62654','','section90980','Gallery5_06.jpg',400,593,'','Gallery5_06_thumb.jpg',130, 193,0, 0,'','','','');
photos[284] = new photo(815418,'62654','','section90980','Gallery5_07.jpg',400,234,'','Gallery5_07_thumb.jpg',130, 76,0, 0,'','','','');
photos[285] = new photo(815420,'62654','','section90980','Gallery5_08.jpg',400,210,'','Gallery5_08_thumb.jpg',130, 68,0, 0,'','','','');
photos[286] = new photo(815422,'62654','','section90980','Gallery5_09.jpg',400,581,'','Gallery5_09_thumb.jpg',130, 189,0, 0,'','','','');
photos[287] = new photo(815423,'62654','','section90980','Gallery5_10.jpg',400,578,'','Gallery5_10_thumb.jpg',130, 188,0, 0,'','','','');
photos[288] = new photo(815426,'62654','','section90980','Gallery5_11.jpg',400,772,'','Gallery5_11_thumb.jpg',130, 251,0, 0,'','','','');
photos[289] = new photo(815428,'62654','','section90980','Gallery5_12.jpg',400,522,'','Gallery5_12_thumb.jpg',130, 170,0, 0,'','','','');
photos[290] = new photo(815430,'62654','','section90980','Gallery5_13.jpg',400,267,'','Gallery5_13_thumb.jpg',130, 87,0, 0,'','','','');
photos[291] = new photo(815432,'62654','','section90980','Gallery5_14.jpg',388,339,'','Gallery5_14_thumb.jpg',130, 114,0, 0,'','','','');
photos[292] = new photo(815433,'62654','','section90980','Gallery5_15.jpg',400,600,'','Gallery5_15_thumb.jpg',130, 195,0, 0,'','','','');
photos[293] = new photo(815435,'62654','','section90980','Gallery5_16.jpg',400,600,'','Gallery5_16_thumb.jpg',130, 195,0, 0,'','','','');
photos[294] = new photo(815436,'62654','','section90980','Gallery5_17.jpg',400,557,'','Gallery5_17_thumb.jpg',130, 181,0, 0,'','','','');
photos[295] = new photo(815438,'62654','','section90980','Gallery5_18.jpg',400,521,'','Gallery5_18_thumb.jpg',130, 169,0, 0,'','','','');
photos[296] = new photo(815439,'62654','','section90980','Gallery5_19.jpg',400,478,'','Gallery5_19_thumb.jpg',130, 155,0, 0,'','','','');
photos[297] = new photo(815441,'62654','','section90980','Gallery5_20.jpg',400,253,'','Gallery5_20_thumb.jpg',130, 82,0, 0,'','','','');
photos[298] = new photo(815445,'62654','','section90980','Gallery5_21.jpg',400,556,'','Gallery5_21_thumb.jpg',130, 181,0, 0,'','','','');
photos[299] = new photo(815448,'62654','','section90980','Gallery5_23.JPG',400,549,'','Gallery5_23_thumb.JPG',130, 178,0, 0,'','','','');
photos[300] = new photo(815449,'62654','','section90980','Gallery5_24.jpg',400,230,'','Gallery5_24_thumb.jpg',130, 75,0, 0,'','','','');
photos[301] = new photo(815450,'62654','','section90980','Gallery5_25.jpg',400,267,'','Gallery5_25_thumb.jpg',130, 87,0, 0,'','','','');
photos[302] = new photo(815451,'62654','','section90980','Gallery5_26.jpg',400,267,'','Gallery5_26_thumb.jpg',130, 87,0, 0,'','','','');
photos[303] = new photo(815453,'62654','','section90980','Gallery5_27.jpg',400,635,'','Gallery5_27_thumb.jpg',130, 206,0, 0,'','','','');
photos[304] = new photo(815454,'62654','','section90980','Gallery5_28.jpg',400,600,'','Gallery5_28_thumb.jpg',130, 195,0, 0,'','','','');
photos[305] = new photo(815456,'62654','','section90980','Gallery5_29.jpg',400,600,'','Gallery5_29_thumb.jpg',130, 195,0, 0,'','','','');
photos[306] = new photo(815457,'62660','','section90980','Gallery6_01.jpg',400,267,'','Gallery6_01_thumb.jpg',130, 87,0, 0,'','','','');
photos[307] = new photo(815458,'62660','','section90980','Gallery6_02.jpg',400,267,'','Gallery6_02_thumb.jpg',130, 87,0, 0,'','','','');
photos[308] = new photo(815459,'62660','','section90980','Gallery6_03.jpg',400,500,'','Gallery6_03_thumb.jpg',130, 163,0, 0,'','','','');
photos[309] = new photo(815460,'62660','','section90980','Gallery6_04.jpg',400,558,'','Gallery6_04_thumb.jpg',130, 181,0, 0,'','','','');
photos[310] = new photo(815461,'62660','','section90980','Gallery6_05.jpg',400,263,'','Gallery6_05_thumb.jpg',130, 85,0, 0,'','','','');
photos[311] = new photo(815462,'62660','','section90980','Gallery6_06.jpg',400,600,'','Gallery6_06_thumb.jpg',130, 195,0, 0,'','','','');
photos[312] = new photo(815463,'62660','','section90980','Gallery6_07.jpg',400,307,'','Gallery6_07_thumb.jpg',130, 100,0, 0,'','','','');
photos[313] = new photo(815464,'62660','','section90980','Gallery6_08.jpg',400,320,'','Gallery6_08_thumb.jpg',130, 104,0, 0,'','','','');
photos[314] = new photo(815465,'62660','','section90980','Gallery6_09.jpg',400,339,'','Gallery6_09_thumb.jpg',130, 110,0, 0,'','','','');
photos[315] = new photo(815467,'62660','','section90980','Gallery6_10.jpg',400,500,'','Gallery6_10_thumb.jpg',130, 163,0, 0,'','','','');
photos[316] = new photo(815469,'62660','','section90980','Gallery6_11.jpg',400,235,'','Gallery6_11_thumb.jpg',130, 76,0, 0,'','','','');
photos[317] = new photo(815470,'62660','','section90980','Gallery6_12.jpg',400,301,'','Gallery6_12_thumb.jpg',130, 98,0, 0,'','','','');
photos[318] = new photo(815472,'62660','','section90980','Gallery6_13.jpg',400,560,'','Gallery6_13_thumb.jpg',130, 182,0, 0,'','','','');
photos[319] = new photo(815473,'62660','','section90980','Gallery6_14.jpg',400,525,'','Gallery6_14_thumb.jpg',130, 171,0, 0,'','','','');
photos[320] = new photo(815474,'62660','','section90980','Gallery6_15.jpg',400,515,'','Gallery6_15_thumb.jpg',130, 167,0, 0,'','','','');
photos[321] = new photo(815475,'62660','','section90980','Gallery6_16.jpg',400,500,'','Gallery6_16_thumb.jpg',130, 163,0, 0,'','','','');
photos[322] = new photo(815478,'62660','','section90980','Gallery6_17.jpg',400,527,'','Gallery6_17_thumb.jpg',130, 171,0, 0,'','','','');
photos[323] = new photo(815480,'62660','','section90980','Gallery6_18.jpg',400,500,'','Gallery6_18_thumb.jpg',130, 163,0, 0,'','','','');
photos[324] = new photo(815482,'62660','','section90980','Gallery6_19.jpg',400,559,'','Gallery6_19_thumb.jpg',130, 182,0, 0,'','','','');
photos[325] = new photo(815483,'62660','','section90980','Gallery6_20.jpg',400,500,'','Gallery6_20_thumb.jpg',130, 163,0, 0,'','','','');
photos[326] = new photo(815485,'62660','','section90980','Gallery6_21.jpg',400,597,'','Gallery6_21_thumb.jpg',130, 194,0, 0,'','','','');
photos[327] = new photo(815486,'62660','','section90980','Gallery6_22.JPG',400,531,'','Gallery6_22_thumb.JPG',130, 173,0, 0,'','','','');
photos[328] = new photo(815488,'62660','','section90980','Gallery6_23.jpg',400,516,'','Gallery6_23_thumb.jpg',130, 168,0, 0,'','','','');
photos[329] = new photo(815490,'62660','','section90980','Gallery6_24.jpg',400,266,'','Gallery6_24_thumb.jpg',130, 86,0, 0,'','','','');
photos[330] = new photo(815492,'62660','','section90980','Gallery6_25.JPG',400,557,'','Gallery6_25_thumb.JPG',130, 181,0, 0,'','','','');
photos[331] = new photo(815494,'62660','','section90980','Gallery6_26.jpg',400,501,'','Gallery6_26_thumb.jpg',130, 163,0, 0,'','','','');
photos[332] = new photo(815497,'62660','','section90980','Gallery6_27.jpg',400,211,'','Gallery6_27_thumb.jpg',130, 69,0, 0,'','','','');
photos[333] = new photo(815500,'62660','','section90980','Gallery6_28.JPG',400,308,'','Gallery6_28_thumb.JPG',130, 100,0, 0,'','','','');
photos[334] = new photo(815502,'62660','','section90980','Gallery6_29.jpg',400,573,'','Gallery6_29_thumb.jpg',130, 186,0, 0,'','','','');
photos[335] = new photo(815504,'62660','','section90980','Gallery6_30.jpg',400,602,'','Gallery6_30_thumb.jpg',130, 196,0, 0,'','','','');
photos[336] = new photo(815506,'62660','','section90980','Gallery6_31.jpg',400,475,'','Gallery6_31_thumb.jpg',130, 154,0, 0,'','','','');
photos[337] = new photo(815507,'62660','','section90980','Gallery6_32.jpg',400,273,'','Gallery6_32_thumb.jpg',130, 89,0, 0,'','','','');
photos[338] = new photo(815508,'62660','','section90980','Gallery6_33.jpg',400,230,'','Gallery6_33_thumb.jpg',130, 75,0, 0,'','','','');
photos[339] = new photo(815509,'62660','','section90980','Gallery6_34.jpg',400,587,'','Gallery6_34_thumb.jpg',130, 191,0, 0,'','','','');
photos[340] = new photo(815510,'62660','','section90980','Gallery6_35.jpg',400,580,'','Gallery6_35_thumb.jpg',130, 189,0, 0,'','','','');
photos[341] = new photo(812030,'62648','','section90980','Gallery_01.jpg',400,594,' ','Gallery_01_thumb.jpg',130, 193,0, 0,'','','','');
photos[342] = new photo(812133,'62648','','section90980','Gallery_02.jpg',400,581,'','Gallery_02_thumb.jpg',130, 189,0, 0,'','','','');
photos[343] = new photo(812156,'62648','','section90980','Gallery_03.jpg',400,264,'','Gallery_03_thumb.jpg',130, 86,0, 0,'','','','');
photos[344] = new photo(811938,'62648','','section90980','Gallery1_12.jpg',400,265,' ','Gallery1_12_thumb.jpg',130, 86,0, 0,'','','','');
photos[345] = new photo(812157,'62648','','section90980','Gallery_10.jpg',400,297,' ','Gallery_10_thumb.jpg',130, 97,0, 0,'','','','');
photos[346] = new photo(812134,'62648','','section90980','Gallery_06.jpg',387,600,' ','Gallery_06_thumb.jpg',130, 202,0, 0,'','','','');
photos[347] = new photo(812158,'62648','','section90980','Gallery_14.jpg',400,216,' ','Gallery_14_thumb.jpg',130, 70,0, 0,'','','','');
photos[348] = new photo(812031,'62648','','section90980','Gallery_04.jpg',400,543,' ','Gallery_04_thumb.jpg',130, 176,0, 0,'','','','');
photos[349] = new photo(812135,'62648','','section90980','Gallery_07.jpg',385,600,' ','Gallery_07_thumb.jpg',130, 203,0, 0,'','','','');
photos[350] = new photo(812159,'62648','','section90980','Gallery_15.jpg',400,234,' ','Gallery_15_thumb.jpg',130, 76,0, 0,'','','','');
photos[351] = new photo(812032,'62648','','section90980','Gallery_05.jpg',400,600,'','Gallery_05_thumb.jpg',130, 195,0, 0,'','','','');
photos[352] = new photo(812136,'62648','','section90980','Gallery_08.jpg',400,503,' ','Gallery_08_thumb.jpg',130, 163,0, 0,'','','','');
photos[353] = new photo(812137,'62648','','section90980','Gallery_09.jpg',400,538,' ','Gallery_09_thumb.jpg',130, 175,0, 0,'','','','');
photos[354] = new photo(811939,'62648','','section90980','Gallery1_17.jpg',400,328,'','Gallery1_17_thumb.jpg',130, 107,0, 0,'','','','');
photos[355] = new photo(811945,'62648','','section90980','Gallery1_26.jpg',400,500,'','Gallery1_26_thumb.jpg',130, 163,0, 0,'','','','');
photos[356] = new photo(811940,'62648','','section90980','Gallery1_18.jpg',400,600,'','Gallery1_18_thumb.jpg',130, 195,0, 0,'','','','');
photos[357] = new photo(812138,'62648','','section90980','Gallery_11.jpg',400,500,' ','Gallery_11_thumb.jpg',130, 163,0, 0,'','','','');
photos[358] = new photo(812139,'62648','','section90980','Gallery_12.jpg',400,553,' ','Gallery_12_thumb.jpg',130, 180,0, 0,'','','','');
photos[359] = new photo(812141,'62648','','section90980','Gallery_13.jpg',400,599,' ','Gallery_13_thumb.jpg',130, 195,0, 0,'','','','');
photos[360] = new photo(811942,'62648','','section90980','Gallery1_221.JPG',388,354,'','Gallery1_221_thumb.jpg',130, 119,0, 0,'','','','');
photos[361] = new photo(811943,'62648','','section90980','Gallery1_24.JPG',400,229,'','Gallery1_24_thumb.jpg',130, 74,0, 0,'','','','');
photos[362] = new photo(812142,'62648','','section90980','Gallery_17.jpg',400,500,' ','Gallery_17_thumb.jpg',130, 163,0, 0,'','','','');
photos[363] = new photo(811944,'62648','','section90980','Gallery1_25.jpg',400,500,'','Gallery1_25_thumb.jpg',130, 163,0, 0,'','','','');
photos[364] = new photo(811946,'62648','','section90980','Gallery1_27.jpg',400,533,'','Gallery1_27_thumb.jpg',130, 173,0, 0,'','','','');
photos[365] = new photo(811947,'62648','','section90980','Gallery1_28.jpg',400,500,'','Gallery1_28_thumb.jpg',130, 163,0, 0,'','','','');
photos[366] = new photo(811948,'62648','','section90980','Gallery1_34.jpg',400,232,'','Gallery1_34_thumb.jpg',130, 75,0, 0,'','','','');
photos[367] = new photo(811949,'62648','','section90980','Gallery1_36.jpg',400,267,'','Gallery1_36_thumb.jpg',130, 87,0, 0,'','','','');
photos[368] = new photo(811951,'62648','','section90980','Gallery1_41.jpg',400,500,'','Gallery1_41_thumb.jpg',130, 163,0, 0,'','','','');
photos[369] = new photo(811952,'62648','','section90980','Gallery1_42.JPG',359,353,'','Gallery1_42_thumb.jpg',130, 128,0, 0,'','','','');
photos[370] = new photo(811953,'62648','','section90980','Gallery1_43.jpg',400,601,'','Gallery1_43_thumb.jpg',130, 195,0, 0,'','','','');
photos[371] = new photo(811954,'62648','','section90980','Gallery1_46.jpg',400,347,' ','Gallery1_46_thumb.jpg',130, 113,0, 0,'','','','');
photos[372] = new photo(811955,'62648','','section90980','Gallery1_48.jpg',400,267,'','Gallery1_48_thumb.jpg',130, 87,0, 0,'','','','');
photos[373] = new photo(811956,'62648','','section90980','Gallery1_49.jpg',400,267,'','Gallery1_49_thumb.jpg',130, 87,0, 0,'','','','');
photos[374] = new photo(811957,'62648','','section90980','Gallery1_50.jpg',400,267,'','Gallery1_50_thumb.jpg',130, 87,0, 0,'','','','');
photos[375] = new photo(812160,'62648','','section90980','Gallery_21.jpg',400,332,'','Gallery_21_thumb.jpg',130, 108,0, 0,'','','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(62648,'812160,812159,812158,812157,812156,812142,812141,812139,812138,812137','Gallery 1','section90980');
galleries[1] = new gallery(62655,'811206,811205,811203,811201,811199,811195,811192,811191,811190,811168','Gallery 1 ','section90993');
galleries[2] = new gallery(62656,'811691,811690,811689,811687,811686,811685,811683,811682,811680,811679','Gallery 2 ','section90993');
galleries[3] = new gallery(62650,'815260,815259,815258,815257,815256,815250,815249,815241,815233,815232','Gallery 2','section90980');
galleries[4] = new gallery(62651,'815367,815364,815362,815361,815360,815359,815358,815356,815355,815354','Gallery 3','section90980');
galleries[5] = new gallery(62657,'811655,811525,811523,811522,811521,811519,811518,811517,811514,811513','Gallery 3','section90993');
galleries[6] = new gallery(62658,'811581,811580,811577,811557,811549,811547,811546,811545,811543,811542','Gallery 4','section90993');
galleries[7] = new gallery(62652,'815411,815409,815408,815406,815405,815404,815402,815401,815399,815398','Gallery 4','section90980');
galleries[8] = new gallery(62654,'815456,815454,815453,815451,815450,815449,815448,815445,815441,815439','Gallery 5','section90980');
galleries[9] = new gallery(62659,'811752,811751,811750,811748,811747,811746,811744,811742,811741,811740','Gallery 5 ','section90993');
galleries[10] = new gallery(62660,'815510,815509,815508,815507,815506,815504,815502,815500,815497,815494','Gallery 6','section90980');
galleries[11] = new gallery(62661,'811775,811769,811768,811767,811766,811765,811763,811762,811761,811760','Gallery 6 ','section90993');

