/***************************************************************************
* 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('1525488');
	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('1525488');
	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;
			document.title = 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(1525488,'','','','http://www1.clikpic.com/ZinaKelly/images/Resize Wizard-1.jpg',351,500,'','http://www1.clikpic.com/ZinaKelly/images/Resize Wizard-1_thumb.jpg',130, 185,1, 0,'','','','','','');
photos[1] = new photo(1836561,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/IMG_0004.jpg',500,325,'','http://www1.clikpic.com/ZinaKelly/images/IMG_0004_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[2] = new photo(1836567,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/IMG_0009.jpg',500,342,'','http://www1.clikpic.com/ZinaKelly/images/IMG_0009_thumb.jpg',130, 89,0, 0,'','','','','','');
photos[3] = new photo(1836574,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/IMG_0011.jpg',500,439,'','http://www1.clikpic.com/ZinaKelly/images/IMG_0011_thumb.jpg',130, 114,0, 0,'','','','','','');
photos[4] = new photo(1836579,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/IMG_0013.jpg',500,466,'','http://www1.clikpic.com/ZinaKelly/images/IMG_0013_thumb.jpg',130, 121,0, 0,'','','','','','');
photos[5] = new photo(2425712,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0004.jpg',310,400,'','http://www1.clikpic.com/ZinaKelly/images/scan0004_thumb.jpg',130, 168,0, 0,'','','','','','');
photos[6] = new photo(2425713,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0005.jpg',361,400,'','http://www1.clikpic.com/ZinaKelly/images/scan0005_thumb.jpg',130, 144,0, 0,'','','','','','');
photos[7] = new photo(2425714,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0006.jpg',400,275,'','http://www1.clikpic.com/ZinaKelly/images/scan0006_thumb.jpg',130, 89,0, 0,'','','','','','');
photos[8] = new photo(2425715,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0007.jpg',400,331,'','http://www1.clikpic.com/ZinaKelly/images/scan0007_thumb.jpg',130, 108,0, 0,'','','','','','');
photos[9] = new photo(2425720,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0008.jpg',400,367,'','http://www1.clikpic.com/ZinaKelly/images/scan0008_thumb.jpg',130, 119,0, 0,'','','','','','');
photos[10] = new photo(2425723,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0009.jpg',400,340,'','http://www1.clikpic.com/ZinaKelly/images/scan0009_thumb.jpg',130, 111,0, 0,'','','','','','');
photos[11] = new photo(2425727,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0010.jpg',400,306,'','http://www1.clikpic.com/ZinaKelly/images/scan0010_thumb.jpg',130, 99,0, 0,'','','','','','');
photos[12] = new photo(2425729,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0011.jpg',398,400,'','http://www1.clikpic.com/ZinaKelly/images/scan0011_thumb.jpg',130, 131,0, 0,'','','','','','');
photos[13] = new photo(2425734,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0012.jpg',400,314,'','http://www1.clikpic.com/ZinaKelly/images/scan0012_thumb.jpg',130, 102,0, 0,'','','','','','');
photos[14] = new photo(2425737,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0013.jpg',400,305,'','http://www1.clikpic.com/ZinaKelly/images/scan0013_thumb.jpg',130, 99,0, 0,'','','','','','');
photos[15] = new photo(2425739,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0014.jpg',400,282,'','http://www1.clikpic.com/ZinaKelly/images/scan0014_thumb.jpg',130, 92,0, 0,'','','','','','');
photos[16] = new photo(2425740,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0015.jpg',400,253,'','http://www1.clikpic.com/ZinaKelly/images/scan0015_thumb.jpg',130, 82,0, 0,'','','','','','');
photos[17] = new photo(1526364,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00276.jpg',500,667,'','http://www1.clikpic.com/ZinaKelly/images/DSC00276_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[18] = new photo(1526403,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00368.jpg',500,375,'','http://www1.clikpic.com/ZinaKelly/images/DSC00368_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[19] = new photo(1526368,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00300.jpg',500,375,'','http://www1.clikpic.com/ZinaKelly/images/DSC00300_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[20] = new photo(1526376,'123825','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00355.jpg',500,667,'','http://www1.clikpic.com/ZinaKelly/images/DSC00355_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[21] = new photo(1526363,'','','','http://www1.clikpic.com/ZinaKelly/images/DSC00271.jpg',500,375,'','http://www1.clikpic.com/ZinaKelly/images/DSC00271_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[22] = new photo(1836549,'104673','','gallery','http://www1.clikpic.com/ZinaKelly/images/IMG_0002.jpg',500,398,'','http://www1.clikpic.com/ZinaKelly/images/IMG_0002_thumb.jpg',130, 103,0, 0,'','','','','','');
photos[23] = new photo(2425700,'104673','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0002.jpg',400,349,'','http://www1.clikpic.com/ZinaKelly/images/scan0002_thumb.jpg',130, 113,0, 0,'','','','','','');
photos[24] = new photo(2425704,'104673','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan00011.jpg',392,400,'','http://www1.clikpic.com/ZinaKelly/images/scan00011_thumb.jpg',130, 133,0, 0,'','','','','','');
photos[25] = new photo(2425710,'104673','','gallery','http://www1.clikpic.com/ZinaKelly/images/scan0003.jpg',367,400,'','http://www1.clikpic.com/ZinaKelly/images/scan0003_thumb.jpg',130, 142,0, 0,'','','','','','');
photos[26] = new photo(1526371,'104673','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00319.jpg',500,667,'','http://www1.clikpic.com/ZinaKelly/images/DSC00319_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[27] = new photo(1526372,'104673','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00322.jpg',500,667,'','http://www1.clikpic.com/ZinaKelly/images/DSC00322_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[28] = new photo(1586607,'104673','','gallery','http://www1.clikpic.com/ZinaKelly/images/Beautiful.jpg',390,450,'','http://www1.clikpic.com/ZinaKelly/images/Beautiful_thumb.jpg',130, 150,0, 1,'','','','','','');
photos[29] = new photo(1586616,'104673','','gallery','http://www1.clikpic.com/ZinaKelly/images/image 1.jpg',441,575,'','http://www1.clikpic.com/ZinaKelly/images/image 1_thumb.jpg',130, 170,0, 0,'','','','','','');
photos[30] = new photo(1586614,'104673','','gallery','http://www1.clikpic.com/ZinaKelly/images/image.jpg',500,375,'','http://www1.clikpic.com/ZinaKelly/images/image_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[31] = new photo(1586618,'104673','','gallery','http://www1.clikpic.com/ZinaKelly/images/Just Married.jpg',450,421,'','http://www1.clikpic.com/ZinaKelly/images/Just Married_thumb.jpg',130, 122,0, 0,'','','','','','');
photos[32] = new photo(1586631,'104673','','gallery','http://www1.clikpic.com/ZinaKelly/images/Spring Affair.jpg',450,436,'','http://www1.clikpic.com/ZinaKelly/images/Spring Affair_thumb.jpg',130, 126,0, 0,'','','','','','');
photos[33] = new photo(1836508,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/IMG_0001.jpg',500,451,'','http://www1.clikpic.com/ZinaKelly/images/IMG_0001_thumb.jpg',130, 117,0, 0,'','','','','','');
photos[34] = new photo(1836554,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/IMG_0003.jpg',500,337,'','http://www1.clikpic.com/ZinaKelly/images/IMG_0003_thumb.jpg',130, 88,0, 0,'','','','','','');
photos[35] = new photo(1836564,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/IMG_0007.jpg',500,445,'','http://www1.clikpic.com/ZinaKelly/images/IMG_0007_thumb.jpg',130, 116,0, 0,'','','','','','');
photos[36] = new photo(1836569,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/IMG_0010.jpg',500,383,'','http://www1.clikpic.com/ZinaKelly/images/IMG_0010_thumb.jpg',130, 100,0, 0,'','','','','','');
photos[37] = new photo(1836586,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/IMG_0014.jpg',500,382,'','http://www1.clikpic.com/ZinaKelly/images/IMG_0014_thumb.jpg',130, 99,0, 0,'','','','','','');
photos[38] = new photo(1836590,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/IMG_0015.jpg',500,578,'','http://www1.clikpic.com/ZinaKelly/images/IMG_0015_thumb.jpg',130, 150,0, 0,'','','','','','');
photos[39] = new photo(2426935,'104683','','gallery','http://admin.clikpic.com/ZinaKelly/images/scan0016.jpg',400,267,'','http://admin.clikpic.com/ZinaKelly/images/scan0016_thumb.jpg',130, 87,0, 0,'','','','','','');
photos[40] = new photo(2426945,'104683','','gallery','http://admin.clikpic.com/ZinaKelly/images/scan0017.jpg',400,264,'','http://admin.clikpic.com/ZinaKelly/images/scan0017_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[41] = new photo(2426957,'104683','','gallery','http://admin.clikpic.com/ZinaKelly/images/scan0018.jpg',400,286,'','http://admin.clikpic.com/ZinaKelly/images/scan0018_thumb.jpg',130, 93,0, 0,'','','','','','');
photos[42] = new photo(2426967,'104683','','gallery','http://admin.clikpic.com/ZinaKelly/images/scan0019.jpg',400,260,'','http://admin.clikpic.com/ZinaKelly/images/scan0019_thumb.jpg',130, 85,0, 0,'','','','','','');
photos[43] = new photo(2426986,'104683','','gallery','http://admin.clikpic.com/ZinaKelly/images/scan0020.jpg',400,291,'','http://admin.clikpic.com/ZinaKelly/images/scan0020_thumb.jpg',130, 95,0, 0,'','','','','','');
photos[44] = new photo(2426994,'104683','','gallery','http://admin.clikpic.com/ZinaKelly/images/scan0021.jpg',400,281,'','http://admin.clikpic.com/ZinaKelly/images/scan0021_thumb.jpg',130, 91,0, 0,'','','','','','');
photos[45] = new photo(2427225,'104683','','gallery','http://admin.clikpic.com/ZinaKelly/images/scan0022.jpg',400,266,'','http://admin.clikpic.com/ZinaKelly/images/scan0022_thumb.jpg',130, 86,0, 0,'','','','','','');
photos[46] = new photo(2427233,'104683','','gallery','http://admin.clikpic.com/ZinaKelly/images/scan0023.jpg',400,324,'','http://admin.clikpic.com/ZinaKelly/images/scan0023_thumb.jpg',130, 105,0, 0,'','','','','','');
photos[47] = new photo(2427239,'104683','','gallery','http://admin.clikpic.com/ZinaKelly/images/scan0024.jpg',400,294,'','http://admin.clikpic.com/ZinaKelly/images/scan0024_thumb.jpg',130, 96,0, 0,'','','','','','');
photos[48] = new photo(2427241,'104683','','gallery','http://admin.clikpic.com/ZinaKelly/images/scan0025.jpg',400,347,'','http://admin.clikpic.com/ZinaKelly/images/scan0025_thumb.jpg',130, 113,0, 0,'','','','','','');
photos[49] = new photo(1526354,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00213.jpg',500,667,'','http://www1.clikpic.com/ZinaKelly/images/DSC00213_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[50] = new photo(1526361,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00252.jpg',500,375,'','http://www1.clikpic.com/ZinaKelly/images/DSC00252_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[51] = new photo(1526366,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00290.jpg',500,375,'','http://www1.clikpic.com/ZinaKelly/images/DSC00290_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[52] = new photo(1526379,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00357.jpg',500,375,'','http://www1.clikpic.com/ZinaKelly/images/DSC00357_thumb.jpg',130, 98,0, 0,'','','','','','');
photos[53] = new photo(1526384,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00359.jpg',500,667,'','http://www1.clikpic.com/ZinaKelly/images/DSC00359_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[54] = new photo(1586601,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/100EOS1D-MN9H0006_MN9H0006[1].JPG',320,480,'','http://www1.clikpic.com/ZinaKelly/images/100EOS1D-MN9H0006_MN9H0006[1]_thumb.JPG',130, 195,0, 1,'','','','','','');
photos[55] = new photo(1526399,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00365.jpg',500,667,'','http://www1.clikpic.com/ZinaKelly/images/DSC00365_thumb.jpg',130, 173,0, 0,'','','','','','');
photos[56] = new photo(1526393,'104683','','gallery','http://www1.clikpic.com/ZinaKelly/images/DSC00362.jpg',500,375,'','http://www1.clikpic.com/ZinaKelly/images/DSC00362_thumb.jpg',130, 98,0, 0,'','','','','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(123825,'2425740,2425739,2425737,2425734,2425729,2425727,2425723,2425720,2425715,2425714','All Other Occasions','gallery');
galleries[1] = new gallery(104673,'1586607','Wedding Cakes','gallery');
galleries[2] = new gallery(104683,'1586601','Birthday Cakes','gallery');

