/***************************************************************************
* 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('3985163,3985160,3985159,3985158,3985156,3985155,3985154,3985153,3981854,3981852,3981812,3981811,3981801,3981795,3981792,3981789,3981782,3981780,3981779,3897167,3897162,3897149,3897135,3897124,3897119,3897093,3896342,3896335,3896330,3896318,3896308,3896301,3896287,3896282,3896266,3896258,3892443,3892441,3892436,3892433,3892418,3892414,3892407,3892395,3892366,3892352,3892341,3892330,3892317,3892310,3892304,3892293,3892217,3892198,3892191,3892182,3892177,3892168,3892158,3892146,3892140,3892135,3892131,3884943,3884924,3884919,3884913,3884894,3884541,3884524,3884516,3884515,3884513,3884506,3884458,3884456,3884454,3884453,3884452,3884445,3884444,3884433,3884423,3811772,3811766,3811754,3811741,3811722,2787066,2787057,2787051,2787048,2787041,2787037,2787034');
	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('3985163,3985160,3985159,3985158,3985156,3985155,3985154,3985153,3981854,3981852,3981812,3981811,3981801,3981795,3981792,3981789,3981782,3981780,3981779,3897167,3897162,3897149,3897135,3897124,3897119,3897093,3896342,3896335,3896330,3896318,3896308,3896301,3896287,3896282,3896266,3896258,3892443,3892441,3892436,3892433,3892418,3892414,3892407,3892395,3892366,3892352,3892341,3892330,3892317,3892310,3892304,3892293,3892217,3892198,3892191,3892182,3892177,3892168,3892158,3892146,3892140,3892135,3892131,3884943,3884924,3884919,3884913,3884894,3884541,3884524,3884516,3884515,3884513,3884506,3884458,3884456,3884454,3884453,3884452,3884445,3884444,3884433,3884423,3811772,3811766,3811754,3811741,3811722,2787066,2787057,2787051,2787048,2787041,2787037,2787034');
	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) || (0))) {
		debug('In updateImage');
		debug('setting  img src = ' + photos[nextImg].src);
		
					
			document.getElementById('imagePhoto').innerHTML = '<img class="mainphoto" src="' + photos[nextImg].src + ' " id="mainPic" name="mainPic" width="' + photos[nextImg].width + '" height="' + photos[nextImg].height + '" alt="' + photos[nextImg].caption + '">';
						field.value = photos[nextImg].id;
			document.getElementById('imageTitle').innerHTML = photos[nextImg].caption;
									document.title = 'Derrick Copeland Photography: ' + photos[nextImg].caption;
										/* apply 'blank' classname to element where */			if ( photos[nextImg].caption == '') {
				document.getElementById('imageTitle').style.className = 'blank';
			}
			else {
				document.getElementById('imageTitle').style.className = 'normal';
			}
						temp = '';
			if (photos[nextImg].description != '') {
				temp = temp +  '<p id="imageDescription">' + photos[nextImg].description + '</p>';
			}
						if (photos[nextImg].photo_ref != '') {
				temp = temp + '<p class="imageinfo" id="imageRef"><strong>Ref: </strong>' + photos[nextImg].photo_ref + '</p>';
			}
						if (photos[nextImg].takendate != '') {
				debug('Resetting taken date');
				temp = temp + '<p class="imageinfo" id="imageDate"><strong>Date: </strong>' + photos[nextImg].takendate + '</p>';
			}
			
			if (photos[nextImg].location != '') {
				debug('Resetting location');
				temp = temp + '<p class="imageinfo" id="imageLocation"><strong>Location: </strong>' +  photos[nextImg].location + '</p>';
			}
			
			if (photos[nextImg].photographer != '') {
				debug('Resetting photographer');
				temp = temp + '<p class="imageinfo" id="imagePhotographer"><strong>Photographer: </strong>' + photos[nextImg].photographer + '</p>';
			}
			if (temp != '') {				temp = temp + '<div class="spacer"></div>';			}					if (temp == '') {
			document.getElementById('imageDetails').style.display = 'none';
		}
		else {
			document.getElementById('imageDetails').style.display = 'block';
		}
		document.getElementById('imageDetails').innerHTML =temp;	
		
	}
	else {
		debug('Redirecting to id ' + photos[nextImg].id);
		window.location = 'photo_' + photos[nextImg].id + '.html';
	}
}

/***************************************************************************
* Show the previous image for a gallery. field = hidden field containing   *
* image_id                                                                 *
*  img = reference to image object in which to show image                  *
***************************************************************************/
function previous(field,img) {


	imageID = field.value;
	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}
	}
	debug('image is ' + j);
	nextImg = -1;
	k = j -1;
	while (nextImg < 0) {
		for (; k >= 0; k--) {
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				break;
			}
		}
		if (nextImg == -1) {
			k = photos.length -1;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field,img);	
	}
}

/***************************************************************************
* Pick a photo at random from the featured images of a gallery.
        *
* Gallery_id = id of gallery to choose                                     *
* 
 img = reference to html image                                       *
* in which to show image                                                   *
***************************************************************************/
function showGalleryImage(gallery_id, img) {
	debug('Gallery = ' + gallery_id);
	for (i = 0; i < galleries.length; i++) {
		if (galleries[i].id == gallery_id) {
			imageID = randomListVal(galleries[i].featured_images);
				for (j = 0; j < photos.length; j++) {
					if (photos[j].id == imageID) {
						
						img.src = photos[j].thumbnail;
						img.width = photos[j].thumbnail_width;
						img.height = photos[j].thumbnail_height;
						
						break;
					}
				}
			break;
		}
	} 
	}

/***************************************************************************
* If we have dynamic HTML                                                  *
*  replace the galleries link with a list that                             *
* doesn't include the current gallery                                      *
***************************************************************************/
function showGalleries(gallery_id) {
	debug('Showing links for gallery ' + gallery_id);
	
	if (!basic) {
		temp = '';
		for (i = 0; i < galleries.length; i++) {
			debug('Testing gallery ' + galleries[i].id);
			
			if (galleries[i].id != gallery_id) {
				debug('Adding link');
				if (temp != '') {
					temp = temp + ' | ';
				}
				temp = temp + '<a href="gallery_' + galleries[i].id + '.html">' + galleries[i].title + '</a>';
			}
		}
		document.all.galleryLinks.innerHTML = 'Other galleries: ' + temp;
	}
}
/***************************************************************************
* Create the array of Photo objects                                        *
***************************************************************************/
photos = new Array();
photos[0] = new photo(3811722,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Aqua-Mosaic_31x24JPG.jpg',500,646,'This image shows water distortion of mosaic tiles in a fountain.','http://www4.clikpic.com/derrickc/images/Aqua-Mosaic_31x24JPG_thumb.jpg',101, 130,1, 1,'','30/04/09','Derrick Copeland','Canberra','','');
photos[1] = new photo(3811754,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Facade_24x31JPG.jpg',500,646,'Building facade taken at the City Centre in Canberra.','http://www4.clikpic.com/derrickc/images/Facade_24x31JPG_thumb.jpg',101, 130,1, 1,'','30/04/09','Derrick Copeland','Canberra','','');
photos[2] = new photo(3811766,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Fender_n_Hood_30x21JPG.jpg',500,350,'This image isolates the most interesting elements of an old wreck found in a junkyard at Port Adelaide, South Australia.','http://www4.clikpic.com/derrickc/images/Fender_n_Hood_30x21JPG_thumb.jpg',130, 91,1, 1,'','30/04/09','Derrick Copeland','Port Adelaide, South Australia','','');
photos[3] = new photo(3811772,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Squared_24x31JPG.jpg',500,646,'Abstract image of a building facade at the City Centre in Canberra.','http://www4.clikpic.com/derrickc/images/Squared_24x31JPG_thumb.jpg',101, 130,1, 1,'','30/04/09','Derrick Copeland','Canberra','','');
photos[4] = new photo(3811741,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Cosmic_30x21JPG.jpg',500,350,'Firework image taken on New Years Eve at Glenelg South Australia','http://www4.clikpic.com/derrickc/images/Cosmic_30x21JPG_thumb.jpg',130, 91,1, 1,'','31/12/08','Derrick Copeland','Glenelg, South Australia','','');
photos[5] = new photo(2787034,'119080','','gallery','http://www4.clikpic.com/derrickc/images/Budgies 10x8JPG.jpg',500,400,'\"Budgies\"','http://www4.clikpic.com/derrickc/images/Budgies 10x8JPG_thumb.jpg',130, 104,1, 1,'A juvinile Budgerigar being fed. Taken at Glen Forest Wildlife Park near Port Lincoln, South Australia.','','Derrick Copeland','Port Lincoln, South Australia','','');
photos[6] = new photo(2787037,'119080','','gallery','http://www4.clikpic.com/derrickc/images/Crested Tern 10x8JPG.jpg',500,400,'Crested Tern','http://www4.clikpic.com/derrickc/images/Crested Tern 10x8JPG_thumb.jpg',130, 104,1, 1,'A Crested Tern stretches his wings just before flying off. Taken at Port Niell, a small seaside community on Eyre Pininsula, South Australia.','','Derrick Copeland','Port Niell, South Australia.','','');
photos[7] = new photo(2787041,'119080','','gallery','http://www4.clikpic.com/derrickc/images/Egret 6x9JPG.jpg',500,750,'Egret','http://www4.clikpic.com/derrickc/images/Egret 6x9JPG_thumb.jpg',87, 130,1, 1,'An Egret strides out in the wetlands at Whyalla, South Australia.','','Derrick Copeland','Whyalla, South Australia','','');
photos[8] = new photo(2787048,'119080','','gallery','http://www4.clikpic.com/derrickc/images/Noisy minor 6x9JPG.jpg',500,750,'Noisy Minor','http://www4.clikpic.com/derrickc/images/Noisy minor 6x9JPG_thumb.jpg',87, 130,1, 1,'This image was taken at the botanical gardens in Adelade, South Australia. The birds were quite used to close contact with people, allowing photographyt close quarters.','','Derrick Copeland','Botanical Gardens, Adelaide, South Australia','','');
photos[9] = new photo(2787051,'119080','','gallery','http://www4.clikpic.com/derrickc/images/Rainbow Lorikeet 10x8JPG.jpg',500,400,'Rainbow Lorikeet','http://www4.clikpic.com/derrickc/images/Rainbow Lorikeet 10x8JPG_thumb.jpg',130, 104,1, 1,'This image was taken at the Glen Forest Wildlife Park near Port Lincoln, South Australia.','','Derrick Copeland','Port Lincoln, South Australia.','','');
photos[10] = new photo(2787057,'119080','','gallery','http://www4.clikpic.com/derrickc/images/Stilts 9x6JPG.jpg',500,333,'Stilts','http://www4.clikpic.com/derrickc/images/Stilts 9x6JPG_thumb.jpg',130, 87,1, 1,'This image was taken at the Adelaide Zoo, South Australia.','','Derrick Copeland','Adelaide Zoo, South Australia','','');
photos[11] = new photo(2787066,'119080','','gallery','http://www4.clikpic.com/derrickc/images/Wren 9x6JPG.jpg',500,334,'Wren','http://www4.clikpic.com/derrickc/images/Wren 9x6JPG_thumb.jpg',130, 87,1, 1,'This image was taken at the Canberra Zoo. A large number of these small wrens lived in and around the zoo, I was lucky to capture a reasonably close image.','','Derrick Copeland','Canberra Zoo,ACT','','');
photos[12] = new photo(3884423,'119083','','gallery','http://www4.clikpic.com/derrickc/images/Hibiscus_30x24JPG.jpg',500,400,'An abstract image of an hibiscus bloom, focussing on the stamen.','http://www4.clikpic.com/derrickc/images/Hibiscus_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','McLarren Vale, South Australia','','');
photos[13] = new photo(3884433,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Swirls_30x24JPG.jpg',500,400,'Barbed wire swirls photographed in the city centre at Canbera.','http://www4.clikpic.com/derrickc/images/Swirls_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Canberra','','');
photos[14] = new photo(3884444,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Frond_20x31JPG.jpg',500,775,'Fern frond photographed in rainforest near Strahan, Tasmania.','http://www4.clikpic.com/derrickc/images/Frond_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Strahan, Tasmania','','');
photos[15] = new photo(3884445,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Fronds_30x21JPG.jpg',500,350,'Fern fronds.','http://www4.clikpic.com/derrickc/images/Fronds_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Tasmania','','');
photos[16] = new photo(3884452,'119083','','gallery','http://www4.clikpic.com/derrickc/images/Gerbera_24x31JPG.jpg',500,646,'Pink Gerbera','http://www4.clikpic.com/derrickc/images/Gerbera_24x31JPG_thumb.jpg',101, 130,1, 1,'','','Derrick Copeland','','','');
photos[17] = new photo(3884453,'119083','','gallery','http://www4.clikpic.com/derrickc/images/Cherry_Blossom_30x24JPG.jpg',500,400,'Cherry bloosom, photographed at the Rydges Hotel Garden, Hobart, Tasmania.','http://www4.clikpic.com/derrickc/images/Cherry_Blossom_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Hobart, Tasmania','','');
photos[18] = new photo(3884454,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Gun_Tree_Bqark_20x31JPG.jpg',500,775,'Gum tree bark detail, Cradle Mountain, Tasmania.','http://www4.clikpic.com/derrickc/images/Gun_Tree_Bqark_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Cradle Mountain, Tasmania','','');
photos[19] = new photo(3884456,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Pyramid_20x31JPG.jpg',500,775,'Monument at Canberra.','http://www4.clikpic.com/derrickc/images/Pyramid_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Canberra','','');
photos[20] = new photo(3884458,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Resting_and_Rusting_30x21JPG.jpg',500,350,'Rusting car body photographed in a junkyard at Port Adelaide, South Australia.','http://www4.clikpic.com/derrickc/images/Resting_and_Rusting_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Port Adelaide, South Australia','','');
photos[21] = new photo(3884506,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Alpine_View_30x21JPG.jpg',500,350,'Melting snow at the top of Mount Wellington.','http://www4.clikpic.com/derrickc/images/Alpine_View_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Mount Wellington, Hobart, Tasmania','','');
photos[22] = new photo(3884513,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Cold_Canberra_Mornng_30x21JPG.jpg',500,350,'A cold and misty morning in Canberra','http://www4.clikpic.com/derrickc/images/Cold_Canberra_Mornng_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Canberra','','');
photos[23] = new photo(3884515,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Cradle_Mountain_30x24JPG.jpg',500,400,'Bushland scene taken at the Cradle Mountain National Park, Tasmania.','http://www4.clikpic.com/derrickc/images/Cradle_Mountain_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Cradle Mountain, Tasmania','','');
photos[24] = new photo(3884516,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Eucalypt_20x31JPG.jpg',500,775,'Eucalpt photographed at Richmond, Tasmania.','http://www4.clikpic.com/derrickc/images/Eucalypt_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Richmond, Tasmania','','');
photos[25] = new photo(3884524,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Gordon_River_Wilderness_30x21JPG.jpg',500,350,'Wilderness view cruising on the Gordon River, Tasmania.','http://www4.clikpic.com/derrickc/images/Gordon_River_Wilderness_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Gordon River, Tasmania','','');
photos[26] = new photo(3884541,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Flinders_Ranges_30x21JPG.jpg',500,350,'View in the Flinders Ranges near Wilpena Pound.','http://www4.clikpic.com/derrickc/images/Flinders_Ranges_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Flinders Ranges, South Australia','','');
photos[27] = new photo(3884894,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Flinders_Ranges_in_Drought_30x21JPG.jpg',500,350,'Dry creek bed in Flinders Ranges, South Australia','http://www4.clikpic.com/derrickc/images/Flinders_Ranges_in_Drought_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Flinders Ranges, South Australia','','');
photos[28] = new photo(3884913,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Flinders_Ranges_Waterhole_30x24JPG.jpg',500,400,'Permanent spring water in Bracchina Gorge, Flinders Ranges, South Australia.','http://www4.clikpic.com/derrickc/images/Flinders_Ranges_Waterhole_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Flinders Ranges, South Australia','','');
photos[29] = new photo(3884919,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Hogarth_Falls_30x24JPG.jpg',500,400,'Hogarth Falls, Strahan, Tasmania','http://www4.clikpic.com/derrickc/images/Hogarth_Falls_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Strahan, Tasmania','','');
photos[30] = new photo(3884924,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Isle_of_the_Dead_30x21JPG.jpg',500,350,'Isle of the Dead, Port Arthur, Tasmania','http://www4.clikpic.com/derrickc/images/Isle_of_the_Dead_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Port Arthur, Tasmania','','');
photos[31] = new photo(3884943,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Kite_Board_Heaven_24x30JPG.jpg',500,625,'Taken at the end of a kite boarding competition at Whyalla, South Austalia.','http://www4.clikpic.com/derrickc/images/Kite_Board_Heaven_24x30JPG_thumb.jpg',104, 130,1, 1,'','','Derrick copeland','Whyalla, South Australia','','');
photos[32] = new photo(3892131,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Lagoon_24x31JPG.jpg',500,646,'\"Lagoon\" near Canberra.','http://www4.clikpic.com/derrickc/images/Lagoon_24x31JPG_thumb.jpg',101, 130,1, 1,'','','Derrick Copeland','Canberra','','');
photos[33] = new photo(3892135,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Lighthouse_at_Macquarie_Harbour_30x21JPG.jpg',500,350,'Lighthouse in Macquarrie Harbour, Strahan, Tasmania.','http://www4.clikpic.com/derrickc/images/Lighthouse_at_Macquarie_Harbour_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Macquarrie Harbour, Tasmania','','');
photos[34] = new photo(3892140,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Macquarrie_Harbour_30x21JPG.jpg',500,350,'Late afternoon, picnic grounds, Macquarrie Harbour, Strahan, Tasmania.','http://www4.clikpic.com/derrickc/images/Macquarrie_Harbour_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Macquarrie Harbour, Tasmania','','');
photos[35] = new photo(3892146,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Marina_at_Strahan_30x24JPG.jpg',500,400,'Private moorings, Strahan, Tasmania.','http://www4.clikpic.com/derrickc/images/Marina_at_Strahan_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Strahan, Tasmania','','');
photos[36] = new photo(3892158,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Misty_Morning_30x21JPG.jpg',500,350,'Mist over bushland near Canberra.','http://www4.clikpic.com/derrickc/images/Misty_Morning_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Canberra','','');
photos[37] = new photo(3892168,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Myall_Tree_at_Sunset_30x24JPG.jpg',500,400,'Myall tree at sunset, Roopena Station, near Whyalla, South Australia.','http://www4.clikpic.com/derrickc/images/Myall_Tree_at_Sunset_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Whyalla, South Australia','','');
photos[38] = new photo(3892177,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Ocean_Beach_Strahan_Tasmania_30x24JPG.jpg',500,400,'Ocean beach, Macquarrie harbour, Strahan, Tasmania.','http://www4.clikpic.com/derrickc/images/Ocean_Beach_Strahan_Tasmania_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Strahan, Tasmania','','');
photos[39] = new photo(3892182,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Pencil_Pine_Cascades_30x21JPG.jpg',500,350,'Pencil Pines Cascade, Cradle mountain, Tasmania.','http://www4.clikpic.com/derrickc/images/Pencil_Pine_Cascades_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Cradle Mountain, Tasmania','','');
photos[40] = new photo(3892191,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Pencil_Pine_Creek_24x31JPG.jpg',500,646,'Pencil Pine Creek, Cradle Mountain,Tasmania.','http://www4.clikpic.com/derrickc/images/Pencil_Pine_Creek_24x31JPG_thumb.jpg',101, 130,1, 1,'','','Derrick Copeland','Cradle Mountain, Tasmania','','');
photos[41] = new photo(3892198,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Point_Lowly_LighthouseJPG.jpg',500,646,'Sunrise at Point Lowly, near Whyalla, South Australia.','http://www4.clikpic.com/derrickc/images/Point_Lowly_LighthouseJPG_thumb.jpg',101, 130,1, 1,'','','Derrick Copeland','Whyalla, South Australia','','');
photos[42] = new photo(3892217,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Port_Arthur_Harbour_30x21JPG.jpg',500,350,'View across Port Arthur Harbour from the Isle of the Dead, Tasmania.','http://www4.clikpic.com/derrickc/images/Port_Arthur_Harbour_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Port Arthur, Tasmania','','');
photos[43] = new photo(3892293,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Rainforest_Paradise_30x24JPG.jpg',500,400,'Rainforest near Queenstown, Tasmania.','http://www4.clikpic.com/derrickc/images/Rainforest_Paradise_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Queenstown, Tasmania','','');
photos[44] = new photo(3892304,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Rainforest_Rivulet_30x24JPG.jpg',500,400,'Rainforest creek, Queenstown, Tasmania.','http://www4.clikpic.com/derrickc/images/Rainforest_Rivulet_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Queenstown, Tasmania','','');
photos[45] = new photo(3892310,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Rainforest_Wilderness_30x24JPG.jpg',500,400,'Rainforest near Strahan, Tasmania.','http://www4.clikpic.com/derrickc/images/Rainforest_Wilderness_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Strahan, Tasmania','','');
photos[46] = new photo(3892317,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Rock__Face_24x31JPG.jpg',500,646,'Rock face, Roopena Station, near Whyalla, South Australia.','http://www4.clikpic.com/derrickc/images/Rock__Face_24x31JPG_thumb.jpg',101, 130,1, 1,'','','Derrick Copeland','Whyalla, South Australia','','');
photos[47] = new photo(3892330,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Snow_Gum_20x31JPG.jpg',500,775,'Gum tree, Cradle Mountain National Park, Tasmania.','http://www4.clikpic.com/derrickc/images/Snow_Gum_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick copeland','Cradle Mountain, Tasmania','','');
photos[48] = new photo(3892341,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Spring_Thaw_30x21JPG.jpg',500,350,'Vegetation emerging from the snow, Mount Wellington, Hobart, Tasmania.','http://www4.clikpic.com/derrickc/images/Spring_Thaw_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Hobart, Tasmania','','');
photos[49] = new photo(3892352,'174473','','gallery','http://www4.clikpic.com/derrickc/images/St_Davids_Park_20x31JPG.jpg',500,775,'St. David\'s Park, Hobart, Tasmania.','http://www4.clikpic.com/derrickc/images/St_Davids_Park_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Hobart, Tasmania','','');
photos[50] = new photo(3892366,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Strahan_Moorings_30x24JPG.jpg',500,400,'Boat moored at Strahan, Tasmania.','http://www4.clikpic.com/derrickc/images/Strahan_Moorings_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Strahan, Tasmania','','');
photos[51] = new photo(3892395,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Sunrise_20x31JPG.jpg',500,775,'Sunrise at Rawnsley Park, Flinders Ranges, South Australia.','http://www4.clikpic.com/derrickc/images/Sunrise_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick copeland','Flinders Ranges, South Australia','','');
photos[52] = new photo(3892407,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Sunrise_at_Whyalla_Marina_30x21JPG.jpg',500,350,'Sunrise at the marina, Whyalla, South Australia.','http://www4.clikpic.com/derrickc/images/Sunrise_at_Whyalla_Marina_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Whyalla, South Australia','','');
photos[53] = new photo(3892414,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Tasmanias_Central_Highlands_30x21JPG.jpg',500,350,'Central highland\'s, Tasmania.','http://www4.clikpic.com/derrickc/images/Tasmanias_Central_Highlands_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Near Hamilton, Tasmania','','');
photos[54] = new photo(3892418,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Tassie_Country_Garden_30x21JPG.jpg',500,350,'Country garden,Hamilton, Tasmania.','http://www4.clikpic.com/derrickc/images/Tassie_Country_Garden_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Hamilton, Tasmania','','');
photos[55] = new photo(3892433,'174473','','gallery','http://www4.clikpic.com/derrickc/images/The_Shed_20x31JPG.jpg',500,775,'Country scene near Sheffield, Tasmania.','http://www4.clikpic.com/derrickc/images/The_Shed_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Sheffield, Tasmania','','');
photos[56] = new photo(3892436,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Tree_Fern_20x31JPG.jpg',500,775,'Tree fern in rainforest near Strahan, Tasmania.','http://www4.clikpic.com/derrickc/images/Tree_Fern_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Strahan, Tasmania','','');
photos[57] = new photo(3892441,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Wilpena_Pound_30x21JPG.jpg',500,350,'Wilpena Pound, Flinders Ranges, South Australia.','http://www4.clikpic.com/derrickc/images/Wilpena_Pound_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Flinders Ranges, South Australia','','');
photos[58] = new photo(3892443,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Winter_30x21JPG.jpg',500,350,'Winter scene at Canberra.','http://www4.clikpic.com/derrickc/images/Winter_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick copeland','Canberra','','');
photos[59] = new photo(3896258,'119080','','gallery','http://www4.clikpic.com/derrickc/images/Pelican_30x21JPG.jpg',500,350,'Pelican portrait','http://www4.clikpic.com/derrickc/images/Pelican_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Whyalla, South Australia','','');
photos[60] = new photo(3896266,'119080','','gallery','http://www4.clikpic.com/derrickc/images/Peacock_30x21JPG.jpg',500,350,'Peacock on display.','http://www4.clikpic.com/derrickc/images/Peacock_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Launceston, tasmania','','');
photos[61] = new photo(3896282,'119083','','gallery','http://www4.clikpic.com/derrickc/images/Tulips_24x31JPG.jpg',500,646,'Tulips for sale at Salamanca Market, Hobart, Tasmania.','http://www4.clikpic.com/derrickc/images/Tulips_24x31JPG_thumb.jpg',101, 130,1, 1,'','','Derrick Copeland','Hobart, Tasmania','','');
photos[62] = new photo(3896287,'119083','','gallery','http://www4.clikpic.com/derrickc/images/Tulips_30x24JPG.jpg',500,400,'Tulips, photographed in a country garden in Hamilton, Tasmania.','http://www4.clikpic.com/derrickc/images/Tulips_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Hamilton, Tasmania','','');
photos[63] = new photo(3896301,'119084','','gallery','http://www4.clikpic.com/derrickc/images/Abt_Railway_Queenstown_30x21JPG.jpg',500,350,'Abt railway, Queenstown, Tasmania.','http://www4.clikpic.com/derrickc/images/Abt_Railway_Queenstown_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Queenstown, Tasmania','','');
photos[64] = new photo(3896308,'119084','','gallery','http://www4.clikpic.com/derrickc/images/Pichi_Richi_Railway_30x21JPG.jpg',500,350,'Pichi Richi Railway, Quorn, South Australia','http://www4.clikpic.com/derrickc/images/Pichi_Richi_Railway_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Quorn, South Australia','','');
photos[65] = new photo(3896318,'119084','','gallery','http://www4.clikpic.com/derrickc/images/Port_Arthur_Historic_Site_30x21JPG1.jpg',500,350,'Port Arthur Historic Site, Tasmania.','http://www4.clikpic.com/derrickc/images/Port_Arthur_Historic_Site_30x21JPG1_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Port Arthur, Tasmania','','');
photos[66] = new photo(3896330,'119084','','gallery','http://www4.clikpic.com/derrickc/images/Port_Arthur_Penitentiary_30x21JPG.jpg',500,350,'Penitentiary, Port Arthur Historic Site, tasmania.','http://www4.clikpic.com/derrickc/images/Port_Arthur_Penitentiary_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Port Arthur, Tasmania','','');
photos[67] = new photo(3896335,'119084','','gallery','http://www4.clikpic.com/derrickc/images/Redhill_Windmill_20x31JPG.jpg',500,775,'Derelict windmill near Redhill, South Australia.','http://www4.clikpic.com/derrickc/images/Redhill_Windmill_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Redhill, South Australia','','');
photos[68] = new photo(3896342,'119084','','gallery','http://www4.clikpic.com/derrickc/images/Ruins_at_Sarah_Island_30x21JPG.jpg',500,350,'Convict ruins, Sarah Island, Macquarrie Harbour, Strahan, Tasmania.','http://www4.clikpic.com/derrickc/images/Ruins_at_Sarah_Island_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Sarah Island, Tasmania','','');
photos[69] = new photo(3897093,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Convergence_30x21JPG.jpg',500,350,'Pine trees at Wirrabarra, South Australia.','http://www4.clikpic.com/derrickc/images/Convergence_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Wirrabarra, South Australia','','');
photos[70] = new photo(3897119,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Curves_24x31JPG.jpg',500,646,'','http://www4.clikpic.com/derrickc/images/Curves_24x31JPG_thumb.jpg',101, 130,1, 1,'','','Derrick Copeland','','','');
photos[71] = new photo(3897124,'119083','','gallery','http://www4.clikpic.com/derrickc/images/Golden_Gerbera_24x31JPG.jpg',500,646,'Golden Gerbera','http://www4.clikpic.com/derrickc/images/Golden_Gerbera_24x31JPG_thumb.jpg',101, 130,1, 1,'','','Derrick Copeland','','','');
photos[72] = new photo(3897135,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Mustang_20x31JPG.jpg',500,775,'Abstract view of Mustang Aircraft.','http://www4.clikpic.com/derrickc/images/Mustang_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','','','');
photos[73] = new photo(3897149,'119083','','gallery','http://www4.clikpic.com/derrickc/images/Orange_Tulips_24x31JPG.jpg',500,646,'Orange tulips photographed at Salamanca Market, Hobart.','http://www4.clikpic.com/derrickc/images/Orange_Tulips_24x31JPG_thumb.jpg',101, 130,1, 1,'','','Derrick Copeland','Hobart, Tasmania','','');
photos[74] = new photo(3897162,'119083','','gallery','http://www4.clikpic.com/derrickc/images/Pink_24x31JPG.jpg',500,646,'','http://www4.clikpic.com/derrickc/images/Pink_24x31JPG_thumb.jpg',101, 130,1, 1,'','','Derrick Copeland','','','');
photos[75] = new photo(3897167,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Strahan_Marina_30x24JPG.jpg',500,400,'Marina at Strahan, Tasmania','http://www4.clikpic.com/derrickc/images/Strahan_Marina_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Strahan, Tasmania','','');
photos[76] = new photo(3981779,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Central_Highlands_Tasmania_30x21JPG.jpg',500,350,'Snow covered peaks in the Central Highland region of Tasmania.','http://www4.clikpic.com/derrickc/images/Central_Highlands_Tasmania_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Tasmania','','');
photos[77] = new photo(3981780,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Cradle_Mountain_Woodland_30x21JPG.jpg',500,350,'Woodland country in the Cradle Mountain National Park, Tasmania.','http://www4.clikpic.com/derrickc/images/Cradle_Mountain_Woodland_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Cradle Mountain, Tasmania','','');
photos[78] = new photo(3981782,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Ocean_Beach_30x21JPG.jpg',500,350,'Ocean beach near Strahan, Tasmania.','http://www4.clikpic.com/derrickc/images/Ocean_Beach_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Strahan, Tasmania.','','');
photos[79] = new photo(3981789,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Port_Niell_30x21JPG.jpg',500,350,'Coastal scenery near Port Niell, South Australia.','http://www4.clikpic.com/derrickc/images/Port_Niell_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Port Niell, South Australia.','','');
photos[80] = new photo(3981792,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Rainforest_Glory_30x21JPG.jpg',500,350,'Rainforest near Queenstown, Tasmania.','http://www4.clikpic.com/derrickc/images/Rainforest_Glory_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Queenstown, Tasmania','','');
photos[81] = new photo(3981795,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Reflective_30x21JPG.jpg',500,350,'Lakeside at K1 winery, near McLarren Vale, South Australia.','http://www4.clikpic.com/derrickc/images/Reflective_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','McLarren Vale, South Australia','','');
photos[82] = new photo(3981801,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Black_Water_30x24JPG.jpg',500,400,'A rock holds back rushing water in Pencil Pine Creek, Cradle Mountain, Tasmanaia. The water colour comes from tannins leached into the water from the surrounding rain forest.','http://www4.clikpic.com/derrickc/images/Black_Water_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Cradle Mountain, Tasmania','','');
photos[83] = new photo(3981811,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Sideshow_Excitement_30x21JPG.jpg',500,350,'The speed and excitement of the \"skydiver\" sideshow ride is illustrated in this abstract image.','http://www4.clikpic.com/derrickc/images/Sideshow_Excitement_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Laura Folk Fair, South Australia','','');
photos[84] = new photo(3981812,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Skydiver_30x21JPG.jpg',500,350,'The \"skydiver\" ride photographed at the Laura Folk Fair in South Australia\'s Midnorth.','http://www4.clikpic.com/derrickc/images/Skydiver_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Laura, South Australia','','');
photos[85] = new photo(3981852,'240902','','gallery','http://www4.clikpic.com/derrickc/images/Guitar_Man_20x31JPG.jpg',500,775,'Bass player on stage at Thebarton Theatre in South Australia','http://www4.clikpic.com/derrickc/images/Guitar_Man_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Thebarton Theatre, south Australia','','');
photos[86] = new photo(3981854,'240902','','gallery','http://www4.clikpic.com/derrickc/images/Kite_Surfer_30x21JPG.jpg',500,350,'Kite Boarder in action at Whyalla, South Australia.','http://www4.clikpic.com/derrickc/images/Kite_Surfer_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Whyalla, South Australia','','');
photos[87] = new photo(3985153,'240902','','gallery','http://www4.clikpic.com/derrickc/images/Guitar_Hero_20x31JPG.jpg',500,775,'Guitarist absorbed in his performance; captured during a concert at Thebarton Theatre, South Australia.','http://www4.clikpic.com/derrickc/images/Guitar_Hero_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Thebarton Theatre, South Australia','','');
photos[88] = new photo(3985154,'240902','','gallery','http://www4.clikpic.com/derrickc/images/Quadbike_Racing_30x21JPG.jpg',500,350,'Quadbike racing at Whyalla, South Australia.','http://www4.clikpic.com/derrickc/images/Quadbike_Racing_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Whyalla, South Australia','','');
photos[89] = new photo(3985155,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Berries_30x21JPG.jpg',500,350,'Image captured at Cradle Mountain, Tasmania.','http://www4.clikpic.com/derrickc/images/Berries_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Cradle Mountain, Tasmania','','');
photos[90] = new photo(3985156,'174473','','gallery','http://www4.clikpic.com/derrickc/images/Rainforest_20x31JPG.jpg',500,775,'Rainforest photographed in the Gordon River region, Tasmania.','http://www4.clikpic.com/derrickc/images/Rainforest_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Gordon River, Tasmania.','','');
photos[91] = new photo(3985158,'119084','','gallery','http://www4.clikpic.com/derrickc/images/Stagecoach_at_Sovereign_Hill_30x21JPG.jpg',500,350,'The Cobb and Co stagecoach at Sovereign Hill, Ballarat, Victoria.','http://www4.clikpic.com/derrickc/images/Stagecoach_at_Sovereign_Hill_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Sovereign Hill, Victoria','','');
photos[92] = new photo(3985159,'119084','','gallery','http://www4.clikpic.com/derrickc/images/Wilderness_Railway_20x31JPG.jpg',500,775,'The Abt Railway steam engine at the turntable, Dubble Barril station, Tasmania.','http://www4.clikpic.com/derrickc/images/Wilderness_Railway_20x31JPG_thumb.jpg',84, 130,1, 1,'','','Derrick Copeland','Abt Railway, Tasmania','','');
photos[93] = new photo(3985160,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Seashore_Glass_30x21JPG.jpg',500,350,'Glass dislpay in a shop in Deloraine, Tasmania.','http://www4.clikpic.com/derrickc/images/Seashore_Glass_30x21JPG_thumb.jpg',130, 91,1, 1,'','','Derrick Copeland','Deloraine, Tasmania','','');
photos[94] = new photo(3985163,'232176','','gallery','http://www4.clikpic.com/derrickc/images/Indulgence_30x24JPG.jpg',500,400,'Hot chocolate enjoyed at Evandale near Launceston, Tasmania','http://www4.clikpic.com/derrickc/images/Indulgence_30x24JPG_thumb.jpg',130, 104,1, 1,'','','Derrick Copeland','Evandale, Tasmania','','');

/***************************************************************************
* Create the array of Gallery objects                                      *
***************************************************************************/
galleries = new Array();
galleries[0] = new gallery(232176,'3985163,3985160,3981812,3981811,3981801,3897135,3897119,3884458,3884456,3884454,3884445,3884444,3884433,3811772,3811766,3811754,3811741,3811722','Abstracts','gallery');
galleries[1] = new gallery(119084,'3985159,3985158,3896342,3896335,3896330,3896318,3896308,3896301','Australian Landmarks','gallery');
galleries[2] = new gallery(119080,'3896266,3896258,2787066,2787057,2787051,2787048,2787041,2787037,2787034','Birds','gallery');
galleries[3] = new gallery(119083,'3897162,3897149,3897124,3896287,3896282,3884453,3884452,3884423','Flowers','gallery');
galleries[4] = new gallery(174473,'3985156,3985155,3981795,3981792,3981789,3981782,3981780,3981779,3897167,3897093,3892443,3892441,3892436,3892433,3892418,3892414,3892407,3892395,3892366,3892352,3892341,3892330,3892317,3892310,3892304,3892293,3892217,3892198,3892191,3892182,3892177,3892168,3892158,3892146,3892140,3892135,3892131,3884943,3884924,3884919,3884913,3884894,3884541,3884524,3884516,3884515,3884513,3884506','Natural World','gallery');
galleries[5] = new gallery(240902,'3985154,3985153,3981854,3981852','People in Action','gallery');

