// Global variables
var web2 = false;

/***************************************************************************
 * 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_image, title, section_code, gallery_href) {
	this.id = id;
	this.featured_image = featured_image;
	this.title = title;
	this.section_code = section_code;
	this.gallery_href = gallery_href;
}

/***************************************************************************
 * Strip out HTML formatting from string
 ***************************************************************************/

//A simple routine to strip HTML tags from supplied string
//It's not very clever but it's quite useful.
//Everything between each "<" and the subsequent ">" is ignored
//hence it could get confused with any javascript comparisons
//or comments that contain comparisons.
function stripHTMLTags(str) {
	var mystr="";
	var chr="";
	var skip=false;
	var skipcancel=false;

	for (var x = 0; x < str.length; x++)
	{
		if (skipcancel == true){skip=false;}
		chr = str.charAt(x);
		if (chr == "<") {
			skip=true;
			skipcancel=false;
		}
		else if (chr == ">" && skip == true) {
			skipcancel = true;
		}

		if (skip == false) {
			mystr = mystr + chr;
		}
	}
	return mystr;
}

/***************************************************************************
 * Select a random value from a comma separated list                        *
 ***************************************************************************/
function randomListVal(list) {
	arrayVals = list.split(',');
	pos = Math.round(Math.random() * (arrayVals.length - 1));
	return arrayVals[pos];
}

/***************************************************************************
 * Show the featured image for a random gallery				   *
 ***************************************************************************/

function showHomeImage(section) {
	var galleries;
	if (section == 'travel') {
		galleries = loadTravelGalleries();
	} else if (section == 'bugs') {
		galleries = loadBugGalleries();
	} else {
		galleries = loadBirdGalleries();
	}
	var galleryID = new Date().getMilliseconds() % galleries.length;

	$( function() {
		var img = new Image();
		$(img)
		.load( function() {
			//$(this).css('display', 'none'); // .hide() doesn't work
			// in Safari when the
			// element isn't on the
			// DOM already
			$(this).hide();
			$('#homeLoader').removeClass('loading').append(this);

			// Resize to avoid IE weirdness
			var width = $(this).attr('width');
			var height = $(this).attr('height');
			if (height > 360) {
				width = width * (360 / height);
				height = 360;
			} else if (width > 480) {
				height = height * (480 / width);
				width = 480;
			}
			$(this).css( {
				'height' : height
			});
			$(this).css( {
				'width' : width
			});

			$(this).fadeIn('def', function() {
				// Preload all of the images
				var images = new Array();
				for (var gallery = 0; gallery < galleries.length; gallery++) {
					images[gallery] = new Image();
					images[gallery].src = galleries[gallery].featured_image.split('thumbnails').join('images');
				}
			});
			return false;
		})
		.error(
				function() {
					alert('Could not load image: ' + galleries[galleryID].featured_image
							.split('thumbnails').join('images'));
					return false;
				}).attr(
						'src',
						galleries[galleryID].featured_image.split('thumbnails')
						.join('images'));
		$(img).click( function() {
			window.location = galleries[galleryID].gallery_href;
			return false;
		});
	});

	document.write('<div id="homeLoader" class="loading"></div>');
}



/***************************************************************************
 * Render galleries
 ***************************************************************************/
function renderGalleries(galleries) {

	for (var i = 0; i < galleries.length; i++) {
		if ((i % 4) == 0) {
			if (i > 0) {
				document.write('</tr>');
			}
			document.write('<tr class="photorow');
			if (i == 0) {
				document.write(' first');
			}
			document.write('" id="photorow' + (i / 4) +'">');
		}
		document.write('<td id="galleryPhoto' +
				i +
		'" class="galleryPhoto');
		if ((i % 4) == 0) {
			document.write(' first');
		} else if ((i % 4) == 3) {
			document.write(' last');
		}
		document.write('"><a href="' +
				galleries[i].gallery_href +
				'"><img height="99" src="' +
				galleries[i].featured_image +
				'" alt="' +
				galleries[i].title +
				'" border=0><h3>' +
				galleries[i].title +
		'</h3></a></td>');
	}
	document.write('</tr>');
}

/***************************************************************************
 * Render gallery thumbnails                                                *
 ***************************************************************************/
function renderGalleryThumbs(photos) {

	var j = 0;
	var previousSrc = "";
	for (var i = 0; i < photos.length; i++) {
		// Only render the thumb if different from the previous.  This handles pages where the text splits
		// across multiple pages, as is required to get pas the stupid IE URL size limit
		if (photos[i].src != previousSrc) {
			previousSrc = photos[i].src;
			if (j == 0) {
				document.write('<tbody><tr class="photorow first" id="photorow1">');
			} else if ((j % 4) == 0) {
				if (j < (photos.length - 3)) {
					document.write('<tbody><tr class="photorow" id="photorow"' + (i % 4) + 1 + '>');
				} else {
					document.write('<tbody><tr class="photorow last" id="photorow"' + (i % 4) + 1 + '>');
				}
			}
			j++;

			if (photos[i].galleries_id != "links") {
				document.write('<td id="galleryPhoto1" class="galleryPhoto"><a href="../../photo.php?galleryName=\'' +
						Base64.encode(photos[i].gallery) +
						'\'&imageID=\'' +
						photos[i].id +
						'\'&galleryID=\'' +
						Base64.encode(photos[i].galleries_id) +
						'\'&imageTitle=\'' +
						Base64.encode(photos[i].caption) +
						'\'&imageRef=\'' +
						Base64.encode(photos[i].src) +
						'\'&imageLocation=\'' +
						Base64.encode(photos[i].location) +
						'\'&takendate=\'' +
						Base64.encode(photos[i].takendate) +
						'\'&photographer=\'' +
						Base64.encode(photos[i].photographer) +
						'\'&section=\'' +
						Base64.encode(photos[i].section_code) + 
				'\'">');
			} else {
				document.write('<td id="galleryPhoto1" class="galleryPhoto"><a href="' +
						photos[i].src +
				'">');
			}
			document.write('<img src="' +
					photos[i].thumbnail +
					'" height="99" alt="' +
					/*		       '" width="132" alt="' + */
					photos[i].caption +
					'" border="0"><h3>' +
					photos[i].caption +
			'</h3></a></td>');
		}
	}
}

/***************************************************************************
 * Update the top nav bar						   *
 ***************************************************************************/
function updateTopNavBar(thisPage, depth, row) {
	document.getElementById("topNavBar").innerHTML = renderTopNavBarInnerHTML(thisPage, depth, row);
}

/***************************************************************************
 * Render the top nav bar						   *
 ***************************************************************************/
function renderTopNavBar(thisPage, depth, row) {
	// Add a div to make life easier when we refresh the nav bar
	document.write('<div id="topNavBar">');

	document.write(renderTopNavBarInnerHTML(thisPage, depth, row));
	document.write('</div>');
}

/***************************************************************************
 * Build HTML fragment for each element in the top nav			   *
 ***************************************************************************/
function buildHTML(html, start, thisPage, element, name, depth, href) {
	if (start) {
		if (element == 'home') {
			html = html + '  <li class="start"><a ';
		} else {
			html = html + '  <li class="first"><a ';
		}
	} else {
		html = html + '  <li><a ';
	}

	if (thisPage == element) {
		html = html + 'class="highlight" ';
	}

	html = html + 'href="';
	if ((depth != null) && (depth != 'null') && (depth != 'undefined')) {
		html = html + depth;
	}
	html = html + href + '">' + name + '</a></li>';

	return html;
}

/***************************************************************************
 * Build HTML fragment for newer galleries
 ***************************************************************************/
function buildHTMLNewerGalleries(html, thisPage, depth, row) {
	if ((depth == null) || (depth == 'null') || (depth == 'undefined')) {
		depth = '';
	}

	html = html + '    <li class="first"><a ';
	html = html + 
	'href="javascript:updateTopNavBar(\'' +
	thisPage +
	'\', \'' + 
	depth + 
	'\', \'' +
	row +
	'\');">&laquo;Newer</a></li>';

	return html;
}

/***************************************************************************
 * Build HTML fragment for older galleries
 ***************************************************************************/
function buildHTMLOlderGalleries(html, thisPage, depth, row) {
	if ((depth == null) || (depth == 'null') || (depth == 'undefined')) {
		depth = '';
	}

	html = html + '    <li><a ';
	html = html + 
	'href="javascript:updateTopNavBar(\'' +
	thisPage +
	'\', \'' + 
	depth + 
	'\', \'' +
	row +
	'\');">Older&raquo;</a></li>';

	return html;
}

/***************************************************************************
 * Render the top nav bar						   *
 ***************************************************************************/
function renderTopNavBarInnerHTML(thisPage, depth, row) {
	if ((row == null) || (row == 'null')) {
		// Ugly, ugly, ugly...
		if ((thisPage == 'birds') ||
				(thisPage == 'locallyrare') || 
				(thisPage == 'pioneer10') || 
				(thisPage == 'bugs') ||
				(thisPage == 'odes') ||
				(thisPage == 'panochewinter10') ||
				(thisPage == '8.30.09montereybay') ||
				(thisPage == '8.16.09cordellbank') ||
				(thisPage == 'travel') ||
				(thisPage == 'nihonmachi10') ||
				(thisPage == 'seca09') ||
				(thisPage == 'mendocino09') ||
				(thisPage == 'japan07accommodations') || 
				(thisPage == 'japan07citieslandscapes')) {
			row = '1';
		} else {
			row = '2';
		}
	}

	var html = '';

	// Top row
	html = html + '<ul id="mainNav" class="menu">';

	// Home
	html = buildHTML(html, true, thisPage, 'home', 'Home', depth, 'index.html');

	// Birds
	html = buildHTML(html, false, thisPage, 'birds', 'Birds', depth, 'birdGallery.html');

	// Bird galleries
	if ((row =='1') &&
			((thisPage == 'birds') ||
					(thisPage == 'locallyrare') || 
					(thisPage == 'pioneer10') || 
					(thisPage == 'panochewinter10') ||
					(thisPage == '8.30.09montereybay') ||
					(thisPage == '8.16.09cordellbank') ||
					(thisPage == 'nc08') || 
					(thisPage == 'yuba08') || 
					(thisPage == '6.29.08farallones') ||
					(thisPage == 'mono08') || 
					(thisPage == 'panama08') || 
					(thisPage == 'peru07') || 
					(thisPage == 'japan07birds'))) {
		html = html + '  <ul id="subNav">';

		// Locally Rare
		html = buildHTML(html, true, thisPage, 'locallyrare', 'Rare or Local Interest', depth, 'Galleries/Locally Rare/gallery.html');

		// Pioneer Seamount '10
		html = buildHTML(html, false, thisPage, 'pioneer10', '5.16.10 Pioneer Seamount', depth, 'Galleries/Pioneer Seamount Spring \'10/gallery.html');

		// Panoche '09
		html = buildHTML(html, false, thisPage, 'panochewinter10', 'Panoche Valley Winter \'10', depth, 'Galleries/Panoche Winter \'10/gallery.html');

		// Monterey Bay 8.30.09
		html = buildHTML(html, false, thisPage, '8.30.09montereybay', '8.30.09 Monterey Bay', depth, 'Galleries/8.30.09 Monterey Bay/gallery.html');

		// Cordell Bank 8.16.09
		html = buildHTML(html, false, thisPage, '8.16.09cordellbank', '8.16.09 Cordell Bank', depth, 'Galleries/8.16.09 Cordell Bank/gallery.html');

		// Navigation
		html = buildHTMLOlderGalleries(html, thisPage, depth, 2);

		html = html + '  </ul>';
	} else if ((row =='2') &&
			((thisPage == 'birds') ||
					(thisPage == 'locallyrare') || 
					(thisPage == 'panochewinter10') ||
					(thisPage == '8.30.09montereybay') ||
					(thisPage == '8.16.09cordellbank') ||
					(thisPage == 'nc08') || 
					(thisPage == 'yuba08') || 
					(thisPage == '6.29.08farallones') ||
					(thisPage == 'mono08') || 
					(thisPage == 'panama08') || 
					(thisPage == 'peru07') || 
					(thisPage == 'japan07birds'))) {

		html = html + '  <ul id="subNav">';

		// Navigation
		html = buildHTMLNewerGalleries(html, thisPage, depth, 1);

		// North Carolina '08
		html = buildHTML(html, true, thisPage, 'nc08', 'North Carolina \'08', depth, 'Galleries/NorthCarolina08/gallery.html');

		// Yuba '08
		html = buildHTML(html, false, thisPage, 'yuba08', 'Yuba \'08', depth, 'Galleries/Yuba08/gallery.html');

		// Farallones 6.29.08
		html = buildHTML(html, false, thisPage, '6.29.08farallones', '6.29.08 Farallones', depth, 'Galleries/6.29.08Farallones/gallery.html');

		// Mono '08
		html = buildHTML(html, false, thisPage, 'mono08', 'Mono \'08', depth, 'Galleries/Mono08/gallery.html');

		// Panama '08
		html = buildHTML(html, false, thisPage, 'panama08', 'Panama \'08', depth, 'Galleries/Panama08/gallery.html');

		// Peru '07
		html = buildHTML(html, false, thisPage, 'peru07', 'Peru \'07', depth, 'Galleries/Peru07/gallery.html');

		// Japan '07
		html = buildHTML(html, false, thisPage, 'japan07birds', '&#26085;&#26412;2007&#40165; (Japan \'07)', depth, 'Galleries/Japan07Birds/gallery.html');

		html = html + '  </ul>';
	}

	// Top row again...

	// Bugs
	html = buildHTML(html, false, thisPage, 'bugs', 'Bugs', depth, 'bugGallery.html');

	// Bug galleries
	if ((row =='1') &&
			((thisPage == 'bugs') ||
					(thisPage == 'odes'))) {
		html = html + '  <ul id="subNav">';

		// Odes
		html = buildHTML(html, true, thisPage, 'odes', 'Odonates', depth, 'Galleries/Odes/gallery.html');

		html = html + '  </ul>';
	}

	// Travel
	html = buildHTML(html, false, thisPage, 'travel', 'Travel', depth, 'travelGallery.html');

	// Travel galleries
	if ((row == '1') &&
			((thisPage == 'travel') ||
					(thisPage == 'nihonmachi10') ||
					(thisPage == 'seca09') ||
					(thisPage == 'mendocino09') || 
					(thisPage == 'japan07accommodations') || 
					(thisPage == 'japan07citieslandscapes') || 
					(thisPage == 'japan07food') || 
					(thisPage == 'japan07templesandshrines') ||
					(thisPage == 'japan07people') ||
					(thisPage == 'japan07sakura'))) {
		html = html + '  <ul id="subNav">';

		// NorCal Cherry Blossom Festival '10
		html = buildHTML(html, true, thisPage, 'nihonmachi10', 'NorCal Sakura Festival \'10', depth, 'Galleries/NorCal Cherry Blossom Festival \'10/gallery.html');

		// Southeastern CA Winter '09
		html = buildHTML(html, false, thisPage, 'seca09', 'Southeastern CA Winter \'09/\'10', depth, 'Galleries/SECA09/gallery.html');

		// Mendocino '09
		html = buildHTML(html, false, thisPage, 'mendocino09', 'Mendocino \'09', depth, 'Galleries/Mendocino09/gallery.html');

		// Japan '07 Accommodations
		html = buildHTML(html, false, thisPage, 'japan07accommodations', 'Japan \'07 Accommodations', depth, 'Galleries/Japan Accommodations/gallery.html');

		// Navigation
		html = buildHTMLOlderGalleries(html, thisPage, depth, 2);

		html = html + '  </ul>';
	} else if ((row == '2') &&
			((thisPage == 'travel') ||
					(thisPage == 'nihonmachi10') ||
					(thisPage == 'seca09') ||
					(thisPage == 'mendocino09') || 
					(thisPage == 'japan07accommodations') || 
					(thisPage == 'japan07citieslandscapes') || 
					(thisPage == 'japan07food') || 
					(thisPage == 'japan07templesandshrines') ||
					(thisPage == 'japan07people') ||
					(thisPage == 'japan07sakura'))) {
		html = html + '  <ul id="subNav">';

		// Navigation
		html = buildHTMLNewerGalleries(html, thisPage, depth, 1);

		// Japan '07 Cities and Landscapes
		html = buildHTML(html, true, thisPage, 'japan07citieslandscapes', 'Japan \'07 Cities and Landscapes', depth, 'Galleries/Japan Cities and Landscapes/gallery.html');

		// Japan '07 Food
		html = buildHTML(html, false, thisPage, 'japan07food', 'Japan \'07 Food', depth, 'Galleries/Japan Food/gallery.html');

		// Japan '07 Temples and Shrines
		html = buildHTML(html, false, thisPage, 'japan07templesandshrines', 'Japan \'07 Temples and Shrines', depth, 'Galleries/Japan Temples and Shrines/gallery.html');

		// Japan '07 People
		html = buildHTML(html, false, thisPage, 'japan07people', 'Japan \'07 People', depth, 'Galleries/Japan People/gallery.html');

		// Japan '07 Sakura
		html = buildHTML(html, false, thisPage, 'japan07sakura', 'Japan \'07 Sakura', depth, 'Galleries/Japan Sakura/gallery.html');

		html = html + '  </ul>';
	} 

	// Top row again...

	// Commerce
	html = buildHTML(html, false, thisPage, 'commerce', 'Commerce', depth, 'commerceGallery.html');

	// Top row again...

	// Links
	html = buildHTML(html, false, thisPage, 'links', 'Links', depth, 'indexFirstGeneration.html');

	// Luke's Challenge
	html = buildHTML(html, false, thisPage, 'luke', 'Luke', depth, 'lukeColeChallenge.html');

	// Contact
	html = buildHTML(html, false, thisPage, 'contact', 'Contact', depth, 'contact.html');
	
	// Social Networking
	// html = buildHTML()

	html = html + '</ul>';

	return html;
}

/***************************************************************************
 * Parse input parameters						   *
 ***************************************************************************/
function parseInputParameters(queryParameters) {
	var query = window.location.search.substring(1);
	query = query.split('%27').join('\''); // FF3 passes in quotes as %27

	// Get each parameter
	var parameters = query.split('&');
	for (var i=0; i < parameters.length; i++) {
		var pos = parameters[i].indexOf('=');
		if (pos > 0) {
			var key = parameters[i].substring(0, pos);
			var val = parameters[i].substring(pos + 1);
			val = val.substring(1, val.length - 1);
			if ((key != 'imageID') && (key != 'slideshow') && (key != 'response') && (key != 'error') && (key != 'row') && (key != 'slideshow') && (key != 'doPrint')) {
				// Need a better way of handling this...
				val = Base64.decode(val);
			}

			// Parse out silliness from request parameters
			val = Url.decode(val);
			queryParameters[key] = val;
		}
	}
}


/***************************************************************************
 * Render the footer							   *
 ***************************************************************************/
function getFooter() {
	return '<div id="footerClearing" class="clearing">&nbsp;</div>' +
	'<div id="footer" class="clear">' +
	'<ul>' +
	'<li class="inline">Copyright &copy; 2008 - 2010 <a href="contact.html"  color="#ffffff">Mark W. Eaton</a></li>' +
	'<li class="inline">All rights reserved</li>' +
	'<li class="inline">Certain text herein may be governed by the terms of the <a href="http://www.gnu.org/copyleft/fdl.html" target="_blank">GNU Free Documentation License</a></li>' +
	'</ul>' +
	'</div>';
}

function renderFooter() {
	document.write(getFooter());

	return false;
}

var slideshow = 'false';

/***************************************************************************
 * Start the slide show							    *
 ***************************************************************************/
function startSlideShow(field, img) {
	slideshow = 'true';
	next(field, img, 'true');
}

/***************************************************************************
 * End the slide show							    *
 ***************************************************************************/
function endSlideShow(field, img) {
	slideshow = 'false';
	updateImage(currentImage(field), field, img, slideshow);
}

/***************************************************************************
 * Find the current image by field						    *
 ***************************************************************************/
function currentImage(field) {
	var imageID = field.value;
	return currentImageByImageID(imageID);      
}

/***************************************************************************
 * Find the current image by imageID
 ***************************************************************************/
function currentImageByImageID(imageID) {

	for (j = 0; j < photos.length; j++) {
		if (photos[j].id == imageID) {
			break;
		}

	}

	return j;
}

/***************************************************************************
 * 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, slideshow) {

	var j = currentImage(field);
	nextImg = -1;
	k= j + 1;
	while (nextImg < 0) {
		for (; k < photos.length; k++) {
			if (photos[k].galleries_id == photos[j].galleries_id) {
				nextImg = k;
				break;
			}
		}
		if (nextImg == -1) {
			k = 0;
		}
	}
	if (nextImg != -1) {
		updateImage(nextImg, field, img, slideshow);
	}
}


/***************************************************************************
 * Set a new image on the gallery detail page given its array position      *
 ***************************************************************************/
function updateImage (nextImg, field, img, slideshow) {
	if (slideshow == null) {
		slideshow = 'false';
	}
	
	if (web2) {
		document.getElementById("bigPic").setAttribute("src", photos[nextImg].src);
	} else {
		window.location = 'photo.php?galleryName=\'' +
		Base64.encode(photos[nextImg].gallery) +
		'\'&galleryID=\'' +
		Base64.encode(photos[nextImg].galleries_id) +
		'\'&imageID=\'' +
		photos[nextImg].id +
		'\'&imageTitle=\'' +
		Base64.encode(photos[nextImg].caption) + 
		'\'&imageRef=\'' +
		Base64.encode(photos[nextImg].src) +
		'\'&imageLocation=\'' +
		Base64.encode(photos[nextImg].location) +
		'\'&takendate=\'' +
		Base64.encode(photos[nextImg].takendate) +
		'\'&photographer=\'' +
		Base64.encode(photos[nextImg].photographer) +
		'\'&section=\'' +
		Base64.encode(photos[nextImg].section_code) +
		'\'&slideshow=\'' +
		slideshow +
		'\'';
	}
}

/***************************************************************************
 * 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) {

	var j = currentImage(field);
	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) {
	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) {

	if (!basic) {
		temp = '';
		for (i = 0; i < galleries.length; i++) {

			if (galleries[i].id != gallery_id) {
				if (temp != '') {
					temp = temp + ' | ';
				}
				temp = temp + '<a href="gallery_' + galleries[i].id + '.html">' + galleries[i].title + '</a>';
			}
		}
		document.all.galleryLinks.innerHTML = 'Other galleries: ' + temp;
	}
}

/**
 *
 *  URL encode / decode
 *  http://www.webtoolkit.info/
 *
 **/

var Url = {

		// public method for url encoding
		encode : function (string) {
	return escape(this._utf8_encode(string));
},

// public method for url decoding
decode : function (string) {
	return this._utf8_decode(unescape(string));
},

// private method for UTF-8 encoding
_utf8_encode : function (string) {
	string = string.replace(/\r\n/g,"\n");
	var utftext = "";

	for (var n = 0; n < string.length; n++) {

		var c = string.charCodeAt(n);

		if (c < 128) {
			utftext += String.fromCharCode(c);
		}
		else if((c > 127) && (c < 2048)) {
			utftext += String.fromCharCode((c >> 6) | 192);
			utftext += String.fromCharCode((c & 63) | 128);
		}
		else {
			utftext += String.fromCharCode((c >> 12) | 224);
			utftext += String.fromCharCode(((c >> 6) & 63) | 128);
			utftext += String.fromCharCode((c & 63) | 128);
		}

	}

	return utftext;
},

// private method for UTF-8 decoding
_utf8_decode : function (utftext) {
	var string = "";
	var i = 0;
	var c = c1 = c2 = 0;

	while ( i < utftext.length ) {

		c = utftext.charCodeAt(i);

		if (c < 128) {
			string += String.fromCharCode(c);
			i++;
		}
		else if((c > 191) && (c < 224)) {
			c2 = utftext.charCodeAt(i+1);
			string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
			i += 2;
		}
		else {
			c2 = utftext.charCodeAt(i+1);
			c3 = utftext.charCodeAt(i+2);
			string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
			i += 3;
		}

	}

	return string;
}

};

/***************************************************************************
 * Hex to string
 ***************************************************************************/
function hexToString(hexString) {

	var string = '';

	for (i = 0; i < hexString.length; i += 2) {
		var hexChar = parseInt(hexString.substring(i, i + 2), 16);
		if (i < 5) {
			debug(i); 
		}
		string += String.fromCharCode(hexChar);
	}

	return string;
}


/**
 *
 *  Base64 encode / decode
 *  http://www.webtoolkit.info/
 *
 **/

var Base64 = {

		// private property
		_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",

		// public method for encoding
		encode : function (input) {
	var output = "";
	var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
	var i = 0;

	input = Base64._utf8_encode(input);

	while (i < input.length) {

		chr1 = input.charCodeAt(i++);
		chr2 = input.charCodeAt(i++);
		chr3 = input.charCodeAt(i++);

		enc1 = chr1 >> 2;
		enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
		enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
		enc4 = chr3 & 63;

		if (isNaN(chr2)) {
			enc3 = enc4 = 64;
		} else if (isNaN(chr3)) {
			enc4 = 64;
		}

		output = output +
		this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
		this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);

	}

	return output;
},

// public method for decoding
decode : function (input) {
	var output = "";
	var chr1, chr2, chr3;
	var enc1, enc2, enc3, enc4;
	var i = 0;

	input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");

	while (i < input.length) {

		enc1 = this._keyStr.indexOf(input.charAt(i++));
		enc2 = this._keyStr.indexOf(input.charAt(i++));
		enc3 = this._keyStr.indexOf(input.charAt(i++));
		enc4 = this._keyStr.indexOf(input.charAt(i++));

		chr1 = (enc1 << 2) | (enc2 >> 4);
		chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
		chr3 = ((enc3 & 3) << 6) | enc4;

		output = output + String.fromCharCode(chr1);

		if (enc3 != 64) {
			output = output + String.fromCharCode(chr2);
		}
		if (enc4 != 64) {
			output = output + String.fromCharCode(chr3);
		}

	}

	output = Base64._utf8_decode(output);

	return output;

},

// private method for UTF-8 encoding
_utf8_encode : function (string) {
	string = string.replace(/\r\n/g,"\n");
	var utftext = "";

	for (var n = 0; n < string.length; n++) {

		var c = string.charCodeAt(n);

		if (c < 128) {
			utftext += String.fromCharCode(c);
		}
		else if((c > 127) && (c < 2048)) {
			utftext += String.fromCharCode((c >> 6) | 192);
			utftext += String.fromCharCode((c & 63) | 128);
		}
		else {
			utftext += String.fromCharCode((c >> 12) | 224);
			utftext += String.fromCharCode(((c >> 6) & 63) | 128);
			utftext += String.fromCharCode((c & 63) | 128);
		}

	}

	return utftext;
},

// private method for UTF-8 decoding
_utf8_decode : function (utftext) {
	var string = "";
	var i = 0;
	var c = c1 = c2 = 0;

	while ( i < utftext.length ) {

		c = utftext.charCodeAt(i);

		if (c < 128) {
			string += String.fromCharCode(c);
			i++;
		}
		else if((c > 191) && (c < 224)) {
			c2 = utftext.charCodeAt(i+1);
			string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
			i += 2;
		}
		else {
			c2 = utftext.charCodeAt(i+1);
			c3 = utftext.charCodeAt(i+2);
			string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
			i += 3;
		}

	}

	return string;
}

};

/***************************************************************************
 * String to hex
 ***************************************************************************/
function stringToHex(string) {

	var hexString = '';

	for (i = 0; i < string.length; i++) {
		hexString += string.charCodeAt(i).toString(16);
	}

	return hexString;
}

/***************************************************************************
 * Get the current window size
 ***************************************************************************/
function getWindowSize() {
	var width = 0, height = 0;

	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName == "Netscape") {
			width = window.innerWidth;
			height = window.innerHeight;
		}
		if (navigator.appName.indexOf("Microsoft") != -1) {
			width = document.body.offsetWidth;
			height = document.body.offsetHeight;
		}
	}

	return new Array(width, height);
}


/***************************************************************************
 * Support for Slimbox
 ***************************************************************************/
function getMinMax(curImage) {
	var maxImage = curImage;
	var minImage = curImage;
	var description = getDescriptionFromCurrentImage(curImage);

	if (description.length > 0) {
		for (var i = (curImage + 1); i < photos.length; i++) {
			if (photos[i].description == description) {
				maxImage = i;
			} else {
				break;
			}
		}

		for (var i = (curImage - 1); i >= 0; i--) {
			if (photos[i].description == description) {
				minImage = i;
			} else {
				break;
			}
		}
	}

	return new Array(minImage, maxImage);
}

/***************************************************************************
 * Work around IE limit
 ***************************************************************************/
//Get description directly from the object instead of getting it from the URL to work around IE URL size limit
function getDescriptionFromImageID(imageID) {
	var curImage = currentImageByImageID(imageID);
	return getDescriptionFromCurrentImage(curImage);
}

function getDescriptionFromCurrentImage(curImage) {
	var photo = photos[curImage];
	var description = photo.description;

	return description;
}

/***************************************************************************
 * Load the right photos
 ***************************************************************************/
function loadPhotos(gallery_id) {

	var photos = null;

	if (gallery_id == 'nihonmachi10') {
		photos = new Array(
				new photo(5975, 'nihonmachi10', 'travel', '5975', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_5975.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_5975.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(5981, 'nihonmachi10', 'travel', '5981', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_5981.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_5981.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(5984, 'nihonmachi10', 'travel', '5984', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_5984.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_5984.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(5986, 'nihonmachi10', 'travel', '5986', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_5986.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_5986.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(5989, 'nihonmachi10', 'travel', '5989', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_5989.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_5989.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(5991, 'nihonmachi10', 'travel', '5991', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_5991.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_5991.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(5992, 'nihonmachi10', 'travel', '5992', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_5992.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_5992.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(5999, 'nihonmachi10', 'travel', '5999', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_5999.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_5999.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6002, 'nihonmachi10', 'travel', '6002', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6002.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6002.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6003, 'nihonmachi10', 'travel', '6003', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6003.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6003.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6004, 'nihonmachi10', 'travel', '6004', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6004.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6004.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6006, 'nihonmachi10', 'travel', '6006', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6006.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6006.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6008, 'nihonmachi10', 'travel', '6008', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6008.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6008.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6009, 'nihonmachi10', 'travel', '6009', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6009.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6009.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6012, 'nihonmachi10', 'travel', '6012', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6012.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6012.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6014, 'nihonmachi10', 'travel', '6014', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6014.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6014.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6015, 'nihonmachi10', 'travel', '6015', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6015.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6015.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6017, 'nihonmachi10', 'travel', '6017', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6017.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6017.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6018, 'nihonmachi10', 'travel', '6018', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6018.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6018.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6020, 'nihonmachi10', 'travel', '6020', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6020.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6020.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6021, 'nihonmachi10', 'travel', '6021', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6021.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6021.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6023, 'nihonmachi10', 'travel', '6023', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6023.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6023.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6025, 'nihonmachi10', 'travel', '6025', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6025.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6025.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6026, 'nihonmachi10', 'travel', '6026', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6026.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6026.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6029, 'nihonmachi10', 'travel', '6029', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6029.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6029.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6031, 'nihonmachi10', 'travel', '6031', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6031.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6031.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6033, 'nihonmachi10', 'travel', '6033', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6033.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6033.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6035, 'nihonmachi10', 'travel', '6035', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6035.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6035.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6036, 'nihonmachi10', 'travel', '6036', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6036.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6036.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6037, 'nihonmachi10', 'travel', '6037', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6037.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6037.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6039, 'nihonmachi10', 'travel', '6039', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6039.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6039.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6041, 'nihonmachi10', 'travel', '6041', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6041.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6041.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6042, 'nihonmachi10', 'travel', '6042', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6042.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6042.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6044, 'nihonmachi10', 'travel', '6044', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6044.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6044.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6047, 'nihonmachi10', 'travel', '6047', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6047.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6047.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6048, 'nihonmachi10', 'travel', '6048', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6048.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6048.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6049, 'nihonmachi10', 'travel', '6049', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6049.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6049.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6050, 'nihonmachi10', 'travel', '6050', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6050.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6050.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6051, 'nihonmachi10', 'travel', '6051', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6051.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6051.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6052, 'nihonmachi10', 'travel', '6052', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6052.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6052.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6055, 'nihonmachi10', 'travel', '6055', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6055.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6055.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6057, 'nihonmachi10', 'travel', '6057', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6057.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6057.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6058, 'nihonmachi10', 'travel', '6058', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6058.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6058.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6060, 'nihonmachi10', 'travel', '6060', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6060.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6060.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6062, 'nihonmachi10', 'travel', '6062', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6062.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6062.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6064, 'nihonmachi10', 'travel', '6064', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6064.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6064.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6065, 'nihonmachi10', 'travel', '6065', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6065.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6065.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6067, 'nihonmachi10', 'travel', '6067', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6067.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6067.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6068, 'nihonmachi10', 'travel', '6068', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6068.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6068.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6069, 'nihonmachi10', 'travel', '6069', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6069.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6069.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6070, 'nihonmachi10', 'travel', '6070', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6070.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6070.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6072, 'nihonmachi10', 'travel', '6072', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6072.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6072.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6073, 'nihonmachi10', 'travel', '6073', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6073.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6073.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6074, 'nihonmachi10', 'travel', '6074', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6074.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6074.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6075, 'nihonmachi10', 'travel', '6075', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6075.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6075.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6076, 'nihonmachi10', 'travel', '6076', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6076.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6076.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6077, 'nihonmachi10', 'travel', '6077', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6077.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6077.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6078, 'nihonmachi10', 'travel', '6078', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6078.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6078.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6079, 'nihonmachi10', 'travel', '6079', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6079.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6079.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6080, 'nihonmachi10', 'travel', '6080', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6080.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6080.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6091, 'nihonmachi10', 'travel', '6091', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6091.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6091.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6094, 'nihonmachi10', 'travel', '6094', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6094.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6094.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6099, 'nihonmachi10', 'travel', '6099', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6099.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6099.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6101, 'nihonmachi10', 'travel', '6101', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6101.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6101.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6104, 'nihonmachi10', 'travel', '6104', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6104.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6104.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6105, 'nihonmachi10', 'travel', '6105', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6105.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6105.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6106, 'nihonmachi10', 'travel', '6106', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6106.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6106.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6109, 'nihonmachi10', 'travel', '6109', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6109.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6109.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6112, 'nihonmachi10', 'travel', '6112', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6112.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6112.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6114, 'nihonmachi10', 'travel', '6114', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6114.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6114.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6117, 'nihonmachi10', 'travel', '6117', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6117.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6117.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6120, 'nihonmachi10', 'travel', '6120', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6120.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6120.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6122, 'nihonmachi10', 'travel', '6122', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6122.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6122.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6127, 'nihonmachi10', 'travel', '6127', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6127.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6127.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6128, 'nihonmachi10', 'travel', '6128', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6128.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6128.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6130, 'nihonmachi10', 'travel', '6130', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6130.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6130.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6136, 'nihonmachi10', 'travel', '6136', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6136.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6136.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6142, 'nihonmachi10', 'travel', '6142', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6142.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6142.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6151, 'nihonmachi10', 'travel', '6151', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6151.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6151.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6155, 'nihonmachi10', 'travel', '6155', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6155.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6155.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6156, 'nihonmachi10', 'travel', '6156', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6156.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6156.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6158, 'nihonmachi10', 'travel', '6158', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6158.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6158.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6159, 'nihonmachi10', 'travel', '6159', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6159.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6159.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6162, 'nihonmachi10', 'travel', '6162', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6162.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6162.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6163, 'nihonmachi10', 'travel', '6163', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6163.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6163.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6166, 'nihonmachi10', 'travel', '6166', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6166.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6166.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6167, 'nihonmachi10', 'travel', '6167', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6167.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6167.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6169, 'nihonmachi10', 'travel', '6169', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6169.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6169.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6170, 'nihonmachi10', 'travel', '6170', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6170.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6170.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6171, 'nihonmachi10', 'travel', '6171', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6171.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6171.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6172, 'nihonmachi10', 'travel', '6172', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6172.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6172.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6173, 'nihonmachi10', 'travel', '6173', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6173.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6173.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6174, 'nihonmachi10', 'travel', '6174', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6174.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6174.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6175, 'nihonmachi10', 'travel', '6175', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6175.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6175.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6177, 'nihonmachi10', 'travel', '6177', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6177.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6177.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6178, 'nihonmachi10', 'travel', '6178', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6178.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6178.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6179, 'nihonmachi10', 'travel', '6179', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6179.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6179.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6180, 'nihonmachi10', 'travel', '6180', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6180.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6180.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6181, 'nihonmachi10', 'travel', '6181', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6181.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6181.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6182, 'nihonmachi10', 'travel', '6182', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6182.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6182.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6183, 'nihonmachi10', 'travel', '6183', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6183.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6183.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6184, 'nihonmachi10', 'travel', '6184', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6184.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6184.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6185, 'nihonmachi10', 'travel', '6185', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6185.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6185.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6186, 'nihonmachi10', 'travel', '6186', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6186.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6186.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6187, 'nihonmachi10', 'travel', '6187', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6187.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6187.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6188, 'nihonmachi10', 'travel', '6188', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6188.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6188.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6189, 'nihonmachi10', 'travel', '6189', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6189.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6189.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6190, 'nihonmachi10', 'travel', '6190', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6190.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6190.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6191, 'nihonmachi10', 'travel', '6191', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6191.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6191.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6192, 'nihonmachi10', 'travel', '6192', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6192.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6192.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6193, 'nihonmachi10', 'travel', '6193', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6193.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6193.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6194, 'nihonmachi10', 'travel', '6194', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6194.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6194.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6195, 'nihonmachi10', 'travel', '6195', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6195.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6195.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6196, 'nihonmachi10', 'travel', '6196', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6196.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6196.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6197, 'nihonmachi10', 'travel', '6197', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6197.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6197.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6198, 'nihonmachi10', 'travel', '6198', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6198.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6198.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6200, 'nihonmachi10', 'travel', '6200', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6200.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6200.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6201, 'nihonmachi10', 'travel', '6201', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6201.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6201.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6202, 'nihonmachi10', 'travel', '6202', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6202.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6202.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6203, 'nihonmachi10', 'travel', '6203', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6203.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6203.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6204, 'nihonmachi10', 'travel', '6204', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6204.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6204.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6205, 'nihonmachi10', 'travel', '6205', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6205.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6205.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6206, 'nihonmachi10', 'travel', '6206', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6206.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6206.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6207, 'nihonmachi10', 'travel', '6207', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6207.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6207.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6208, 'nihonmachi10', 'travel', '6208', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6208.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6208.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6212, 'nihonmachi10', 'travel', '6212', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6212.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6212.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6213, 'nihonmachi10', 'travel', '6213', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6213.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6213.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6216, 'nihonmachi10', 'travel', '6216', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6216.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6216.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6217, 'nihonmachi10', 'travel', '6217', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6217.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6217.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6218, 'nihonmachi10', 'travel', '6218', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6218.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6218.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6219, 'nihonmachi10', 'travel', '6219', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6219.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6219.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6220, 'nihonmachi10', 'travel', '6220', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6220.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6220.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6230, 'nihonmachi10', 'travel', '6230', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6230.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6230.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6241, 'nihonmachi10', 'travel', '6241', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6241.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6241.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6246, 'nihonmachi10', 'travel', '6246', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6246.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6246.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6250, 'nihonmachi10', 'travel', '6250', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6250.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6250.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6251, 'nihonmachi10', 'travel', '6251', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6251.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6251.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6252, 'nihonmachi10', 'travel', '6252', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6252.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6252.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6253, 'nihonmachi10', 'travel', '6253', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6253.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6253.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6256, 'nihonmachi10', 'travel', '6256', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6256.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6256.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', ''),
				new photo(6257, 'nihonmachi10', 'travel', '6257', 'Galleries/NorCal Cherry Blossom Festival \'10/Output/images/IMG_6257.jpg', 600, 450, 'Northern California Cherry Blossom Festival 2010', 'Output/thumbnails/IMG_6257.jpg', 132, 99, 0, 'Northern California Cherry Blossom Festival 2010', 'Overdose of Japanese culture', 'April 2010', 'Mark Eaton', 'Nihonmachi San Francisco', '', '')
		);
	} else if (gallery_id == 'panochewinter10') {
		photos = new Array(
				new photo(2009112671294568, 'panochewinter10', '2009112671294568', 'birds', 'Galleries/Panoche Winter \'10/Output/images/7129 Burrowing Owl Athene cunicularia IMG_4568.jpg', 600, 450, 'Burrowing Owl <i>Athene cunicularia</i>', 'Output/thumbnails/7129 Burrowing Owl Athene cunicularia IMG_4568.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'This little cutie was a stakeout from a previous trip.  It was very close to the road and flushed as soon as I got out of the car.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(2009112672544586, 'panochewinter10', '2009112672544586', 'birds', 'Galleries/Panoche Winter \'10/Output/images/7254 Northern Long-eared Owl Asio otus IMG_4586.jpg', 600, 450, 'Northern Long-eared Owl <i>Asio otus</i>', 'Output/thumbnails/7254 Northern Long-eared Owl Asio otus IMG_4586.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'No less than the famous (Northern) Long-eared Owl roost at Mercy Hot Springs.  There were at least 6 or 7 birds here in a wide variety of different postures.  Most standard texts say that the facial shape is circular for a Long-eared Owl but from these photos, it clearly depends on the posture of the bird.  Sublime.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(2009112672544588, 'panochewinter10', '2009112672544588', 'birds', 'Galleries/Panoche Winter \'10/Output/images/7254 Northern Long-eared Owl Asio otus IMG_4588.jpg', 600, 450, 'Northern Long-eared Owl <i>Asio otus</i>', 'Output/thumbnails/7254 Northern Long-eared Owl Asio otus IMG_4588.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'No less than the famous (Northern) Long-eared Owl roost at Mercy Hot Springs.  There were at least 6 or 7 birds here in a wide variety of different postures.  Most standard texts say that the facial shape is circular for a Long-eared Owl but from these photos, it clearly depends on the posture of the bird.  Sublime.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(2009112672544598, 'panochewinter10', '2009112672544598', 'birds', 'Galleries/Panoche Winter \'10/Output/images/7254 Northern Long-eared Owl Asio otus IMG_4598.jpg', 600, 450, 'Northern Long-eared Owl <i>Asio otus</i>', 'Output/thumbnails/7254 Northern Long-eared Owl Asio otus IMG_4598.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'No less than the famous (Northern) Long-eared Owl roost at Mercy Hot Springs.  There were at least 6 or 7 birds here in a wide variety of different postures.  Most standard texts say that the facial shape is circular for a Long-eared Owl but from these photos, it clearly depends on the posture of the bird.  Sublime.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(2009112672544602, 'panochewinter10', '2009112672544602', 'birds', 'Galleries/Panoche Winter \'10/Output/images/7254 Northern Long-eared Owl Asio otus IMG_4602.jpg', 600, 450, 'Northern Long-eared Owl <i>Asio otus</i>', 'Output/thumbnails/7254 Northern Long-eared Owl Asio otus IMG_4602.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'No less than the famous (Northern) Long-eared Owl roost at Mercy Hot Springs.  There were at least 6 or 7 birds here in a wide variety of different postures.  Most standard texts say that the facial shape is circular for a Long-eared Owl but from these photos, it clearly depends on the posture of the bird.  Sublime.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(2009112672544610, 'panochewinter10', '2009112672544610', 'birds', 'Galleries/Panoche Winter \'10/Output/images/7254 Northern Long-eared Owl Asio otus IMG_4610.jpg', 600, 450, 'Northern Long-eared Owl <i>Asio otus</i>', 'Output/thumbnails/7254 Northern Long-eared Owl Asio otus IMG_4610.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'No less than the famous (Northern) Long-eared Owl roost at Mercy Hot Springs.  There were at least 6 or 7 birds here in a wide variety of different postures.  Most standard texts say that the facial shape is circular for a Long-eared Owl but from these photos, it clearly depends on the posture of the bird.  Sublime.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(2009112672544613, 'panochewinter10', '2009112672544613', 'birds', 'Galleries/Panoche Winter \'10/Output/images/7254 Northern Long-eared Owl Asio otus IMG_4613.jpg', 600, 450, 'Northern Long-eared Owl <i>Asio otus</i>', 'Output/thumbnails/7254 Northern Long-eared Owl Asio otus IMG_4613.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'No less than the famous (Northern) Long-eared Owl roost at Mercy Hot Springs.  There were at least 6 or 7 birds here in a wide variety of different postures.  Most standard texts say that the facial shape is circular for a Long-eared Owl but from these photos, it clearly depends on the posture of the bird.  Sublime.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(20091126141854583, 'panochewinter10', '20091126141854583', 'birds', 'Galleries/Panoche Winter \'10/Output/images/14185 Say\'s Phoebe Sayornis saya IMG_4583.jpg', 600, 450, 'Say\'s Phoebe <i>Sayornis saya</i>', 'Output/thumbnails/14185 Say\'s Phoebe Sayornis saya IMG_4583.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'Through the haze in a field.  I\'m surprised I don\'t have a better picture.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(20091126155774575, 'panochewinter10', '20091126155774575', 'birds', 'Galleries/Panoche Winter \'10/Output/images/15577 Loggerhead Shrike Lanius ludovicianus IMG_4575.jpg', 600, 450, 'Loggerhead Shrike <i>Lanius ludovicianus</i>', 'Output/thumbnails/15577 Loggerhead Shrike Lanius ludovicianus IMG_4575.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'Hard to get close enough for a good picture of one of these, this is a 100% crop in so-so light.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(20091126165624543, 'panochewinter10', '20091126165624543', 'birds', 'Galleries/Panoche Winter \'10/Output/images/16562 Yellow-billed Magpie Pica nuttalli IMG_4543.jpg', 600, 450, 'Yellow-billed Magpie <i>Pica nuttalli</i>', 'Output/thumbnails/16562 Yellow-billed Magpie Pica nuttalli IMG_4543.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'I had 26 of these during the day.  Nice to see good numbers of a bird that\'s getting harder to find.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(20091126219134552, 'panochewinter10', '20091126219134552', 'birds', 'Galleries/Panoche Winter \'10/Output/images/21913 Western Bluebird Sialia mexicana IMG_4552.jpg', 600, 450, 'Western Bluebird <i>Sialia mexicana</i>', 'Output/thumbnails/21913 Western Bluebird Sialia mexicana IMG_4552.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'I had only a few of these on the drive up to the valley.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(20091126219204562, 'panochewinter10', '20091126219204562', 'birds', 'Galleries/Panoche Winter \'10/Output/images/21920 Mountain Bluebird Sialia currucoides IMG_4562.jpg', 600, 450, 'Mountain Bluebird <i>Sialia currucoides</i>', 'Output/thumbnails/21920 Mountain Bluebird Sialia currucoides IMG_4562.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'Reports earlier in the week had Mountain Bluebirds numbering almost into the the thousands.  I only managed 242 for the trip.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(20091126219204571, 'panochewinter10', '20091126219204571', 'birds', 'Galleries/Panoche Winter \'10/Output/images/21920 Mountain Bluebird Sialia currucoides IMG_4571.jpg', 600, 450, 'Mountain Bluebird <i>Sialia currucoides</i>', 'Output/thumbnails/21920 Mountain Bluebird Sialia currucoides IMG_4571.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'Reports earlier in the week had Mountain Bluebirds numbering almost into the the thousands.  I only managed 242 for the trip.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(20091126290934581, 'panochewinter10', '20091126290934581', 'birds', 'Galleries/Panoche Winter \'10/Output/images/29093 Lark Sparrow Chondestes grammacus IMG_4581.jpg', 600, 450, 'Lark Sparrow <i>Chondestes grammacus</i>', 'Output/thumbnails/29093 Lark Sparrow Chondestes grammacus IMG_4581.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'I\'ve seen Lark Sparrows in the thousands on previous trips.  This trip I only had 5.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(20091126291144554, 'panochewinter10', '20091126291144554', 'birds', 'Galleries/Panoche Winter \'10/Output/images/29114 Savannah Sparrow Passerculus sandwichensis IMG_4554.jpg', 600, 450, 'Savannah Sparrow <i>Passerculus sandwichensis</i>', 'Output/thumbnails/29114 Savannah Sparrow Passerculus sandwichensis IMG_4554.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'The default sparrow in Panoche Valley.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', ''),
				new photo(20091126291144574, 'panochewinter10', '20091126291144574', 'birds', 'Galleries/Panoche Winter \'10/Output/images/29114 Savannah Sparrow Passerculus sandwichensis IMG_4574.jpg', 600, 450, 'Savannah Sparrow <i>Passerculus sandwichensis</i>', 'Output/thumbnails/29114 Savannah Sparrow Passerculus sandwichensis IMG_4574.jpg', 132, 99, 0, '11.26.09 Panoche Valley and Environs', 'The default sparrow in Panoche Valley.', 'November \'09', 'Mark Eaton', 'San Benito and Fresno Counties', '', '')
		);
	} else if (gallery_id == '8.30.09montereybay') {
		photos = new Array(
				new photo(2009083017043792, '8.30.09montereybay', '2009083017043792', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908301704 Pink-footed Shearwater Puffinus creatopus IMG_3792.jpg', 600, 450, 'Pink-footed Shearwater <i>Puffinus creatopus</i>', 'Output/thumbnails/200908301704 Pink-footed Shearwater Puffinus creatopus IMG_3792.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'The most common shearwater found further offshore.  Sooty Shearwaters were mostly closer to shore.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(2009083017433799, '8.30.09montereybay', '2009083017433799', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908301743 Wilson\'s Storm-Petrel Oceanites oceanicus IMG_3799.jpg', 600, 450, 'Wilson\'s Storm-Petrel <i>Oceanites oceanicus</i>', 'Output/thumbnails/200908301743 Wilson\'s Storm-Petrel Oceanites oceanicus IMG_3799.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'Nice photo in difficult conditions of the only Wilson\'s Storm-Petrel on the day.  Notice the white undertail coverts and the long legs, visible even in flight projecting beyond the tip of the tail.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(2009083017433801, '8.30.09montereybay', '2009083017433801', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908301743 Wilson\'s Storm-Petrel Oceanites oceanicus IMG_3801.jpg', 600, 450, 'Wilson\'s Storm-Petrel <i>Oceanites oceanicus</i>', 'Output/thumbnails/200908301743 Wilson\'s Storm-Petrel Oceanites oceanicus IMG_3801.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'Nice photo in difficult conditions of the only Wilson\'s Storm-Petrel on the day.  Notice the white undertail coverts and the long legs, visible even in flight projecting beyond the tip of the tail.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(2009083017783729, '8.30.09montereybay', '2009083017783729', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908301778 Ashy Storm-Petrel Oceanodroma homochroa IMG_3729.jpg', 600, 450, 'Ashy Storm-Petrel <i>Oceanodroma homochroa</i>', 'Output/thumbnails/200908301778 Ashy Storm-Petrel Oceanodroma homochroa IMG_3729.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'For contrast, here\'s a photo of the far more numerous Ashy Storm-Petrel.  Notice even in the flat light the ashy brown coloration and more faintly delineated carpal bar.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(2009083017783731, '8.30.09montereybay', '2009083017783731', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908301778 Ashy Storm-Petrel Oceanodroma homochroa IMG_3731.jpg', 600, 450, 'Ashy Storm-Petrel <i>Oceanodroma homochroa</i>', 'Output/thumbnails/200908301778 Ashy Storm-Petrel Oceanodroma homochroa IMG_3731.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'I believe that this is the same bird as in the previous photo.  Notice how high the wings are raised in the windy conditions of the day.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(2009083017783771, '8.30.09montereybay', '2009083017783771', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908301778 Ashy Storm-Petrel Oceanodroma homochroa IMG_3771.jpg', 600, 450, 'Ashy Storm-Petrel <i>Oceanodroma homochroa</i>', 'Output/thumbnails/200908301778 Ashy Storm-Petrel Oceanodroma homochroa IMG_3771.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'This is a different individual from the previous two photos.  This photo seems to suggest the more typical shallow wing beats.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(2009083040523809, '8.30.09montereybay', '2009083040523809', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908304052 Sabine\'s Gull Xema sabini IMG_3809.jpg', 600, 450, 'Sabine\'s Gull <i>Xema sabini</i>', 'Output/thumbnails/200908304052 Sabine\'s Gull Xema sabini IMG_3809.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'Nice photo of 2 individuals moving through relatively close to the boat.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(2009083040523811, '8.30.09montereybay', '2009083040523811', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908304052 Sabine\'s Gull Xema sabini IMG_3811.jpg', 600, 450, 'Sabine\'s Gull <i>Xema sabini</i>', 'Output/thumbnails/200908304052 Sabine\'s Gull Xema sabini IMG_3811.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'One of only a few photos from the day in good light.  Nice!', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(2009083041013702, '8.30.09montereybay', '2009083041013702', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908304101 Western Gull Larus occidentalis IMG_3702.jpg', 600, 450, 'Western Gull <i>Larus occidentalis</i>', 'Output/thumbnails/200908304101 Western Gull Larus occidentalis IMG_3702.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'Juvenile Western Gull looking for a handout at the rear of the boat.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(2009083043093720, '8.30.09montereybay', '2009083043093720', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908304309 Long-tailed Jaeger Stercorarius longicaudus IMG_3720.jpg', 600, 450, 'Long-tailed Jaeger <i>Stercorarius longicaudus</i> (SY light morph)', 'Output/thumbnails/200908304309 Long-tailed Jaeger Stercorarius longicaudus IMG_3720.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'Long-tailed Jaeger was the most common Jaeger of the day and many were subadults.  Notice the heavy barring on the flanks contrasting with the clean white belly, strongly marked underwing and restricted amount of white in the outer primaries.  Note the following comments on aging subadult jaegers courtesy of Dan Singer:<blockquote><i>In my opinion the LTJA photos you posted are not juveniles but rather first-summer birds (in formative plumage). This is most evident to me in the dark bird, somewhat less so in the first pale one. The needle-like tail projections are worn central rectrices. Juveniles (which wear juvenal plumage) have longish R1s but they are broader with rounded tips and aren\'t worn this time of year. Also, most (all?) juvenile LTJA show more of a white flash on the under primaries than do most (all?) first summer birds (different plumages). Juvenile jaegers show pale fringes and tips to the mantle and upper wing coverts, whereas first summer birds do not. You can see this clearly on the dark bird and the second pale bird. Both the first and second birds show different degrees of the incoming dark cap - good for birds in the their first summer and older, but not juveniles. Also, in the dark bird, note the reduced amount of spotting on the underwing coverts. Juvenile always have extensively spotted underwing coverts, but 2nd calendar year birds are very variable.</p><p>Jaegers of all three species molt out of their juvenal plumage upon reaching their wintering grounds. This complete or nearly complete molt is the pre-formative molt and results in the formative plumage. By the time we see these 2nd calendar year birds in the northern hemisphere, typically in August and September, they are still in formative plumage, and probably won\'t begin their 2nd pre-basic molt until reaching or at least nearing their wintering areas.</i></blockquote>', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(2009083043093774, '8.30.09montereybay', '2009083043093774', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908304309 Long-tailed Jaeger Stercorarius longicaudus IMG_3774.jpg', 600, 450, 'Long-tailed Jaeger <i>Stercorarius longicaudus</i> (SY dark morph)', 'Output/thumbnails/200908304309 Long-tailed Jaeger Stercorarius longicaudus IMG_3774.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'Dark morph jaegers are among the most difficult identification problems at sea, but notice the heavily barred flanks, highly-restricted white in the primaries and dark on the bill almost half the bill.  Note the following comments on aging subadult jaegers courtesy of Dan Singer:<blockquote><i>In my opinion the LTJA photos you posted are not juveniles but rather first-summer birds (in formative plumage). This is most evident to me in the dark bird, somewhat less so in the first pale one. The needle-like tail projections are worn central rectrices. Juveniles (which wear juvenal plumage) have longish R1s but they are broader with rounded tips and aren\'t worn this time of year. Also, most (all?) juvenile LTJA show more of a white flash on the under primaries than do most (all?) first summer birds (different plumages). Juvenile jaegers show pale fringes and tips to the mantle and upper wing coverts, whereas first summer birds do not. You can see this clearly on the dark bird and the second pale bird. Both the first and second birds show different degrees of the incoming dark cap - good for birds in the their first summer and older, but not juveniles. Also, in the dark bird, note the reduced amount of spotting on the underwing coverts. Juvenile always have extensively spotted underwing coverts, but 2nd calendar year birds are very variable.</p><p>Jaegers of all three species molt out of their juvenal plumage upon reaching their wintering grounds. This complete or nearly complete molt is the pre-formative molt and results in the formative plumage. By the time we see these 2nd calendar year birds in the northern hemisphere, typically in August and September, they are still in formative plumage, and probably won\'t begin their 2nd pre-basic molt until reaching or at least nearing their wintering areas.</i></blockquote>', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(2009083043093819, '8.30.09montereybay', '2009083043093819', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908304309 Long-tailed Jaeger Stercorarius longicaudus IMG_3819.jpg', 600, 450, 'Long-tailed Jaeger <i>Stercorarius longicaudus</i> (SY light morph)', 'Output/thumbnails/200908304309 Long-tailed Jaeger Stercorarius longicaudus IMG_3819.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'A different individual from the bird two pictures previous.  Again notice the barred flanks and the highly-restricted white on the outer primaries along with a relatively unmarked belly.  Note the following comments on aging subadult jaegers courtesy of Dan Singer:<blockquote><i>In my opinion the LTJA photos you posted are not juveniles but rather first-summer birds (in formative plumage). This is most evident to me in the dark bird, somewhat less so in the first pale one. The needle-like tail projections are worn central rectrices. Juveniles (which wear juvenal plumage) have longish R1s but they are broader with rounded tips and aren\'t worn this time of year. Also, most (all?) juvenile LTJA show more of a white flash on the under primaries than do most (all?) first summer birds (different plumages). Juvenile jaegers show pale fringes and tips to the mantle and upper wing coverts, whereas first summer birds do not. You can see this clearly on the dark bird and the second pale bird. Both the first and second birds show different degrees of the incoming dark cap - good for birds in the their first summer and older, but not juveniles. Also, in the dark bird, note the reduced amount of spotting on the underwing coverts. Juvenile always have extensively spotted underwing coverts, but 2nd calendar year birds are very variable.</p><p>Jaegers of all three species molt out of their juvenal plumage upon reaching their wintering grounds. This complete or nearly complete molt is the pre-formative molt and results in the formative plumage. By the time we see these 2nd calendar year birds in the northern hemisphere, typically in August and September, they are still in formative plumage, and probably won\'t begin their 2nd pre-basic molt until reaching or at least nearing their wintering areas.</i></blockquote>', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', '')
		);
	} else if (gallery_id == '8.16.09cordellbank') {
		photos = new Array(
				new photo(16113512, '8.16.09cordellbank', '16113512', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1611 Black-footed Albatross Phoebastria nigripes IMG_3512.jpg', 600, 450, 'Black-footed Albatross <i>Phoebastria nigripes</i>', 'Output/thumbnails/1611 Black-footed Albatross Phoebastria nigripes IMG_3512.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'One of many that joined us at the second slick', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(16113582, '8.16.09cordellbank', '16113582', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1611 Black-footed Albatross Phoebastria nigripes IMG_3582.jpg', 600, 450, 'Black-footed Albatross <i>Phoebastria nigripes</i>', 'Output/thumbnails/1611 Black-footed Albatross Phoebastria nigripes IMG_3582.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'One of many that joined us at the second slick', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(16153593, '8.16.09cordellbank', '16153593', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1615 Northern Fulmar Fulmarus glacialis IMG_3593.jpg', 600, 450, 'Northern Fulmar <i>Fulmarus glacialis</i>', 'Output/thumbnails/1615 Northern Fulmar Fulmarus glacialis IMG_3593.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'Interesting quiz bird.  In this plumage, the white flash at the base of the primaries doesn\'t show up particularly well', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(16153605, '8.16.09cordellbank', '16153605', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1615 Northern Fulmar Fulmarus glacialis IMG_3605.jpg', 600, 450, 'Northern Fulmar <i>Fulmarus glacialis</i>', 'Output/thumbnails/1615 Northern Fulmar Fulmarus glacialis IMG_3605.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'This bird looks oiled to me.  Maybe that\'s why it came into the slick.  Could be the same individual as in the previous photo.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(16613518, '8.16.09cordellbank', '16613518', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3518.jpg', 600, 450, 'Hawaiian Petrel <i>Pterodroma sandwichensis</i>', 'Output/thumbnails/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3518.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'While I didn\'t get a photo of any of the Cook\'s Petrels that were seen on the day, this bird lingered at the rear of the boat around the slick and allowed these set of photos to be taken.<p><b>Description:</b><br/>An obvious seabird bearing a superficial resemablance to a shearwater.  However, the flight style was completely different; the bird rarely moved its wings and often banked dramatically upward so that the wings were almost vertical forming large sweeping arcs.  The undersiders were generally clean white; the underwing was fairly white with a dark trailing edge and the underside of the outer primaries.  The leading edge on the underwing was bold black, continuing into a prominent black "comma" on the underwing secondary coverts.  The undertail coverts appeared to be clean white and the tail tapered noticeable almost to a point</p><p>The upperparts were brownish-gray, with a fairly distinct "M" on the upperwing, more so than is shown in photos.  The cap was black, contrasting with the gray hood that extended well below the eye.  The forehead was white, contrasting strongly with the black bill and black cap and the cap and hood were cleanly separated from the white chin and throat.  The bird was close enough that the all black was relatively short and stubby, quite unlike a shearwater bill, and the rump showed just a small amount of white at the base of the uppertail coverts.</p><p><b>Analysis:</b><br/>Most seabirders dream about ever getting to see one of these babies let alone have one fly close enough up the wake to get nearly full frame photos.  Bill shape and underwing pattern effectively eliminate all shearwaters or anything else that I can think of, so we\'re left with the genus <i>Pterodroma</i>.  Six species of <i>Pterodroma</i> have been recorded in CA.  Great-winged Petrel has dark underwings and Murphy\'s Petrel has a relatively uniform plumage.  Mottled Petrel has a gray belly.  The more common :-) Cook\'s Petrel has a stronger gray and white pattern on the upperparts and a much cleaner underwing such as the individual I saw earlier in the trip.</p><p>Stejneger\'s Petrel requires a bit of discussion and I have no field experience with this bird.  Photos I\'ve found of this bird suggest plmage that is closer to Cook\'s with a darker cap.  That would seem to be eliminated by these photos.  So, we\'re left with DARK-RUMPED PETREL <i>Pterodroma phaeopygia/sandwichensis</i>.</p><p>While the California Bird Records Committee<sup>1</sup> does not differentiate between the Galapagos and Hawaiian Petrels for review purposes, the AOU checklist<sup>2</sup> recognizes Hawaiian and Galapagos Petrels as separate species so it\'s worthwhile attempting to identify this bird to species.  Additionall, Force, Webb and Howell<sup>3</sup> have published a recent paper suggesting that all records from Calfiornia to date are indeed <i>P. sandwichensis</i>.<p></p>  The key identifying field mark from that article is:</p><p style="padding-left: 10px"><i>...the blackish-brown cap is smaller (the dark extends less below the eye), and white from the neck sides cuts up behind the cap, forming a notch between the cap and the dark sides of the neck...</i></p><p>if you carefully look at the ventral photo of the bird, you can clearly see the aforementioned notch as well as the much reduced dark area on the neck.  Thus, we can confidently identify this individual as HAWAIIAN PETREL <i>Pterodroma sandwichensis</i>.</p><p><bold>Literature cited:</bold><br/>[1] Review List of the Western Field Ornithologists\' California Bird Records Committee, 14 August 2009, http://www.californiabirds.org/review.html.<br/>[2] American Ornithologists’ union. 2009. Fitieth supplement to the American Ornithologists’ union Checklist of North American Birds. The Auk July 2009, Vol. 126, No. 3, Pages 705–714.<br/>[3]Michael P. Force, Sophie W. Webb, and Steve N. G. Howell, Featured Photo: Identification at Sea of Hawaiian and Galapagos Petrels , Western Birds 38:242–248, 2007.</p>', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(16613524, '8.16.09cordellbank', '16613524', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3524.jpg', 600, 450, 'Hawaiian Petrel <i>Pterodroma sandwichensis</i>', 'Output/thumbnails/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3524.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'While I didn\'t get a photo of any of the Cook\'s Petrels that were seen on the day, this bird lingered at the rear of the boat around the slick and allowed these set of photos to be taken.<p><b>Description:</b><br/>An obvious seabird bearing a superficial resemablance to a shearwater.  However, the flight style was completely different; the bird rarely moved its wings and often banked dramatically upward so that the wings were almost vertical forming large sweeping arcs.  The undersiders were generally clean white; the underwing was fairly white with a dark trailing edge and the underside of the outer primaries.  The leading edge on the underwing was bold black, continuing into a prominent black "comma" on the underwing secondary coverts.  The undertail coverts appeared to be clean white and the tail tapered noticeable almost to a point</p><p>The upperparts were brownish-gray, with a fairly distinct "M" on the upperwing, more so than is shown in photos.  The cap was black, contrasting with the gray hood that extended well below the eye.  The forehead was white, contrasting strongly with the black bill and black cap and the cap and hood were cleanly separated from the white chin and throat.  The bird was close enough that the all black was relatively short and stubby, quite unlike a shearwater bill, and the rump showed just a small amount of white at the base of the uppertail coverts.</p><p><b>Analysis:</b><br/>Most seabirders dream about ever getting to see one of these babies let alone have one fly close enough up the wake to get nearly full frame photos.  Bill shape and underwing pattern effectively eliminate all shearwaters or anything else that I can think of, so we\'re left with the genus <i>Pterodroma</i>.  Six species of <i>Pterodroma</i> have been recorded in CA.  Great-winged Petrel has dark underwings and Murphy\'s Petrel has a relatively uniform plumage.  Mottled Petrel has a gray belly.  The more common :-) Cook\'s Petrel has a stronger gray and white pattern on the upperparts and a much cleaner underwing such as the individual I saw earlier in the trip.</p><p>Stejneger\'s Petrel requires a bit of discussion and I have no field experience with this bird.  Photos I\'ve found of this bird suggest plmage that is closer to Cook\'s with a darker cap.  That would seem to be eliminated by these photos.  So, we\'re left with DARK-RUMPED PETREL <i>Pterodroma phaeopygia/sandwichensis</i>.</p><p>While the California Bird Records Committee<sup>1</sup> does not differentiate between the Galapagos and Hawaiian Petrels for review purposes, the AOU checklist<sup>2</sup> recognizes Hawaiian and Galapagos Petrels as separate species so it\'s worthwhile attempting to identify this bird to species.  Additionall, Force, Webb and Howell<sup>3</sup> have published a recent paper suggesting that all records from Calfiornia to date are indeed <i>P. sandwichensis</i>.<p></p>  The key identifying field mark from that article is:</p><p style="padding-left: 10px"><i>...the blackish-brown cap is smaller (the dark extends less below the eye), and white from the neck sides cuts up behind the cap, forming a notch between the cap and the dark sides of the neck...</i></p><p>if you carefully look at the ventral photo of the bird, you can clearly see the aforementioned notch as well as the much reduced dark area on the neck.  Thus, we can confidently identify this individual as HAWAIIAN PETREL <i>Pterodroma sandwichensis</i>.</p><p><bold>Literature cited:</bold><br/>[1] Review List of the Western Field Ornithologists\' California Bird Records Committee, 14 August 2009, http://www.californiabirds.org/review.html.<br/>[2] American Ornithologists’ union. 2009. Fitieth supplement to the American Ornithologists’ union Checklist of North American Birds. The Auk July 2009, Vol. 126, No. 3, Pages 705–714.<br/>[3]Michael P. Force, Sophie W. Webb, and Steve N. G. Howell, Featured Photo: Identification at Sea of Hawaiian and Galapagos Petrels , Western Birds 38:242–248, 2007.</p>', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(16613526, '8.16.09cordellbank', '16613526', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3526.jpg', 600, 450, 'Hawaiian Petrel <i>Pterodroma sandwichensis</i>', 'Output/thumbnails/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3526.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'While I didn\'t get a photo of any of the Cook\'s Petrels that were seen on the day, this bird lingered at the rear of the boat around the slick and allowed these set of photos to be taken.<p><b>Description:</b><br/>An obvious seabird bearing a superficial resemablance to a shearwater.  However, the flight style was completely different; the bird rarely moved its wings and often banked dramatically upward so that the wings were almost vertical forming large sweeping arcs.  The undersiders were generally clean white; the underwing was fairly white with a dark trailing edge and the underside of the outer primaries.  The leading edge on the underwing was bold black, continuing into a prominent black "comma" on the underwing secondary coverts.  The undertail coverts appeared to be clean white and the tail tapered noticeable almost to a point</p><p>The upperparts were brownish-gray, with a fairly distinct "M" on the upperwing, more so than is shown in photos.  The cap was black, contrasting with the gray hood that extended well below the eye.  The forehead was white, contrasting strongly with the black bill and black cap and the cap and hood were cleanly separated from the white chin and throat.  The bird was close enough that the all black was relatively short and stubby, quite unlike a shearwater bill, and the rump showed just a small amount of white at the base of the uppertail coverts.</p><p><b>Analysis:</b><br/>Most seabirders dream about ever getting to see one of these babies let alone have one fly close enough up the wake to get nearly full frame photos.  Bill shape and underwing pattern effectively eliminate all shearwaters or anything else that I can think of, so we\'re left with the genus <i>Pterodroma</i>.  Six species of <i>Pterodroma</i> have been recorded in CA.  Great-winged Petrel has dark underwings and Murphy\'s Petrel has a relatively uniform plumage.  Mottled Petrel has a gray belly.  The more common :-) Cook\'s Petrel has a stronger gray and white pattern on the upperparts and a much cleaner underwing such as the individual I saw earlier in the trip.</p><p>Stejneger\'s Petrel requires a bit of discussion and I have no field experience with this bird.  Photos I\'ve found of this bird suggest plmage that is closer to Cook\'s with a darker cap.  That would seem to be eliminated by these photos.  So, we\'re left with DARK-RUMPED PETREL <i>Pterodroma phaeopygia/sandwichensis</i>.</p><p>While the California Bird Records Committee<sup>1</sup> does not differentiate between the Galapagos and Hawaiian Petrels for review purposes, the AOU checklist<sup>2</sup> recognizes Hawaiian and Galapagos Petrels as separate species so it\'s worthwhile attempting to identify this bird to species.  Additionall, Force, Webb and Howell<sup>3</sup> have published a recent paper suggesting that all records from Calfiornia to date are indeed <i>P. sandwichensis</i>.<p></p>  The key identifying field mark from that article is:</p><p style="padding-left: 10px"><i>...the blackish-brown cap is smaller (the dark extends less below the eye), and white from the neck sides cuts up behind the cap, forming a notch between the cap and the dark sides of the neck...</i></p><p>if you carefully look at the ventral photo of the bird, you can clearly see the aforementioned notch as well as the much reduced dark area on the neck.  Thus, we can confidently identify this individual as HAWAIIAN PETREL <i>Pterodroma sandwichensis</i>.</p><p><bold>Literature cited:</bold><br/>[1] Review List of the Western Field Ornithologists\' California Bird Records Committee, 14 August 2009, http://www.californiabirds.org/review.html.<br/>[2] American Ornithologists’ union. 2009. Fitieth supplement to the American Ornithologists’ union Checklist of North American Birds. The Auk July 2009, Vol. 126, No. 3, Pages 705–714.<br/>[3]Michael P. Force, Sophie W. Webb, and Steve N. G. Howell, Featured Photo: Identification at Sea of Hawaiian and Galapagos Petrels , Western Birds 38:242–248, 2007.</p>', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(17683597, '8.16.09cordellbank', '17683597', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1768 Fork-tailed Storm-Petrel Oceanodroma furcata IMG_3597.jpg', 600, 450, 'Fork-tailed Storm-Petrel <i>Oceanodroma furcata</i>', 'Output/thumbnails/1768 Fork-tailed Storm-Petrel Oceanodroma furcata IMG_3597.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'Attracted to the second slick that we laid.  This individual has just taken flight from the slick.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(17683618, '8.16.09cordellbank', '17683618', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1768 Fork-tailed Storm-Petrel Oceanodroma furcata IMG_3618.jpg', 600, 450, 'Fork-tailed Storm-Petrel <i>Oceanodroma furcata</i>', 'Output/thumbnails/1768 Fork-tailed Storm-Petrel Oceanodroma furcata IMG_3618.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'Another indivdual taking off from the slick.  Notice the tail shape and the prominent "M" on the upperwing.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(17683630, '8.16.09cordellbank', '17683630', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1768 Fork-tailed Storm-Petrel Oceanodroma furcata IMG_3630.jpg', 600, 450, 'Fork-tailed Storm-Petrel <i>Oceanodroma furcata</i>', 'Output/thumbnails/1768 Fork-tailed Storm-Petrel Oceanodroma furcata IMG_3630.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'Another individual taking flight.  Note the upperwing pattern and you can just make out the dark underwing coverts.  The orange sphere is a cheese ball, which was not eaten by any bird that we saw. :-)', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(17783537, '8.16.09cordellbank', '17783537', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1778 Ashy Storm-Petrel Oceanodroma homochroa IMG_3537.jpg', 600, 450, 'Ashy Storm-Petrel <i>Oceanodroma homochroa</i>', 'Output/thumbnails/1778 Ashy Storm-Petrel Oceanodroma homochroa IMG_3537.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'Note the much darker plumage of the Ashy Storm-Petrel, appearing nearly uniformly dark other than the the pale mark on the upperwing running diagonally from the carpal joint to the innermost secondaries.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(40523460, '8.16.09cordellbank', '40523460', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/4052 Sabine\'s Gull Xema sabini IMG_3460.jpg', 600, 450, 'Sabine\'s Gull <i>Xema sabini</i>', 'Output/thumbnails/4052 Sabine\'s Gull Xema sabini IMG_3460.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'Note the black/gray/white upperwing pattern is visible even thin this ventral view.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(42883443, '8.16.09cordellbank', '42883443', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/4288 Elegant Tern Thalasseus elegans IMG_3443.jpg', 600, 450, 'Common Tern <i>Sterna hirundo</i>', 'Output/thumbnails/4288 Elegant Tern Thalasseus elegans IMG_3443.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'I originally mis-identified this as an Elegant Tern. The full black cap, red bill with black tip, dark trailing edge with dark wedge in the primaries, relatively short tail with dark outermost rectrix clearly indicate alternate COMMON TERN.  Obviously I was focused more on seabirds than terns on this trip!  Thanks to Matt Sadowski for pointing out my (relatively obvious) mistake.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(43093495, '8.16.09cordellbank', '43093495', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/4309 Long-tailed Jaeger Stercorarius longicaudus IMG_3495.jpg', 600, 450, 'Long-tailed Jaeger <i>Stercorarius longicaudus</i> (juvenile)', 'Output/thumbnails/4309 Long-tailed Jaeger Stercorarius longicaudus IMG_3495.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'Nice photo of a light-morph juvenile.  Note the prominently barred, cold underwing coverts and the blunt-tipped central rectrices.  I also find it interesting that juveniles show a vestigial breast band but adults don\'t.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(43093580, '8.16.09cordellbank', '43093580', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/4309 Long-tailed Jaeger Stercorarius longicaudus IMG_3580.jpg', 600, 450, 'Long-tailed Jaeger <i>Stercorarius longicaudus</i> (adult)', 'Output/thumbnails/4309 Long-tailed Jaeger Stercorarius longicaudus IMG_3580.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'But it\'s hard to beat the splendor of an adult LONG-TAILED JAEGER with full streamers.  Notice the dark bar formed by the secondaries a surprisingly useful field mark.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', '')
		);
	} else if (gallery_id == 'panama08') {
		photos = new Array(new photo(7506, 'panama08', '7506', 'birds', 'Galleries/Panama08/Output/images/7 Great Tinamou Tinamus major IMG_7506.jpg', 600, 450, 'Great Tinamou <i>Tinamus major</i>', 'Output/thumbnails/7 Great Tinamou Tinamus major IMG_7506.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Found by Stephen on plantation road while us photo geeks were lagging the rest of the group', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7875, 'panama08', '7875', 'birds', 'Galleries/Panama08/Output/images/29 Gray-headed Chachalaca Ortalis cinereiceps IMG_7875.jpg', 600, 450, 'Gray-headed Chachalaca <i>Ortalis cinereiceps</i>', 'Output/thumbnails/29 Gray-headed Chachalaca Ortalis cinereiceps IMG_7875.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Perching in the late afternoon sun near the caba&ntilde;as', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7215, 'panama08', '7215', 'birds', 'Galleries/Panama08/Output/images/86 Magnificent Frigatebird Fregata magnificens IMG_7215.jpg', 600, 450, 'Magnificent Frigatebird <i>Fregata magnificens</i>', 'Output/thumbnails/86 Magnificent Frigatebird Fregata magnificens IMG_7215.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Near the Gatun Locks', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7277, 'panama08', '7277', 'birds', 'Galleries/Panama08/Output/images/98 Little Blue Heron Egretta caerulea IMG_7277.jpg', 600, 450, 'Little Blue Heron <i>Egretta caerulea</i>', 'Output/thumbnails/98 Little Blue Heron Egretta caerulea IMG_7277.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Achiote Road area', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7355, 'panama08', '7355', 'birds', 'Galleries/Panama08/Output/images/123 King Vulture Sarcoramphus papa IMG_7355.jpg', 600, 450, 'King Vulture <i>Sarcoramphus papa</i>', 'Output/thumbnails/123 King Vulture Sarcoramphus papa IMG_7355.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Crusing fairly low above Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7785, 'panama08', '7785', 'birds', 'Galleries/Panama08/Output/images/127 Hook-billed Kite Chondrohierax uncinatus (male) IMG_7785.jpg', 600, 450, 'Hook-billed Kite <i>Chondrohierax uncinatus</i> (male)', 'Output/thumbnails/127 Hook-billed Kite Chondrohierax uncinatus (male) IMG_7785.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Originally misidentied as a Gray Hawk, the photos rather conclusive point out the correct identity', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7292, 'panama08', '7292', 'birds', 'Galleries/Panama08/Output/images/128 Swallow-tailed Kite Elanoides forficatus IMG_7292.jpg', 600, 450, 'Swallow-tailed Kite <i>Elanoides forficatus</i>', 'Output/thumbnails/128 Swallow-tailed Kite Elanoides forficatus IMG_7292.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Achiote Road area', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7404, 'panama08', '7404', 'birds', 'Galleries/Panama08/Output/images/133 Double-toothed Kite Harpagus bidentatus IMG_7404.jpg', 600, 450, 'Double-toothed Kite <i>Harpagus bidentatus</i>', 'Output/thumbnails/133 Double-toothed Kite Harpagus bidentatus IMG_7404.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7242, 'panama08', '7242', 'birds', 'Galleries/Panama08/Output/images/147 White Hawk Leucopternis albicollis IMG_7242.jpg', 600, 450, 'White Hawk <i>Leucopternis albicollis</i>', 'Output/thumbnails/147 White Hawk Leucopternis albicollis IMG_7242.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Above Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7370, 'panama08', '7370', 'birds', 'Galleries/Panama08/Output/images/151 Savanna Hawk Buteogallus meridionalis IMG_7370.jpg', 600, 450, 'Savanna Hawk <i>Buteogallus meridionalis</i>', 'Output/thumbnails/151 Savanna Hawk Buteogallus meridionalis IMG_7370.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Near Gatun Locks surveying the large grassy fields immediately adjacent', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7647, 'panama08', '7647', 'birds', 'Galleries/Panama08/Output/images/155 Broad-winged Hawk Buteo platypterus IMG_7647.jpg', 600, 450, 'Broad-winged Hawk <i>Buteo platypterus</i>', 'Output/thumbnails/155 Broad-winged Hawk Buteo platypterus IMG_7647.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7903, 'panama08', '7903', 'birds', 'Galleries/Panama08/Output/images/155 Broad-winged Hawk Buteo platypterus IMG_7903.jpg', 600, 450, 'Broad-winged Hawk <i>Buteo platypterus</i>', 'Output/thumbnails/155 Broad-winged Hawk Buteo platypterus IMG_7903.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Spiraling up into the kettle in the next photo', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7906, 'panama08', '7906', 'birds', 'Galleries/Panama08/Output/images/155 Broad-winged Hawk Buteo platypterus IMG_7906.jpg', 600, 450, 'Broad-winged Hawk <i>Buteo platypterus</i>', 'Output/thumbnails/155 Broad-winged Hawk Buteo platypterus IMG_7906.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Enormous kettle almost entirely of Broad-winged Hawks with a few Black Vultures thrown in', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7063, 'panama08', '7063', 'birds', 'Galleries/Panama08/Output/images/156 Gray Hawk Buteo nitidus IMG_7063.jpg', 600, 450, 'Gray Hawk <i>Buteo nitidus</i>', 'Output/thumbnails/156 Gray Hawk Buteo nitidus IMG_7063.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Over Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7354, 'panama08', '7354', 'birds', 'Galleries/Panama08/Output/images/157 Short-tailed Hawk Buteo brachyurus (dark morph) IMG_7354.jpg', 600, 450, 'Short-tailed Hawk <i>Buteo brachyurus</i> (dark morph)', 'Output/thumbnails/157 Short-tailed Hawk Buteo brachyurus (dark morph) IMG_7354.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Originally identified as a dark morph Broad-winged Hawk, the pale window at the base of the primaries and the more or less evenly barred tail with the dark subterminal band only slightly wider than the rest of the barring clinch the ID', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7162, 'panama08', '7162', 'birds', 'Galleries/Panama08/Output/images/163 Harpy Eagle Harpia harpyja (captive) IMG_7162.jpg', 600, 450, 'Harpy Eagle <i>Harpia harpyja</i> (captive)', 'Output/thumbnails/163 Harpy Eagle Harpia harpyja (captive) IMG_7162.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Though we were buzzed twice by a hacked juvenile on Pipeline Road, I had to settle for views of the sad-faced captive in the zoo portion of the Summit Ponds Botanical Gardens', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7664, 'panama08', '7664', 'birds', 'Galleries/Panama08/Output/images/183 White-throated Crake Laterallus albigularis (adult and juvenile) IMG_7664.jpg', 600, 450, 'White-throated Crake <i>Laterallus albigularis</i> (adult and juvenile)', 'Output/thumbnails/183 White-throated Crake Laterallus albigularis (adult and juvenile) IMG_7664.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Nice find by Paul during the hottest part of the day!', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7537, 'panama08', '7537', 'birds', 'Galleries/Panama08/Output/images/201 Sunbittern Eurypyga helias IMG_7537.jpg', 600, 450, 'Sunbittern <i>Eurypyga helias</i>', 'Output/thumbnails/201 Sunbittern Eurypyga helias IMG_7537.jpg', 132, 99, 0, 'Panama \'08 Birds', 'My flash was malfunctioning and I finally got it to work after missing several better shots on Plantation Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7280, 'panama08', '7280', 'birds', 'Galleries/Panama08/Output/images/205 Southern Lapwing Vanellus chilensis IMG_7280.jpg', 600, 450, 'Southern Lapwing <i>Vanellus chilensis</i>', 'Output/thumbnails/205 Southern Lapwing Vanellus chilensis IMG_7280.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Achiote Road aread', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7644, 'panama08', '7644', 'birds', 'Galleries/Panama08/Output/images/220 Wattled Jacana Jacana jacana IMG_7644.jpg', 600, 450, 'Wattled Jacana <i>Jacana jacana</i>', 'Output/thumbnails/220 Wattled Jacana Jacana jacana IMG_7644.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Easy to find at Ammo Dump Ponds and elsewhere', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7712, 'panama08', '7712', 'birds', 'Galleries/Panama08/Output/images/220 Wattled Jacana Jacana jacana IMG_7712.jpg', 600, 450, 'Wattled Jacana <i>Jacana jacana</i>', 'Output/thumbnails/220 Wattled Jacana Jacana jacana IMG_7712.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Easy to find at Ammo Dump Ponds and elsewhere', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7709, 'panama08', '7709', 'birds', 'Galleries/Panama08/Output/images/290 Pale-vented Pigeon Patagioenas cayennensis IMG_7709.jpg', 600, 450, 'Pale-vented Pigeon <i>Patagioenas cayennensis</i>', 'Output/thumbnails/290 Pale-vented Pigeon Patagioenas cayennensis IMG_7709.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Also taken at Ammo Dump Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7705, 'panama08', '7705', 'birds', 'Galleries/Panama08/Output/images/303 Ruddy Ground-Dove Columbina talpacoti IMG_7705.jpg', 600, 450, 'Ruddy Ground-Dove <i>Columbina talpacoti</i>', 'Output/thumbnails/303 Ruddy Ground-Dove Columbina talpacoti IMG_7705.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Walking on the road at Ammo Dump Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6963, 'panama08', '6963', 'birds', 'Galleries/Panama08/Output/images/306 White-tipped Dove Leptotila verreauxi IMG_6963.jpg', 600, 450, 'White-tipped Dove <i>Leptotila verreauxi</i>', 'Output/thumbnails/306 White-tipped Dove Leptotila verreauxi IMG_6963.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Percehd alongside the road at Ammo Dump Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7668, 'panama08', '7668', 'birds', 'Galleries/Panama08/Output/images/330 Orange-chinned Parakeet Brotogeris jugularis IMG_7668.jpg', 600, 450, 'Orange-chinned Parakeet <i>Brotogeris jugularis</i>', 'Output/thumbnails/330 Orange-chinned Parakeet Brotogeris jugularis IMG_7668.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Nice looks at Ammo Dump Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7673, 'panama08', '7673', 'birds', 'Galleries/Panama08/Output/images/330 Orange-chinned Parakeet Brotogeris jugularis IMG_7673.jpg', 600, 450, 'Orange-chinned Parakeet <i>Brotogeris jugularis</i>', 'Output/thumbnails/330 Orange-chinned Parakeet Brotogeris jugularis IMG_7673.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Nice looks at Ammo Dump Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7758, 'panama08', '7758', 'birds', 'Galleries/Panama08/Output/images/337 Red-lored [Amazon] Parrot Amazona autumnalis IMG_7758.jpg', 600, 450, 'Red-lored [Amazon] Parrot <i>Amazona autumnalis</i>', 'Output/thumbnails/337 Red-lored [Amazon] Parrot Amazona autumnalis IMG_7758.jpg', 132, 99, 0, 'Panama \'08 Birds', 'From the observation tower on Pipeline Road.  Worth the entry fee in my opinion.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7030, 'panama08', '7030', 'birds', 'Galleries/Panama08/Output/images/343 Squirrel Cuckoo Piaya cayana IMG_7030.jpg', 600, 450, 'Squirrel Cuckoo <i>Piaya cayana</i>', 'Output/thumbnails/343 Squirrel Cuckoo Piaya cayana IMG_7030.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Old Gamboa Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7854, 'panama08', '7854', 'birds', 'Galleries/Panama08/Output/images/343 Squirrel Cuckoo Piaya cayana IMG_7854.jpg', 600, 450, 'Squirrel Cuckoo <i>Piaya cayana</i>', 'Output/thumbnails/343 Squirrel Cuckoo Piaya cayana IMG_7854.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Gamboa City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7147, 'panama08', '7147', 'birds', 'Galleries/Panama08/Output/images/352 Greater Ani Crotophaga major IMG_7147.jpg', 600, 450, 'Greater Ani <i>Crotophaga major</i>', 'Output/thumbnails/352 Greater Ani Crotophaga major IMG_7147.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Summit Ponds Botanical Gardens.  Very cooperative.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6936, 'panama08', '6936', 'birds', 'Galleries/Panama08/Output/images/353 Smooth-billed Ani Crotophaga ani IMG_6936.jpg', 600, 450, 'Smooth-billed Ani <i>Crotophaga ani</i>', 'Output/thumbnails/353 Smooth-billed Ani Crotophaga ani IMG_6936.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Ammo Dump Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7497, 'panama08', '7497', 'birds', 'Galleries/Panama08/Output/images/376 Common Pauraque Nyctidromus albicollis IMG_7497.jpg', 600, 450, 'Common Pauraque <i>Nyctidromus albicollis</i>', 'Output/thumbnails/376 Common Pauraque Nyctidromus albicollis IMG_7497.jpg', 132, 99, 0, 'Panama \'08 Birds', 'En route to a desultory evening of owling at the entrance to Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7415, 'panama08', '7415', 'birds', 'Galleries/Panama08/Output/images/416 White-necked Jacobin Florisuga mellivora (female) IMG_7415.jpg', 600, 450, 'White-necked Jacobin <i>Florisuga mellivora</i> (female)', 'Output/thumbnails/416 White-necked Jacobin Florisuga mellivora (female) IMG_7415.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Near a feeder on Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7442, 'panama08', '7442', 'birds', 'Galleries/Panama08/Output/images/416 White-necked Jacobin Florisuga mellivora (male) IMG_7442.jpg', 600, 450, 'White-necked Jacobin <i>Florisuga mellivora</i> (male)', 'Output/thumbnails/416 White-necked Jacobin Florisuga mellivora (male) IMG_7442.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Showing off near a feeder on Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7494, 'panama08', '7494', 'birds', 'Galleries/Panama08/Output/images/431 Violet-bellied Hummingbird Damophila julie (male) IMG_7494.jpg', 600, 450, 'Violet-bellied Hummingbird <i>Damophila julie</i> (male)', 'Output/thumbnails/431 Violet-bellied Hummingbird Damophila julie (male) IMG_7494.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Gamboa City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7419, 'panama08', '7419', 'birds', 'Galleries/Panama08/Output/images/437 Blue-chested Hummingbird Amazilia amabilis (male) IMG_7419.jpg', 600, 450, 'Blue-chested Hummingbird <i>Amazilia amabilis</i> (male)', 'Output/thumbnails/437 Blue-chested Hummingbird Amazilia amabilis (male) IMG_7419.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Near a feeder on Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7226, 'panama08', '7226', 'birds', 'Galleries/Panama08/Output/images/463 White-tailed Trogon Trogon viridis (male) IMG_7226.jpg', 600, 450, 'White-tailed Trogon <i>Trogon viridis</i> (male)', 'Output/thumbnails/463 White-tailed Trogon Trogon viridis (male) IMG_7226.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7757, 'panama08', '7757', 'birds', 'Galleries/Panama08/Output/images/463 White-tailed Trogon Trogon viridis IMG_7757.jpg', 600, 450, 'White-tailed Trogon <i>Trogon viridis</i>', 'Output/thumbnails/463 White-tailed Trogon Trogon viridis IMG_7757.jpg', 132, 99, 0, 'Panama \'08 Birds', 'From the canopy tower on Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7349, 'panama08', '7349', 'birds', 'Galleries/Panama08/Output/images/465 Violaceous Trogon Trogon violaceus (female) IMG_7349.jpg', 600, 450, 'Violaceous Trogon <i>Trogon violaceus</i> (female)', 'Output/thumbnails/465 Violaceous Trogon Trogon violaceus (female) IMG_7349.jpg', 132, 99, 0, 'Panama \'08 Birds', 'From the observation platforn on Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6865, 'panama08', '6865', 'birds', 'Galleries/Panama08/Output/images/468 Black-throated Trogon Trogon rufus (male) IMG_6865.jpg', 600, 450, 'Black-throated Trogon <i>Trogon rufus</i> (male)', 'Output/thumbnails/468 Black-throated Trogon Trogon rufus (male) IMG_6865.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7048, 'panama08', '7048', 'birds', 'Galleries/Panama08/Output/images/469 Black-tailed Trogon Trogon melanurus IMG_7048.jpg', 600, 450, 'Black-tailed Trogon <i>Trogon melanurus</i>', 'Output/thumbnails/469 Black-tailed Trogon Trogon melanurus IMG_7048.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6716, 'panama08', '6716', 'birds', 'Galleries/Panama08/Output/images/470 Slaty-tailed Trogon Trogon massena IMG_6716.jpg', 600, 450, 'Slaty-tailed Trogon <i>Trogon massena</i>', 'Output/thumbnails/470 Slaty-tailed Trogon Trogon massena IMG_6716.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6793, 'panama08', '6793', 'birds', 'Galleries/Panama08/Output/images/470 Slaty-tailed Trogon Trogon massena IMG_6793.jpg', 600, 450, 'Slaty-tailed Trogon <i>Trogon massena</i>', 'Output/thumbnails/470 Slaty-tailed Trogon Trogon massena IMG_6793.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7211, 'panama08', '7211', 'birds', 'Galleries/Panama08/Output/images/476 Blue-crowned Motmot Momotus momota IMG_7211.jpg', 600, 450, 'Blue-crowned Motmot <i>Momotus momota</i>', 'Output/thumbnails/476 Blue-crowned Motmot Momotus momota IMG_7211.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Gamboa City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7202, 'panama08', '7202', 'birds', 'Galleries/Panama08/Output/images/478 Broad-billed Motmot Electron platyrhynchum IMG_7202.jpg', 600, 450, 'Broad-billed Motmot <i>Electron platyrhynchum</i>', 'Output/thumbnails/478 Broad-billed Motmot Electron platyrhynchum IMG_7202.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Plantation Road.  One of the most poorly illustrated birds in the Pnamanian Guide.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7456, 'panama08', '7456', 'birds', 'Galleries/Panama08/Output/images/478 Broad-billed Motmot Electron platyrhynchum IMG_7456.jpg', 600, 450, 'Broad-billed Motmot <i>Electron platyrhynchum</i>', 'Output/thumbnails/478 Broad-billed Motmot Electron platyrhynchum IMG_7456.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Summit Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7190, 'panama08', '7190', 'birds', 'Galleries/Panama08/Output/images/482 Amazon Kingfisher Chloroceryle amazona IMG_7190.jpg', 600, 450, 'Amazon Kingfisher <i>Chloroceryle amazona</i>', 'Output/thumbnails/482 Amazon Kingfisher Chloroceryle amazona IMG_7190.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Summit Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7287, 'panama08', '7287', 'birds', 'Galleries/Panama08/Output/images/483 Green Kingfisher Chloroceryle americana IMG_7287.jpg', 600, 450, 'Green Kingfisher <i>Chloroceryle americana</i>', 'Output/thumbnails/483 Green Kingfisher Chloroceryle americana IMG_7287.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Achiote Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6871, 'panama08', '6871', 'birds', 'Galleries/Panama08/Output/images/489 Black-breasted Puffbird Notharchus pectoralis IMG_6871.jpg', 600, 450, 'Black-breasted Puffbird <i>Notharchus pectoralis</i>', 'Output/thumbnails/489 Black-breasted Puffbird Notharchus pectoralis IMG_6871.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7635, 'panama08', '7635', 'birds', 'Galleries/Panama08/Output/images/491 White-whiskered Puffbird Malacoptila panamensis IMG_7635.jpg', 600, 450, 'White-whiskered Puffbird <i>Malacoptila panamensis</i>', 'Output/thumbnails/491 White-whiskered Puffbird Malacoptila panamensis IMG_7635.jpg', 132, 99, 0, 'Panama \'08 Birds', 'At the ant swarm on Plantation Road.  Absolutely uninterested in us!', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6855, 'panama08', '6855', 'birds', 'Galleries/Panama08/Output/images/505 Collared Aracari Pteroglossus torquatus IMG_6855.jpg', 600, 450, 'Collared Aracari <i>Pteroglossus torquatus</i>', 'Output/thumbnails/505 Collared Aracari Pteroglossus torquatus IMG_6855.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7730, 'panama08', '7730', 'birds', 'Galleries/Panama08/Output/images/505 Collared Aracari Pteroglossus torquatus IMG_7730.jpg', 600, 450, 'Collared Aracari <i>Pteroglossus torquatus</i>', 'Output/thumbnails/505 Collared Aracari Pteroglossus torquatus IMG_7730.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7760, 'panama08', '7760', 'birds', 'Galleries/Panama08/Output/images/508 Keel-billed Toucan Ramphastos sulfuratus IMG_7760.jpg', 600, 450, 'Keel-billed Toucan <i>Ramphastos sulfuratus</i>', 'Output/thumbnails/508 Keel-billed Toucan Ramphastos sulfuratus IMG_7760.jpg', 132, 99, 0, 'Panama \'08 Birds', 'From the observation tower on Pipeline Road.  Flew into the group in the next picture.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7768, 'panama08', '7768', 'birds', 'Galleries/Panama08/Output/images/508 Keel-billed Toucan Ramphastos sulfuratus and 509 Chestnut-mandibled Toucan Ramphastos swainsonii IMG_7768.jpg', 600, 450, 'Keel-billed Toucan <i>Ramphastos sulfuratus</i> and Chestnut-mandibled Toucan <i>Ramphastos swainsonii</i>', 'Output/thumbnails/508 Keel-billed Toucan Ramphastos sulfuratus and 509 Chestnut-mandibled Toucan Ramphastos swainsonii IMG_7768.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Observation tower on Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7090, 'panama08', '7090', 'birds', 'Galleries/Panama08/Output/images/516 Red-crowned Woodpecker Melanerpes rubricapillus IMG_7090.jpg', 600, 450, 'Red-crowned Woodpecker <i>Melanerpes rubricapillus</i>', 'Output/thumbnails/516 Red-crowned Woodpecker Melanerpes rubricapillus IMG_7090.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Summit Ponds Botanical Gardens', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7552, 'panama08', '7552', 'birds', 'Galleries/Panama08/Output/images/526 Cinnamon Woodpecker Celeus loricatus IMG_7552.jpg', 600, 450, 'Cinnamon Woodpecker <i>Celeus loricatus</i>', 'Output/thumbnails/526 Cinnamon Woodpecker Celeus loricatus IMG_7552.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Along Plantation Road.  Nice!', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7238, 'panama08', '7238', 'birds', 'Galleries/Panama08/Output/images/530 Crimson-crested Woodpecker Campephilus melanoleucos IMG_7238.jpg', 600, 450, 'Crimson-crested Woodpecker <i>Campephilus melanoleucos</i>', 'Output/thumbnails/530 Crimson-crested Woodpecker Campephilus melanoleucos IMG_7238.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Working a snag in the old growth off of Achiote Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7231, 'panama08', '7231', 'birds', 'Galleries/Panama08/Output/images/550 Plain Xenops Xenops minutus IMG_7231.jpg', 600, 450, 'Plain Xenops <i>Xenops minutus</i>', 'Output/thumbnails/550 Plain Xenops Xenops minutus IMG_7231.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Rather common almost everywhere on Pipeline Road but hard to photograph', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7584, 'panama08', '7584', 'birds', 'Galleries/Panama08/Output/images/557 Plain-brown Woodcreeper Dendrocincla fuliginosa IMG_7584.jpg', 600, 450, 'Plain-brown Woodcreeper <i>Dendrocincla fuliginosa</i>', 'Output/thumbnails/557 Plain-brown Woodcreeper Dendrocincla fuliginosa IMG_7584.jpg', 132, 99, 0, 'Panama \'08 Birds', 'At the ant swarm on Plantation Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7619, 'panama08', '7619', 'birds', 'Galleries/Panama08/Output/images/557 Plain-brown Woodcreeper Dendrocincla fuliginosa IMG_7619.jpg', 600, 450, 'Plain-brown Woodcreeper <i>Dendrocincla fuliginosa</i>', 'Output/thumbnails/557 Plain-brown Woodcreeper Dendrocincla fuliginosa IMG_7619.jpg', 132, 99, 0, 'Panama \'08 Birds', 'At the ant swarm on Plantation Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7617, 'panama08', '7617', 'birds', 'Galleries/Panama08/Output/images/564 Northern Barred-Woodcreeper Dendrocolaptes sanctithomae IMG_7617.jpg', 600, 450, 'Northern Barred-Woodcreeper <i>Dendrocolaptes sanctithomae</i>', 'Output/thumbnails/564 Northern Barred-Woodcreeper Dendrocolaptes sanctithomae IMG_7617.jpg', 132, 99, 0, 'Panama \'08 Birds', 'At the ant swarm on Plantation Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7885, 'panama08', '7885', 'birds', 'Galleries/Panama08/Output/images/577 Barred Antshrike Thamnophilus doliatus IMG_7885.jpg', 600, 450, 'Barred Antshrike <i>Thamnophilus doliatus</i>', 'Output/thumbnails/577 Barred Antshrike Thamnophilus doliatus IMG_7885.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Hanging out in the tangles in Gamboa City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7388, 'panama08', '7388', 'birds', 'Galleries/Panama08/Output/images/580 Western Slaty-Antshrike Thamnophilus atrinucha (female) IMG_7388.jpg', 600, 450, 'Western Slaty-Antshrike <i>Thamnophilus atrinucha</i> (female)', 'Output/thumbnails/580 Western Slaty-Antshrike Thamnophilus atrinucha (female) IMG_7388.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6727, 'panama08', '6727', 'birds', 'Galleries/Panama08/Output/images/580 Western Slaty-Antshrike Thamnophilus atrinucha (male) IMG_6727.jpg', 600, 450, 'Western Slaty-Antshrike <i>Thamnophilus atrinucha</i> (male)', 'Output/thumbnails/580 Western Slaty-Antshrike Thamnophilus atrinucha (male) IMG_6727.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7334, 'panama08', '7334', 'birds', 'Galleries/Panama08/Output/images/587 Checker-throated Antwren Myrmotherula fulviventris (male) IMG_7334.jpg', 600, 450, 'Checker-throated Antwren <i>Myrmotherula fulviventris</i> (male)', 'Output/thumbnails/587 Checker-throated Antwren Myrmotherula fulviventris (male) IMG_7334.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Another bird that was hard to photograph, this one was in a mixed flock feeding on arthropods in dead leaf clusters', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7309, 'panama08', '7309', 'birds', 'Galleries/Panama08/Output/images/591 Dot-winged Antwren Microrhopias quixensis (female) IMG_7309.jpg', 600, 450, 'Dot-winged Antwren <i>Microrhopias quixensis</i> (female)', 'Output/thumbnails/591 Dot-winged Antwren Microrhopias quixensis (female) IMG_7309.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Easy to see in the Canal Zone,  this one was in a mixed flock feeding on arthropods in dead leaf clusters', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7304, 'panama08', '7304', 'birds', 'Galleries/Panama08/Output/images/591 Dot-winged Antwren Microrhopias quixensis (male) IMG_7304.jpg', 600, 450, 'Dot-winged Antwren <i>Microrhopias quixensis</i> (male)', 'Output/thumbnails/591 Dot-winged Antwren Microrhopias quixensis (male) IMG_7304.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Likely the mate of the previous bird, obviously enjoying his lunch!', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6820, 'panama08', '6820', 'birds', 'Galleries/Panama08/Output/images/594 Dusky Antbird Cercomacra tyrannina (male) IMG_6820.jpg', 600, 450, 'Dusky Antbird <i>Cercomacra tyrannina</i> (male)', 'Output/thumbnails/594 Dusky Antbird Cercomacra tyrannina (male) IMG_6820.jpg', 132, 99, 0, 'Panama \'08 Birds', 'This bird remained motionless for easily five minutes while we were falling over ourselves trying to photograph it.  Amazing!', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7795, 'panama08', '7795', 'birds', 'Galleries/Panama08/Output/images/598 Chestnut-backed Antbird Myrmeciza exsul IMG_7795.jpg', 600, 450, 'Chestnut-backed Antbird <i>Myrmeciza exsul</i>', 'Output/thumbnails/598 Chestnut-backed Antbird Myrmeciza exsul IMG_7795.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Near the observation tower on Pipeline Road.  What a poser!', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7615, 'panama08', '7615', 'birds', 'Galleries/Panama08/Output/images/601 Spotted Antbird Hylophylax naevioides (female) IMG_7615.jpg', 600, 450, 'Spotted Antbird <i>Hylophylax naevioides</i> (female)', 'Output/thumbnails/601 Spotted Antbird Hylophylax naevioides (female) IMG_7615.jpg', 132, 99, 0, 'Panama \'08 Birds', 'At the ant swarm on Plantation Road.  Beautiful!', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7392, 'panama08', '7392', 'birds', 'Galleries/Panama08/Output/images/601 Spotted Antbird Hylophylax naevioides (male) IMG_7392.jpg', 600, 450, 'Spotted Antbird <i>Hylophylax naevioides</i> (male)', 'Output/thumbnails/601 Spotted Antbird Hylophylax naevioides (male) IMG_7392.jpg', 132, 99, 0, 'Panama \'08 Birds', 'I have other fair photos of the male when this one popped out in plain view and stood there for a minute or two.  How good is this?!', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7632, 'panama08', '7632', 'birds', 'Galleries/Panama08/Output/images/603 Bicolored Antbird Gymnopithys leucaspis IMG_7632.jpg', 600, 450, 'Bicolored Antbird <i>Gymnopithys leucaspis</i>', 'Output/thumbnails/603 Bicolored Antbird Gymnopithys leucaspis IMG_7632.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Dirt birds at the ant swarm on Plantation Road!', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6743, 'panama08', '6743', 'birds', 'Galleries/Panama08/Output/images/628 Yellow-bellied Elaenia Elaenia flavogaster IMG_6743.jpg', 600, 450, 'Yellow-bellied Elaenia <i>Elaenia flavogaster</i>', 'Output/thumbnails/628 Yellow-bellied Elaenia Elaenia flavogaster IMG_6743.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Behind the nursery at Metropolitan Park in Panama City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7024, 'panama08', '7024', 'birds', 'Galleries/Panama08/Output/images/629 Lesser Elaenia Elaenia chiriquensis IMG_7024.jpg', 600, 450, 'Lesser Elaenia <i>Elaenia chiriquensis</i>', 'Output/thumbnails/629 Lesser Elaenia Elaenia chiriquensis IMG_7024.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Old Gamboa Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7814, 'panama08', '7814', 'birds', 'Galleries/Panama08/Output/images/643 Black-capped Pygmy-Tyrant Myiornis atricapillus (juvenile) IMG_7814.jpg', 600, 450, 'Black-capped Pygmy-Tyrant <i>Myiornis atricapillus</i> (juvenile)', 'Output/thumbnails/643 Black-capped Pygmy-Tyrant Myiornis atricapillus (juvenile) IMG_7814.jpg', 132, 99, 0, 'Panama \'08 Birds', 'How cute is this?  Just sitting almost on the ground waiting for it\'s parent to return.  We got photos and left immediately.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7467, 'panama08', '7467', 'birds', 'Galleries/Panama08/Output/images/643 Black-capped Pygmy-Tyrant Myiornis atricapillus IMG_7467.jpg', 600, 450, 'Black-capped Pygmy-Tyrant <i>Myiornis atricapillus</i>', 'Output/thumbnails/643 Black-capped Pygmy-Tyrant Myiornis atricapillus IMG_7467.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Dad or mom for the bird in the previous photo', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7010, 'panama08', '7010', 'birds', 'Galleries/Panama08/Output/images/649 Common Tody-Flycatcher Todirostrum cinereum IMG_7010.jpg', 600, 450, 'Common Tody-Flycatcher <i>Todirostrum cinereum</i>', 'Output/thumbnails/649 Common Tody-Flycatcher Todirostrum cinereum IMG_7010.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Old Gamboa Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7722, 'panama08', '7722', 'birds', 'Galleries/Panama08/Output/images/649 Common Tody-Flycatcher Todirostrum cinereum IMG_7722.jpg', 600, 450, 'Common Tody-Flycatcher <i>Todirostrum cinereum</i>', 'Output/thumbnails/649 Common Tody-Flycatcher Todirostrum cinereum IMG_7722.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Gamboa City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7206, 'panama08', '7206', 'birds', 'Galleries/Panama08/Output/images/652 Eye-ringed Flatbill Rhynchocyclus brevirostris IMG_7206.jpg', 600, 450, 'Eye-ringed Flatbill <i>Rhynchocyclus brevirostris</i>', 'Output/thumbnails/652 Eye-ringed Flatbill Rhynchocyclus brevirostris IMG_7206.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Very conspicuous eye ring and lacked streaking of the very similar Olivaceous Flatbill, shown in the next photo', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7387, 'panama08', '7387', 'birds', 'Galleries/Panama08/Output/images/653 Olivaceous Flatbill Rhynchocyclus olivaceus IMG_7387.jpg', 600, 450, 'Olivaceous Flatbill <i>Rhynchocyclus olivaceus</i>', 'Output/thumbnails/653 Olivaceous Flatbill Rhynchocyclus olivaceus IMG_7387.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Eye ring is less pronounced but the streaking clinches the ID', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7133, 'panama08', '7133', 'birds', 'Galleries/Panama08/Output/images/673 Tropical Pewee Contopus cinereus IMG_7133.jpg', 600, 450, 'Tropical Pewee <i>Contopus cinereus</i>', 'Output/thumbnails/673 Tropical Pewee Contopus cinereus IMG_7133.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Silent.  Short primary projection, yellowish wash on the belly support the ID.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7141, 'panama08', '7141', 'birds', 'Galleries/Panama08/Output/images/673 Tropical Pewee Contopus cinereus IMG_7141.jpg', 600, 450, 'Tropical Pewee <i>Contopus cinereus</i>', 'Output/thumbnails/673 Tropical Pewee Contopus cinereus IMG_7141.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Same bird as the previous photo', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6880, 'panama08', '6880', 'birds', 'Galleries/Panama08/Output/images/690 Rufous Mourner Rhytipterna holerythra or 716 Rufous Piha Lipaugus unirufus IMG_6880.jpg', 600, 450, 'Rufous Mourner <i>Rhytipterna holerythra</i>', 'Output/thumbnails/690 Rufous Mourner Rhytipterna holerythra or 716 Rufous Piha Lipaugus unirufus IMG_6880.jpg', 132, 99, 0, 'Panama \'08 Birds', 'This was a very confusing bird.  The original thought was that the bird was a Rufous Piha, but Rufous Piha should show (at close range) pale orbital ring, bushy lores, paler throat relative to rufous-brown breast.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7045, 'panama08', '7045', 'birds', 'Galleries/Panama08/Output/images/692 Panama Flycatcher Myiarchus panamensis IMG_7045.jpg', 600, 450, 'Panama Flycatcher <i>Myiarchus panamensis</i>', 'Output/thumbnails/692 Panama Flycatcher Myiarchus panamensis IMG_7045.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Pipeline Road.  Not a great photo, but the bird is clearly not a Great-crested Flycatcher and the subspecies of Dusky Flycatcher found in Panama has a very dark head, much darked than this bird.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7150, 'panama08', '7150', 'birds', 'Galleries/Panama08/Output/images/695 Great Kiskadee Pitangus sulphuratus IMG_7150.jpg', 600, 450, 'Great Kiskadee <i>Pitangus sulphuratus</i>', 'Output/thumbnails/695 Great Kiskadee Pitangus sulphuratus IMG_7150.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Bill shape is easiest way to separate from Boat-billed Flycatcher', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7639, 'panama08', '7639', 'birds', 'Galleries/Panama08/Output/images/697 Rusty-margined Flycatcher Myiozetetes cayanensis IMG_7639.jpg', 600, 450, 'Rusty-margined Flycatcher <i>Myiozetetes cayanensis</i>', 'Output/thumbnails/697 Rusty-margined Flycatcher Myiozetetes cayanensis IMG_7639.jpg', 132, 99, 0, 'Panama \'08 Birds', 'The rusty margins don\'t show well in this photo, but I remember taking the photo and identied the bird prior to taking it.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7640, 'panama08', '7640', 'birds', 'Galleries/Panama08/Output/images/698 Social Flycatcher Myiozetetes similis IMG_7640.jpg', 600, 450, 'Social Flycatcher <i>Myiozetetes similis</i>', 'Output/thumbnails/698 Social Flycatcher Myiozetetes similis IMG_7640.jpg', 132, 99, 0, 'Panama \'08 Birds', 'A nice contrast with the previous photo.  Note the edging to the remiges.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7159, 'panama08', '7159', 'birds', 'Galleries/Panama08/Output/images/703 Streaked Flycatcher Myiodynastes maculatus IMG_7159.jpg', 600, 450, 'Streaked Flycatcher <i>Myiodynastes maculatus</i>', 'Output/thumbnails/703 Streaked Flycatcher Myiodynastes maculatus IMG_7159.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Crack-a-lacking photo of this guy at the Botanical Gardens', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7870, 'panama08', '7870', 'birds', 'Galleries/Panama08/Output/images/704 Sulphur-bellied Flycatcher Myiodynastes luteiventris IMG_7870.jpg', 600, 450, 'Sulphur-bellied Flycatcher <i>Myiodynastes luteiventris</i>', 'Output/thumbnails/704 Sulphur-bellied Flycatcher Myiodynastes luteiventris IMG_7870.jpg', 132, 99, 0, 'Panama \'08 Birds', 'A nice contrast with the preceding photo, this guy was photographed in a garden in Gamboa City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7665, 'panama08', '7665', 'birds', 'Galleries/Panama08/Output/images/705 Piratic Flycatcher Legatus leucophaius IMG_7665.jpg', 600, 450, 'Piratic Flycatcher <i>Legatus leucophaius</i>', 'Output/thumbnails/705 Piratic Flycatcher Legatus leucophaius IMG_7665.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Amazingly hard to photograph given how common it is', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7651, 'panama08', '7651', 'birds', 'Galleries/Panama08/Output/images/708 Eastern Kingbird Tyrannus tyrannus IMG_7651.jpg', 600, 450, 'Eastern Kingbird <i>Tyrannus tyrannus</i>', 'Output/thumbnails/708 Eastern Kingbird Tyrannus tyrannus IMG_7651.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Wait a minute, aren\'t you supposed to heading north???', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7699, 'panama08', '7699', 'birds', 'Galleries/Panama08/Output/images/711 Fork-tailed Flycatcher Tyrannus savana IMG_7699.jpg', 600, 450, 'Fork-tailed Flycatcher <i>Tyrannus savana</i>', 'Output/thumbnails/711 Fork-tailed Flycatcher Tyrannus savana IMG_7699.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Always a pleasure to see these guys', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7440, 'panama08', '7440', 'birds', 'Galleries/Panama08/Output/images/720 Cinnamon Becard Pachyramphus cinnamomeus IMG_7440.jpg', 600, 450, 'Cinnamon Becard <i>Pachyramphus cinnamomeus</i>', 'Output/thumbnails/720 Cinnamon Becard Pachyramphus cinnamomeus IMG_7440.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Likely breeding near the visitor center on Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7446, 'panama08', '7446', 'birds', 'Galleries/Panama08/Output/images/725 Masked Tityra Tityra semifasciata (female or juvenile) IMG_7446.jpg', 600, 450, 'Masked Tityra <i>Tityra semifasciata</i> (female or juvenile)', 'Output/thumbnails/725 Masked Tityra Tityra semifasciata (female or juvenile) IMG_7446.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Unclear what plumage this bird is in', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7896, 'panama08', '7896', 'birds', 'Galleries/Panama08/Output/images/725 Masked Tityra Tityra semifasciata IMG_7896.jpg', 600, 450, 'Masked Tityra <i>Tityra semifasciata</i>', 'Output/thumbnails/725 Masked Tityra Tityra semifasciata IMG_7896.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Adult posing nicely on Old Gamboa Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7216, 'panama08', '7216', 'birds', 'Galleries/Panama08/Output/images/730 Blue Cotinga Cotinga nattererii IMG_7216.jpg', 600, 450, 'Blue Cotinga <i>Cotinga nattererii</i>', 'Output/thumbnails/730 Blue Cotinga Cotinga nattererii IMG_7216.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Lousy photo of a great bird. Stephen has better.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6787, 'panama08', '6787', 'birds', 'Galleries/Panama08/Output/images/734 Purple-throated Fruitcrow Querula purpurata IMG_6787.jpg', 600, 450, 'Purple-throated Fruitcrow <i>Querula purpurata</i>', 'Output/thumbnails/734 Purple-throated Fruitcrow Querula purpurata IMG_6787.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Nice of them to come in along Pipeline Road, but bright contrasty light made this a Photoshop effort', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7749, 'panama08', '7749', 'birds', 'Galleries/Panama08/Output/images/765 Green Shrike-Vireo Vireolanius pulchellus IMG_7749.jpg', 600, 450, 'Green Shrike-Vireo <i>Vireolanius pulchellus</i>', 'Output/thumbnails/765 Green Shrike-Vireo Vireolanius pulchellus IMG_7749.jpg', 132, 99, 0, 'Panama \'08 Birds', 'I still don\'t believe that I have a photo of this bird.  Nope, didn\'t happen.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7367, 'panama08', '7367', 'birds', 'Galleries/Panama08/Output/images/769 Black-chested Jay Cyanocorax affinis IMG_7367.jpg', 600, 450, 'Black-chested Jay <i>Cyanocorax affinis</i>', 'Output/thumbnails/769 Black-chested Jay Cyanocorax affinis IMG_7367.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Carrying nesting material.  Nice.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7655, 'panama08', '7655', 'birds', 'Galleries/Panama08/Output/images/776 Gray-breasted Martin Progne chalybea IMG_7655.jpg', 600, 450, 'Gray-breasted Martin <i>Progne chalybea</i>', 'Output/thumbnails/776 Gray-breasted Martin Progne chalybea IMG_7655.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Scruffy plumage for these guys at the Ammo Dump Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7674, 'panama08', '7674', 'birds', 'Galleries/Panama08/Output/images/776 Gray-breasted Martin Progne chalybea and 780 Mangrove Swallow Tachycineta albilinea IMG_7674.jpg', 600, 450, 'Gray-breasted Martin <i>Progne chalybea</i> and Mangrove Swallow <i>Tachycineta albilinea</i>', 'Output/thumbnails/776 Gray-breasted Martin Progne chalybea and 780 Mangrove Swallow Tachycineta albilinea IMG_7674.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Just in case there\'s any doubt that these are martins...', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6978, 'panama08', '6978', 'birds', 'Galleries/Panama08/Output/images/838 Clay-colored Robin [Thrush] Turdus grayi IMG_6978.jpg', 600, 450, 'Clay-colored Robin [Thrush] <i>Turdus grayi</i>', 'Output/thumbnails/838 Clay-colored Robin [Thrush] Turdus grayi IMG_6978.jpg', 132, 99, 0, 'Panama \'08 Birds', 'The only <i>Turdus</i> thrush in the Canal Zone and just as annoying as our <i>Turdus migratorius</i>', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7694, 'panama08', '7694', 'birds', 'Galleries/Panama08/Output/images/842 Tropical Mockingbird Mimus gilvus IMG_7694.jpg', 600, 450, 'Tropical Mockingbird <i>Mimus gilvus</i>', 'Output/thumbnails/842 Tropical Mockingbird Mimus gilvus IMG_7694.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Fair photo of a very common bird', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7641, 'panama08', '7641', 'birds', 'Galleries/Panama08/Output/images/861 Yellow Warbler Dendroica petechia IMG_7641.jpg', 600, 450, 'Yellow Warbler <i>Dendroica petechia</i>', 'Output/thumbnails/861 Yellow Warbler Dendroica petechia IMG_7641.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Yup, that\'s a Yellow Warbler, but can\'t tell if this is a Mangrove Warbler or not.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7602, 'panama08', '7602', 'birds', 'Galleries/Panama08/Output/images/923 Gray-headed Tanager Eucometis penicillata IMG_7602.jpg', 600, 450, 'Gray-headed Tanager <i>Eucometis penicillata</i>', 'Output/thumbnails/923 Gray-headed Tanager Eucometis penicillata IMG_7602.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Suprisingly hard to photograph at the ant swarm on Plantation Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7856, 'panama08', '7856', 'birds', 'Galleries/Panama08/Output/images/931 Red-throated Ant-Tanager Habia fuscicauda (male) IMG_7856.jpg', 600, 450, 'Red-throated Ant-Tanager <i>Habia fuscicauda</i> (male)', 'Output/thumbnails/931 Red-throated Ant-Tanager Habia fuscicauda (male) IMG_7856.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Nice photo at a feeder in Gamboa City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7822, 'panama08', '7822', 'birds', 'Galleries/Panama08/Output/images/933 Summer Tanager Piranga rubra (female) IMG_7822.jpg', 600, 450, 'Summer Tanager <i>Piranga rubra</i> (female)', 'Output/thumbnails/933 Summer Tanager Piranga rubra (female) IMG_7822.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Gamboa City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7096, 'panama08', '7096', 'birds', 'Galleries/Panama08/Output/images/939 Crimson-backed Tanager Ramphocelus dimidiatus IMG_7096.jpg', 600, 450, 'Crimson-backed Tanager <i>Ramphocelus dimidiatus</i>', 'Output/thumbnails/939 Crimson-backed Tanager Ramphocelus dimidiatus IMG_7096.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Ubiquitous in the Canal Zone area', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7860, 'panama08', '7860', 'birds', 'Galleries/Panama08/Output/images/942 Flame-rumped Tanager Ramphocelus flammigerus IMG_7860.jpg', 600, 450, 'Flame-rumped Tanager <i>Ramphocelus flammigerus</i>', 'Output/thumbnails/942 Flame-rumped Tanager Ramphocelus flammigerus IMG_7860.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Likely along Achiote Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7827, 'panama08', '7827', 'birds', 'Galleries/Panama08/Output/images/943 Blue-gray Tanager Thraupis episcopus IMG_7827.jpg', 600, 450, 'Blue-gray Tanager <i>Thraupis episcopus</i>', 'Output/thumbnails/943 Blue-gray Tanager Thraupis episcopus IMG_7827.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7828, 'panama08', '7828', 'birds', 'Galleries/Panama08/Output/images/944 Palm Tanager Thraupis palmarum IMG_7828.jpg', 600, 450, 'Palm Tanager <i>Thraupis palmarum</i>', 'Output/thumbnails/944 Palm Tanager Thraupis palmarum IMG_7828.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7110, 'panama08', '7110', 'birds', 'Galleries/Panama08/Output/images/946 Plain-colored Tanager Tangara inornata IMG_7110.jpg', 600, 450, 'Plain-colored Tanager <i>Tangara inornata</i>', 'Output/thumbnails/946 Plain-colored Tanager Tangara inornata IMG_7110.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Note the contrasting dark wings and lack of a pale spot at the base of the primaries.  Surprisingly hard to sort out in poor light.', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6926, 'panama08', '6926', 'birds', 'Galleries/Panama08/Output/images/953 Golden-hooded Tanager Tangara larvata IMG_6926.jpg', 600, 450, 'Golden-hooded Tanager <i>Tangara larvata</i>', 'Output/thumbnails/953 Golden-hooded Tanager Tangara larvata IMG_6926.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Not a very good photo of a very common tanager.  This one was at the Ammo Dump Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7782, 'panama08', '7782', 'birds', 'Galleries/Panama08/Output/images/957 Blue Dacnis Dacnis cayana (female) IMG_7782.jpg', 600, 450, 'Blue Dacnis <i>Dacnis cayana</i> (female)', 'Output/thumbnails/957 Blue Dacnis Dacnis cayana (female) IMG_7782.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Maybe even prettier than the male.  From the observation platform on Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7744, 'panama08', '7744', 'birds', 'Galleries/Panama08/Output/images/957 Blue Dacnis Dacnis cayana (male) IMG_7744.jpg', 600, 450, 'Blue Dacnis <i>Dacnis cayana</i> (male)', 'Output/thumbnails/957 Blue Dacnis Dacnis cayana (male) IMG_7744.jpg', 132, 99, 0, 'Panama \'08 Birds', 'From the observation platform on Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7781, 'panama08', '7781', 'birds', 'Galleries/Panama08/Output/images/957 Blue Dacnis Dacnis cayana (male) IMG_7781.jpg', 600, 450, 'Blue Dacnis <i>Dacnis cayana</i> (male)', 'Output/thumbnails/957 Blue Dacnis Dacnis cayana (male) IMG_7781.jpg', 132, 99, 0, 'Panama \'08 Birds', 'From the observation platform on Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7833, 'panama08', '7833', 'birds', 'Galleries/Panama08/Output/images/962 Red-legged Honeycreeper Cyanerpes cyaneus (male) IMG_7833.jpg', 600, 450, 'Red-legged Honeycreeper <i>Cyanerpes cyaneus</i> (male)', 'Output/thumbnails/962 Red-legged Honeycreeper Cyanerpes cyaneus (male) IMG_7833.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Gamboa City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(6990, 'panama08', '6990', 'birds', 'Galleries/Panama08/Output/images/965 Blue-black Grassquit Volatinia jacarina (male) IMG_6990.jpg', 600, 450, 'Blue-black Grassquit <i>Volatinia jacarina</i> (male)', 'Output/thumbnails/965 Blue-black Grassquit Volatinia jacarina (male) IMG_6990.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Ammo Dump Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7844, 'panama08', '7844', 'birds', 'Galleries/Panama08/Output/images/967 Variable Seedeater Sporophila americana (female) IMG_7844.jpg', 600, 450, 'Variable Seedeater <i>Sporophila americana</i> (female)', 'Output/thumbnails/967 Variable Seedeater Sporophila americana (female) IMG_7844.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Gamboa City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7839, 'panama08', '7839', 'birds', 'Galleries/Panama08/Output/images/967 Variable Seedeater Sporophila americana (male) IMG_7839.jpg', 600, 450, 'Variable Seedeater <i>Sporophila americana</i> (male)', 'Output/thumbnails/967 Variable Seedeater Sporophila americana (male) IMG_7839.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Gamboa City', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7069, 'panama08', '7069', 'birds', 'Galleries/Panama08/Output/images/972 Ruddy-breasted Seedeater Sporophila minuta IMG_7069.jpg', 600, 450, 'Ruddy-breasted Seedeater <i>Sporophila minuta</i>', 'Output/thumbnails/972 Ruddy-breasted Seedeater Sporophila minuta IMG_7069.jpg', 132, 99, 0, 'Panama \'08 Birds', 'At the ranch near the entrance to Old Gamboa Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7198, 'panama08', '7198', 'birds', 'Galleries/Panama08/Output/images/1001 Streaked Saltator Saltator striatipectus IMG_7198.jpg', 600, 450, 'Streaked Saltator <i>Saltator striatipectus</i>', 'Output/thumbnails/1001 Streaked Saltator Saltator striatipectus IMG_7198.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7115, 'panama08', '7115', 'birds', 'Galleries/Panama08/Output/images/1003 Buff-throated Saltator Saltator maximus IMG_7115.jpg', 600, 450, 'Buff-throated Saltator <i>Saltator maximus</i>', 'Output/thumbnails/1003 Buff-throated Saltator Saltator maximus IMG_7115.jpg', 132, 99, 0, 'Panama \'08 Birds', '', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7266, 'panama08', '7266', 'birds', 'Galleries/Panama08/Output/images/1026 Yellow-backed Oriole Icterus chrysater IMG_7266.jpg', 600, 450, 'Yellow-backed Oriole <i>Icterus chrysater</i>', 'Output/thumbnails/1026 Yellow-backed Oriole Icterus chrysater IMG_7266.jpg', 132, 99, 0, 'Panama \'08 Birds', 'At the preserve along Achiote Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7803, 'panama08', '7803', 'birds', 'Galleries/Panama08/Output/images/1032 Yellow-rumped Cacique Cacicus cela IMG_7803.jpg', 600, 450, 'Yellow-rumped Cacique <i>Amblycercus holosericeus</i>', 'Output/thumbnails/1032 Yellow-rumped Cacique Cacicus cela IMG_7803.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Pipeline Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7686, 'panama08', '7686', 'birds', 'Galleries/Panama08/Output/images/1038 Yellow-crowned Euphonia Euphonia luteicapilla IMG_7686.jpg', 600, 450, 'Yellow-crowned Euphonia <i>Euphonia luteicapilla</i>', 'Output/thumbnails/1038 Yellow-crowned Euphonia Euphonia luteicapilla IMG_7686.jpg', 132, 99, 0, 'Panama \'08 Birds', 'Ammo Dump Ponds', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7271, 'panama08', '7271', 'birds', 'Galleries/Panama08/Output/images/1039 Thick-billed Euphonia Euphonia laniirostris (female) IMG_7271.jpg', 600, 450, 'Thick-billed Euphonia <i>Euphonia laniirostris</i> (female)', 'Output/thumbnails/1039 Thick-billed Euphonia Euphonia laniirostris (female) IMG_7271.jpg', 132, 99, 0, 'Panama \'08 Birds', 'At the preserve along Achiote Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', ''),
				new photo(7272, 'panama08', '7272', 'birds', 'Galleries/Panama08/Output/images/1039 Thick-billed Euphonia Euphonia laniirostris (male) IMG_7272.jpg', 600, 450, 'Thick-billed Euphonia <i>Euphonia laniirostris</i> (male)', 'Output/thumbnails/1039 Thick-billed Euphonia Euphonia laniirostris (male) IMG_7272.jpg', 132, 99, 0, 'Panama \'08 Birds', 'At the preserve along Achiote Road', 'March \'08', 'Mark Eaton', 'Panama (Canal Zone)', '', '')
		);
	} else if (gallery_id == 'peru07') {
		photos = new Array(new photo(528, 'peru07', '528', 'birds', 'Galleries/Peru07/Output/images/53  Horned Screamer Anhima  cornuta IMG_0528_RJ.jpg', 600, 450, 'Horned Screamer <i>Anhima cornuta</i>', 'Output/thumbnails/53  Horned Screamer Anhima  cornuta IMG_0528_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Conspicuous and loud at an oxbow lake near Manu Wildlife Center', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(580, 'peru07', '580', 'birds', 'Galleries/Peru07/Output/images/67  Muscovy Duck Cairina  moschata IMG_0580_RJ.jpg', 600, 450, 'Muscovy Duck <i>Cairina moschata</i>', 'Output/thumbnails/67  Muscovy Duck Cairina  moschata IMG_0580_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Quite skittish as evidenced by this photo', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(566, 'peru07', '566', 'birds', 'Galleries/Peru07/Output/images/266  Neotropic Cormorant Phalacrocorax  brasilianus IMG_0566_RJ.jpg', 600, 450, 'Neotropic Cormorant <i>Phalacrocorax brasilianus</i>', 'Output/thumbnails/266  Neotropic Cormorant Phalacrocorax  brasilianus IMG_0566_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Easy to find in the lowlands', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(628, 'peru07', '628', 'birds', 'Galleries/Peru07/Output/images/271  Anhinga Anhinga  anhinga IMG_0628_RJ.jpg', 600, 450, 'Anhinga <i>Anhinga anhinga</i>', 'Output/thumbnails/271  Anhinga Anhinga  anhinga IMG_0628_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Life would be easier with waterproof feathers, now wouldn\'t it?', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(497, 'peru07', '497', 'birds', 'Galleries/Peru07/Output/images/275  Rufescent Tiger-Heron Tigrisoma  lineatum IMG_0497_RJ.jpg', 600, 450, 'Rufescent Tiger-Heron <i>Tigrisoma lineatum</i>', 'Output/thumbnails/275  Rufescent Tiger-Heron Tigrisoma  lineatum IMG_0497_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Lovely view of this bird often skulking in poor light', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(311, 'peru07', '311', 'birds', 'Galleries/Peru07/Output/images/291  Cocoi Heron Ardea  cocoi IMG_0311_RJ.jpg', 600, 450, 'Cocoi Heron <i>Ardea cocoi</i>', 'Output/thumbnails/291  Cocoi Heron Ardea  cocoi IMG_0311_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'A staple along the Manu River', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(261, 'peru07', '261', 'birds', 'Galleries/Peru07/Output/images/318  Greater Yellow-headed Vulture Cathartes  melambrotus IMG_0261_RJ.jpg', 600, 450, 'Greater Yellow-headed Vulture <i>Cathartes melambrotus</i>', 'Output/thumbnails/318  Greater Yellow-headed Vulture Cathartes  melambrotus IMG_0261_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Note the dark bases to the outer primaries', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(611, 'peru07', '611', 'birds', 'Galleries/Peru07/Output/images/322  Osprey Pandion  haliaetus IMG_0611_RJ.jpg', 600, 450, 'Osprey <i>Pandion haliaetus</i>', 'Output/thumbnails/322  Osprey Pandion  haliaetus IMG_0611_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'If there are fish, you will find Ospreys', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(553, 'peru07', '553', 'birds', 'Galleries/Peru07/Output/images/329  Snail Kite Rostrhamus  sociabilis IMG_0553_RJ.jpg', 600, 450, 'Snail Kite <i>Rostrhamus sociabilis</i>', 'Output/thumbnails/329  Snail Kite Rostrhamus  sociabilis IMG_0553_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Lovely views while gliding by', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(558, 'peru07', '558', 'birds', 'Galleries/Peru07/Output/images/329  Snail Kite Rostrhamus  sociabilis IMG_0558_RJ.jpg', 600, 450, 'Snail Kite <i>Rostrhamus sociabilis</i>', 'Output/thumbnails/329  Snail Kite Rostrhamus  sociabilis IMG_0558_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Lovely views while gliding by', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(610, 'peru07', '610', 'birds', 'Galleries/Peru07/Output/images/334  Plumbeous Kite Ictinia  plumbea IMG_0610_RJ.jpg', 600, 450, 'Plumbeous Kite <i>Ictinia plumbea</i>', 'Output/thumbnails/334  Plumbeous Kite Ictinia  plumbea IMG_0610_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Everywhere but not a very good picture', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(21, 'peru07', '21', 'birds', 'Galleries/Peru07/Output/images/374  Puna [Variable] Hawk Buteo  [polysoma] poecilochrous IMG_0021_RJ.jpg', 600, 450, 'Puna [Variable] Hawk <i>Buteo [polysoma] poecilochrous</i>', 'Output/thumbnails/374  Puna [Variable] Hawk Buteo  [polysoma] poecilochrous IMG_0021_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Gliding high in poor light', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(25, 'peru07', '25', 'birds', 'Galleries/Peru07/Output/images/396  Mountain Caracara Phalcoboenus  megalopterus IMG_0025_RJ.jpg', 600, 450, 'Mountain Caracara <i>Phalcoboenus megalopterus</i>', 'Output/thumbnails/396  Mountain Caracara Phalcoboenus  megalopterus IMG_0025_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Easy to find high in the Andes', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(26, 'peru07', '26', 'birds', 'Galleries/Peru07/Output/images/396  Mountain Caracara Phalcoboenus  megalopterus IMG_0026_RJ.jpg', 600, 450, 'Mountain Caracara <i>Phalcoboenus megalopterus</i>', 'Output/thumbnails/396  Mountain Caracara Phalcoboenus  megalopterus IMG_0026_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Easy to find high in the Andes', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(617, 'peru07', '617', 'birds', 'Galleries/Peru07/Output/images/511  Lesser Yellowlegs Tringa  flavipes IMG_0617_RJ.jpg', 600, 450, 'Lesser Yellowlegs <i>Tringa flavipes</i>', 'Output/thumbnails/511  Lesser Yellowlegs Tringa  flavipes IMG_0617_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'A long ways from North America', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(626, 'peru07', '626', 'birds', 'Galleries/Peru07/Output/images/538  Wattled Jacana Jacana  jacana IMG_0626_RJ.jpg', 600, 450, 'Wattled Jacana <i>Jacana jacana</i>', 'Output/thumbnails/538  Wattled Jacana Jacana  jacana IMG_0626_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'It took several attempts to get a decent photo of this very common bird', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(629, 'peru07', '629', 'birds', 'Galleries/Peru07/Output/images/574  Large-billed Tern Phaetusa  simplex IMG_0629_RJ.jpg', 600, 450, 'Large-billed Tern <i>Phaetusa simplex</i>', 'Output/thumbnails/574  Large-billed Tern Phaetusa  simplex IMG_0629_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Common in the lowlands', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(622, 'peru07', '622', 'birds', 'Galleries/Peru07/Output/images/615  Pale-vented Pigeon Patagioenas  cayennensis IMG_0622_RJ.jpg', 600, 450, 'Pale-vented Pigeon <i>Patagioenas cayennensis</i>', 'Output/thumbnails/615  Pale-vented Pigeon Patagioenas  cayennensis IMG_0622_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Easy to find on snags', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(651, 'peru07', '651', 'birds', 'Galleries/Peru07/Output/images/649  Scarlet Macaw Ara  macao IMG_0651_RJ.jpg', 600, 450, 'Scarlet Macaw <i>Ara macao</i>', 'Output/thumbnails/649  Scarlet Macaw Ara  macao IMG_0651_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Two of four rehabilitated birds.  Unbelievably loud.', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(655, 'peru07', '655', 'birds', 'Galleries/Peru07/Output/images/649  Scarlet Macaw Ara  macao IMG_0655_RJ.jpg', 600, 450, 'Scarlet Macaw <i>Ara macao</i>', 'Output/thumbnails/649  Scarlet Macaw Ara  macao IMG_0655_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Two of four rehabilitated birds.  Unbelievably loud.', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(537, 'peru07', '537', 'birds', 'Galleries/Peru07/Output/images/650  Red-and-green Macaw Ara  chloropterus IMG_0537_RJ.jpg', 600, 450, 'Red-and-green Macaw <i>Ara chloropterus</i>', 'Output/thumbnails/650  Red-and-green Macaw Ara  chloropterus IMG_0537_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Perhaps the most common macaw near Manu Wildlife Center', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(530, 'peru07', '530', 'birds', 'Galleries/Peru07/Output/images/652  Chestnut-fronted Macaw Ara  severus IMG_0530_RJ.jpg', 600, 450, 'Chestnut-fronted Macaw <i>Ara severus</i>', 'Output/thumbnails/652  Chestnut-fronted Macaw Ara  severus IMG_0530_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Fairly common as well', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(377, 'peru07', '377', 'birds', 'Galleries/Peru07/Output/images/731  Orange-cheeked Parrot Gypopsitta  barrabandi and 760  Mealy Parrot Amazona  farinosa IMG_0377_RJ.jpg', 600, 450, 'Orange-cheeked Parrot <i>Gypopsitta  barrabandi</i> and Mealy Parrot <i>Amazona farinosa</i>', 'Output/thumbnails/731  Orange-cheeked Parrot Gypopsitta  barrabandi and 760  Mealy Parrot Amazona  farinosa IMG_0377_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'A nice bonus at the clay lick near Manu Wildlife Center', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(225, 'peru07', '225', 'birds', 'Galleries/Peru07/Output/images/741  Blue-headed Parrot Pionus  menstruus IMG_0225_RJ.jpg', 600, 450, 'Blue-headed Parrot <i>Pionus menstruus</i>', 'Output/thumbnails/741  Blue-headed Parrot Pionus  menstruus IMG_0225_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Common at Amazonia Lodge and at the clay lick', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(355, 'peru07', '355', 'birds', 'Galleries/Peru07/Output/images/741  Blue-headed Parrot Pionus  menstruus IMG_0355_RJ.jpg', 600, 450, 'Blue-headed Parrot <i>Pionus menstruus</i>', 'Output/thumbnails/741  Blue-headed Parrot Pionus  menstruus IMG_0355_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'At the clay lick at Manu Wildlife Center', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(354, 'peru07', '354', 'birds', 'Galleries/Peru07/Output/images/760  Mealy Parrot Amazona  farinosa IMG_0354_RJ.jpg', 600, 450, 'Mealy Parrot <i>Amazona farinosa</i>', 'Output/thumbnails/760  Mealy Parrot Amazona  farinosa IMG_0354_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'More from the clay lick', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(320, 'peru07', '320', 'birds', 'Galleries/Peru07/Output/images/760  Mealy Parrot Amazona  farinosa and 741  Blue-headed Parrot Pionus  menstruus IMG_0320_RJ.jpg', 600, 450, 'Mealy Parrot <i>Amazona farinosa</i> and Blue-headed Parrot <i>Pionus menstruus</i>', 'Output/thumbnails/760  Mealy Parrot Amazona  farinosa and 741  Blue-headed Parrot Pionus  menstruus IMG_0320_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'More from the clay lick', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(490, 'peru07', '490', 'birds', 'Galleries/Peru07/Output/images/764  Hoatzin Opisthocomus  hoazin IMG_0490_RJ.jpg', 600, 450, 'Hoatzin <i>Opisthocomus hoazin</i>', 'Output/thumbnails/764  Hoatzin Opisthocomus  hoazin IMG_0490_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Second prize in the intelligent design contest', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(607, 'peru07', '607', 'birds', 'Galleries/Peru07/Output/images/764  Hoatzin Opisthocomus  hoazin IMG_0607_RJ.jpg', 600, 450, 'Hoatzin <i>Opisthocomus hoazin</i>', 'Output/thumbnails/764  Hoatzin Opisthocomus  hoazin IMG_0607_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Almost in the boat with us!', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(469, 'peru07', '469', 'birds', 'Galleries/Peru07/Output/images/776  Greater Ani Crotophaga  major IMG_0469_RJ.jpg', 600, 450, 'Greater Ani <i>Crotophaga major</i>', 'Output/thumbnails/776  Greater Ani Crotophaga  major IMG_0469_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'That bill looks dangerous', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(457, 'peru07', '457', 'birds', 'Galleries/Peru07/Output/images/820  Amazonian Pygmy-Owl Glaucidium  hardyi IMG_0457_RJ.jpg', 600, 450, 'Amazonian Pygmy-Owl <i>Glaucidium hardyi</i>', 'Output/thumbnails/820  Amazonian Pygmy-Owl Glaucidium  hardyi IMG_0457_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'What a poser!  Came in to tape and just sat there for the better part of an hour!', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(4, 'peru07', '4', 'birds', 'Galleries/Peru07/Output/images/825  Peruvian Pygmy-Owl Glaucidium  peruanum IMG_0004_RJ.jpg', 600, 450, 'Peruvian Pygmy-Owl <i>Glaucidium peruanum</i>', 'Output/thumbnails/825  Peruvian Pygmy-Owl Glaucidium  peruanum IMG_0004_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Found in broad daylight.  Unfortunately, pygmy-owls are though to be bad luck to indigenous Andean people and are actively sought out to be killed.', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(608, 'peru07', '608', 'birds', 'Galleries/Peru07/Output/images/866  Ladder-tailed Nightjar Hydropsalis  climacocerca IMG_0608_RJ.jpg', 600, 450, 'Ladder-tailed Nightjar <i>Hydropsalis climacocerca</i>', 'Output/thumbnails/866  Ladder-tailed Nightjar Hydropsalis  climacocerca IMG_0608_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Found right at water.  Nice!', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(81, 'peru07', '81', 'birds', 'Galleries/Peru07/Output/images/943  Sparkling Violetear Colibri  coruscans IMG_0081_RJ.jpg', 600, 450, 'Sparkling Violetear <i>Colibri coruscans</i>', 'Output/thumbnails/943  Sparkling Violetear Colibri  coruscans IMG_0081_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Very common at Cock of the Rock Lodge', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(110, 'peru07', '110', 'birds', 'Galleries/Peru07/Output/images/967  Wire-crested Thorntail Discosura  popelairii IMG_0110_RJ.jpg', 600, 450, 'Wire-crested Thorntail <i>Discosura popelairii</i>', 'Output/thumbnails/967  Wire-crested Thorntail Discosura  popelairii IMG_0110_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Yeah baby!', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(115, 'peru07', '115', 'birds', 'Galleries/Peru07/Output/images/967  Wire-crested Thorntail Discosura  popelairii IMG_0115_RJ.jpg', 600, 450, 'Wire-crested Thorntail <i>Discosura popelairii</i>', 'Output/thumbnails/967  Wire-crested Thorntail Discosura  popelairii IMG_0115_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Hard to say whether I like the previous photo better.', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(88, 'peru07', '88', 'birds', 'Galleries/Peru07/Output/images/981  Speckled Hummingbird Adelomyia  melanogenys IMG_0088_RJ.jpg', 600, 450, 'Speckled Hummingbird <i>Adelomyia melanogenys</i>', 'Output/thumbnails/981  Speckled Hummingbird Adelomyia  melanogenys IMG_0088_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Nice photo of this sexually monomorphic hummingbird', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(9, 'peru07', '9', 'birds', 'Galleries/Peru07/Output/images/1005  Bearded Mountaineer Oreonympha  nobilis IMG_0009_RJ.jpg', 600, 450, 'Bearded Mountaineer <i>Oreonympha nobilis</i>', 'Output/thumbnails/1005  Bearded Mountaineer Oreonympha  nobilis IMG_0009_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Poor photo of this endemic.  We were struggling to get good looks in the gale that day.', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(660, 'peru07', '660', 'birds', 'Galleries/Peru07/Output/images/1110  Fork-tailed Woodnymph Thalurania  furcata IMG_0660_RJ.jpg', 600, 450, 'Fork-tailed Woodnymph <i>Thalurania furcata</i>', 'Output/thumbnails/1110  Fork-tailed Woodnymph Thalurania  furcata IMG_0660_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Immature male (?) at Manu Wildlife Center', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(59, 'peru07', '59', 'birds', 'Galleries/Peru07/Output/images/1114  Many-spotted Hummingbird Taphrospilus  hypostictus IMG_0059_RJ.jpg', 600, 450, 'Many-spotted Hummingbird <i>Taphrospilus hypostictus</i>', 'Output/thumbnails/1114  Many-spotted Hummingbird Taphrospilus  hypostictus IMG_0059_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Female Violet-fronted Brilliant <i>Heliodoxa leadbeateri</i> is very similar but always shows a short white malar stripe', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(175, 'peru07', '175', 'birds', 'Galleries/Peru07/Output/images/1138  Golden-tailed Sapphire Chrysuronia  oenone IMG_0175_RJ.jpg', 600, 450, 'Golden-tailed Sapphire <i>Chrysuronia oenone</i>', 'Output/thumbnails/1138  Golden-tailed Sapphire Chrysuronia  oenone IMG_0175_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Fairly common in the eastern Andes', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(543, 'peru07', '543', 'birds', 'Galleries/Peru07/Output/images/1167  Amazon Kingfisher Chloroceryle  amazona IMG_0543_RJ.jpg', 600, 450, 'Amazon Kingfisher <i>Chloroceryle amazona</i>', 'Output/thumbnails/1167  Amazon Kingfisher Chloroceryle  amazona IMG_0543_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Oxbow lake in the lowlands', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(119, 'peru07', '119', 'birds', 'Galleries/Peru07/Output/images/1176  Blue-crowned [Highland] Motmot Momotus  momota [aequatorialis] IMG_0119_RJ.jpg', 600, 450, 'Blue-crowned [Highland] Motmot <i>Momotus  momota [aequatorialis]</i>', 'Output/thumbnails/1176  Blue-crowned [Highland] Motmot Momotus  momota [aequatorialis] IMG_0119_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Not sure how you tell this from Blue-crowned Motmot <i>Motmotus momota</i>', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(282, 'peru07', '282', 'birds', 'Galleries/Peru07/Output/images/1206  Striolated Puffbird Nystalus  striolatus IMG_0282_RJ.jpg', 600, 450, 'Striolated Puffbird <i>Nystalus striolatus</i>', 'Output/thumbnails/1206  Striolated Puffbird Nystalus  striolatus IMG_0282_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Came in to tape and vocalized softly for the better part of an hour.  Sublime!', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(288, 'peru07', '288', 'birds', 'Galleries/Peru07/Output/images/1206  Striolated Puffbird Nystalus  striolatus IMG_0288_RJ.jpg', 600, 450, 'Striolated Puffbird <i>Nystalus striolatus</i>', 'Output/thumbnails/1206  Striolated Puffbird Nystalus  striolatus IMG_0288_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'I couldn\'t resist throwing in another photo; same bird as the previous picture', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(74, 'peru07', '74', 'birds', 'Galleries/Peru07/Output/images/1217  Lanceolated Monklet Micromonacha  lanceolata IMG_0074_RJ.jpg', 600, 450, 'Lanceolated Monklet <i>Micromonacha lanceolata</i>', 'Output/thumbnails/1217  Lanceolated Monklet Micromonacha  lanceolata IMG_0074_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Utterly oblivious to us on the trail below', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(279, 'peru07', '279', 'birds', 'Galleries/Peru07/Output/images/1247  White-throated Toucan Ramphastos  tucanus IMG_0279_RJ.jpg', 600, 450, 'White-throated Toucan <i>Ramphastos tucanus</i>', 'Output/thumbnails/1247  White-throated Toucan Ramphastos  tucanus IMG_0279_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Not safely separated from Channel-billed Toucan <i>Ramphastos vitellimus</i> other that by voice.  The vast majority we saw were White-throated Toucan <i>Ramphastos tucanus</i>.', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(442, 'peru07', '442', 'birds', 'Galleries/Peru07/Output/images/1247  White-throated Toucan Ramphastos  tucanus IMG_0442_RJ.jpg', 600, 450, 'White-throated Toucan <i>Ramphastos tucanus</i>', 'Output/thumbnails/1247  White-throated Toucan Ramphastos  tucanus IMG_0442_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Not safely separated from Channel-billed Toucan <i>Ramphastos vitellimus</i> other that by voice.  The vast majority we saw were White-throated Toucan <i>Ramphastos tucanus</i>.', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(446, 'peru07', '446', 'birds', 'Galleries/Peru07/Output/images/1247  White-throated Toucan Ramphastos  tucanus IMG_0446_RJ.jpg', 600, 450, 'White-throated Toucan <i>Ramphastos tucanus</i>', 'Output/thumbnails/1247  White-throated Toucan Ramphastos  tucanus IMG_0446_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Not safely separated from Channel-billed Toucan <i>Ramphastos vitellimus</i> other that by voice.  The vast majority we saw were White-throated Toucan <i>Ramphastos tucanus</i>.', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(250, 'peru07', '250', 'birds', 'Galleries/Peru07/Output/images/1276  Curl-crested Aracari Pteroglossus  beauharnaesii IMG_0250_RJ.jpg', 600, 450, 'Curl-crested Aracari <i>Pteroglossus beauharnaesii</i>', 'Output/thumbnails/1276  Curl-crested Aracari Pteroglossus  beauharnaesii IMG_0250_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Notice the spotting on the head and the throat', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(290, 'peru07', '290', 'birds', 'Galleries/Peru07/Output/images/1323  Red-stained Woodpecker Veniliornis  affinis IMG_0290_RJ.jpg', 600, 450, 'Red-stained Woodpecker <i>Veniliornis affinis</i>', 'Output/thumbnails/1323  Red-stained Woodpecker Veniliornis  affinis IMG_0290_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Red stain on remiges hard to see, but diagnostic', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(254, 'peru07', '254', 'birds', 'Galleries/Peru07/Output/images/1326  White-throated Woodpecker Piculus  leucolaemus IMG_0254_RJ.jpg', 600, 450, 'White-throated Woodpecker <i>Piculus leucolaemus</i>', 'Output/thumbnails/1326  White-throated Woodpecker Piculus  leucolaemus IMG_0254_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'White throat just visible in this female', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(444, 'peru07', '444', 'birds', 'Galleries/Peru07/Output/images/1341  Scale-breasted Woodpecker Celeus  grammicus IMG_0444_RJ.jpg', 600, 450, 'Scale-breasted Woodpecker <i>Celeus grammicus</i>', 'Output/thumbnails/1341  Scale-breasted Woodpecker Celeus  grammicus IMG_0444_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Notice the barring both dorsally and ventrally', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(191, 'peru07', '191', 'birds', 'Galleries/Peru07/Output/images/1402  Pale-legged Hornero Furnarius  leucopus IMG_0191_RJ.jpg', 600, 450, 'Pale-legged Hornero <i>Furnarius leucopus</i>', 'Output/thumbnails/1402  Pale-legged Hornero Furnarius  leucopus IMG_0191_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Poor photo in the rain at Amazonia Lodge', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(210, 'peru07', '210', 'birds', 'Galleries/Peru07/Output/images/1591  Slender-billed Xenops Xenops  tenuirostris IMG_0210_RJ.jpg', 600, 450, 'Slender-billed Xenops <i>Xenops tenuirostris</i>', 'Output/thumbnails/1591  Slender-billed Xenops Xenops  tenuirostris IMG_0210_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Foraging in the trees at Amazonia Lodge.  Note the slender bill.', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(145, 'peru07', '145', 'birds', 'Galleries/Peru07/Output/images/1628  Olive-backed Woodcreeper Xiphorhynchus  triangularis IMG_0145_RJ.jpg', 600, 450, 'Olive-backed Woodcreeper <i>Xiphorhynchus triangularis</i>', 'Output/thumbnails/1628  Olive-backed Woodcreeper Xiphorhynchus  triangularis IMG_0145_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Upper parts of Manu Road', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(149, 'peru07', '149', 'birds', 'Galleries/Peru07/Output/images/1628  Olive-backed Woodcreeper Xiphorhynchus  triangularis IMG_0149_RJ.jpg', 600, 450, 'Olive-backed Woodcreeper <i>Xiphorhynchus triangularis</i>', 'Output/thumbnails/1628  Olive-backed Woodcreeper Xiphorhynchus  triangularis IMG_0149_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Upper parts of Manu Road', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(7, 'peru07', '7', 'birds', 'Galleries/Peru07/Output/images/2107  Many-colored Rush-Tyrant Tachuris  rubrigastra IMG_0007_RJ.jpg', 600, 450, 'Many-colored Rush-Tyrant <i>Tachuris rubrigastra</i>', 'Output/thumbnails/2107  Many-colored Rush-Tyrant Tachuris  rubrigastra IMG_0007_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Hard to get a good look, let alone a photo', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(44, 'peru07', '44', 'birds', 'Galleries/Peru07/Output/images/2277  Brown-backed Chat-Tyrant Ochthoeca  fumicolor IMG_0044_RJ.jpg', 600, 450, 'Brown-backed Chat-Tyrant <i>Ochthoeca fumicolor</i>', 'Output/thumbnails/2277  Brown-backed Chat-Tyrant Ochthoeca  fumicolor IMG_0044_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Nice bird; fair photo', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(548, 'peru07', '548', 'birds', 'Galleries/Peru07/Output/images/2287  Social Flycatcher Myiozetetes  similis IMG_0548_RJ.jpg', 600, 450, 'Social Flycatcher <i>Myiozetetes similis</i>', 'Output/thumbnails/2287  Social Flycatcher Myiozetetes  similis IMG_0548_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Lovely photo of this very common bird', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(618, 'peru07', '618', 'birds', 'Galleries/Peru07/Output/images/2307  Tropical Kingbird Tyrannus  melancholicus IMG_0618_RJ.jpg', 600, 450, 'Tropical Kingbird <i>Tyrannus melancholicus</i>', 'Output/thumbnails/2307  Tropical Kingbird Tyrannus  melancholicus IMG_0618_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Proof positive that I will photograph any tropical bird', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(46, 'peru07', '46', 'birds', 'Galleries/Peru07/Output/images/2363  Andean Cock-of-the-rock Rupicola  peruvianus IMG_0046_RJ.jpg', 600, 450, 'Andean Cock-of-the-rock <i>Rupicola peruvianus</i>', 'Output/thumbnails/2363  Andean Cock-of-the-rock Rupicola  peruvianus IMG_0046_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Well-deserved star at Cock of the Rock Lodge', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(56, 'peru07', '56', 'birds', 'Galleries/Peru07/Output/images/2363  Andean Cock-of-the-rock Rupicola  peruvianus IMG_0056_RJ.jpg', 600, 450, 'Andean Cock-of-the-rock <i>Rupicola peruvianus</i>', 'Output/thumbnails/2363  Andean Cock-of-the-rock Rupicola  peruvianus IMG_0056_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'And an encore performance of this displaying male', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(94, 'peru07', '94', 'birds', 'Galleries/Peru07/Output/images/2517  Green [Inca] Jay Cyanocorax  yncas IMG_0094_RJ.jpg', 600, 450, 'Green [Inca] Jay <i>Cyanocorax yncas</i>', 'Output/thumbnails/2517  Green [Inca] Jay Cyanocorax  yncas IMG_0094_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Surely this is a split from Green Jay.  Looks nothing like the Green Jays in Mexico.', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(477, 'peru07', '477', 'birds', 'Galleries/Peru07/Output/images/2521  White-winged Swallow Tachycineta  albiventer IMG_0477_RJ.jpg', 600, 450, 'White-winged Swallow <i>Tachycineta albiventer</i>', 'Output/thumbnails/2521  White-winged Swallow Tachycineta  albiventer IMG_0477_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'A staple along the Manu River', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(37, 'peru07', '37', 'birds', 'Galleries/Peru07/Output/images/2555  Sedge [Grass] Wren Cistothorus  platensis IMG_0037_RJ.jpg', 600, 450, 'Sedge [Grass] Wren <i>Cistothorus platensis</i>', 'Output/thumbnails/2555  Sedge [Grass] Wren Cistothorus  platensis IMG_0037_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Nests in succulents high in the Andes.  Surely a different species from Sedge Wren.', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(496, 'peru07', '496', 'birds', 'Galleries/Peru07/Output/images/2602  Black-capped Donacobius Donacobius  atricapilla IMG_0496_RJ.jpg', 600, 450, 'Black-capped Donacobius <i>Donacobius atricapilla</i>', 'Output/thumbnails/2602  Black-capped Donacobius Donacobius  atricapilla IMG_0496_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Fair photo of a distant bird', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(129, 'peru07', '129', 'birds', 'Galleries/Peru07/Output/images/2622  Glossy-black Thrush Turdus  serranus IMG_0129_RJ.jpg', 600, 450, 'Glossy-black Thrush <i>Turdus serranus</i>', 'Output/thumbnails/2622  Glossy-black Thrush Turdus  serranus IMG_0129_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Take at o\'dark hundred at the Wayquecha resereach station', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(321, 'peru07', '321', 'birds', 'Galleries/Peru07/Output/images/2632  Black-billed Thrush Turdus  ignobilis IMG_0321_RJ.jpg', 600, 450, 'Black-billed Thrush <i>Turdus ignobilis</i>', 'Output/thumbnails/2632  Black-billed Thrush Turdus  ignobilis IMG_0321_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Ubiquitous in the lowlands', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(445, 'peru07', '445', 'birds', 'Galleries/Peru07/Output/images/2711  White-shouldered Tanager Tachyphonus  luctuosus IMG_0445_RJ.jpg', 600, 450, 'White-shouldered Tanager <i>Tachyphonus luctuosus</i>', 'Output/thumbnails/2711  White-shouldered Tanager Tachyphonus  luctuosus IMG_0445_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'A staple at Manu Wildlife Center', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(182, 'peru07', '182', 'birds', 'Galleries/Peru07/Output/images/2718  Masked Crimson Tanager Ramphocelus  nigrogularis IMG_0182_RJ.jpg', 600, 450, 'Masked Crimson Tanager <i>Ramphocelus nigrogularis</i>', 'Output/thumbnails/2718  Masked Crimson Tanager Ramphocelus  nigrogularis IMG_0182_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Merry Christmas!', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(96, 'peru07', '96', 'birds', 'Galleries/Peru07/Output/images/2721  Silver-beaked Tanager Ramphocelus  carbo IMG_0096_RJ.jpg', 600, 450, 'Silver-beaked Tanager <i>Ramphocelus carbo</i>', 'Output/thumbnails/2721  Silver-beaked Tanager Ramphocelus  carbo IMG_0096_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Ubiquitous in eastern lowlands', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(188, 'peru07', '188', 'birds', 'Galleries/Peru07/Output/images/2724  Blue-gray Tanager Thraupis  episcopus IMG_0188_RJ.jpg', 600, 450, 'Blue-gray Tanager <i>Thraupis episcopus</i>', 'Output/thumbnails/2724  Blue-gray Tanager Thraupis  episcopus IMG_0188_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Note the white on the median coverts unlike populations further north', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(251, 'peru07', '251', 'birds', 'Galleries/Peru07/Output/images/2787  Paradise Tanager Tangara  chilensis IMG_0251_RJ.jpg', 600, 450, 'Paradise Tanager <i>Tangara chilensis</i>', 'Output/thumbnails/2787  Paradise Tanager Tangara  chilensis IMG_0251_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Fairly common but didn\'t really come in for photos', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(103, 'peru07', '103', 'birds', 'Galleries/Peru07/Output/images/2871  Red-crowned Ant-Tanager Habia  rubica IMG_0103_RJ.jpg', 600, 450, 'Red-crowned Ant-Tanager <i>Habia rubica</i>', 'Output/thumbnails/2871  Red-crowned Ant-Tanager Habia  rubica IMG_0103_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Nice photo from Cock of the Rock Lodge', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(227, 'peru07', '227', 'birds', 'Galleries/Peru07/Output/images/2981  Yellow-bellied Seedeater Sporophila  nigricollis IMG_0227_RJ.jpg', 600, 450, 'Yellow-bellied Seedeater <i>Sporophila nigricollis</i>', 'Output/thumbnails/2981  Yellow-bellied Seedeater Sporophila  nigricollis IMG_0227_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Don\'t know how you\'d identify these to species without seeing the males', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(514, 'peru07', '514', 'birds', 'Galleries/Peru07/Output/images/3004  Black-billed Seed-Finch Oryzoborus  atrirostris IMG_0514_RJ.jpg', 600, 450, 'Black-billed Seed-Finch <i>Oryzoborus atrirostris</i>', 'Output/thumbnails/3004  Black-billed Seed-Finch Oryzoborus  atrirostris IMG_0514_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Note the huge bill', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(70, 'peru07', '70', 'birds', 'Galleries/Peru07/Output/images/3068  Buff-throated Saltator Saltator  maximus IMG_0070_RJ.jpg', 600, 450, 'Buff-throated Saltator <i>Saltator maximus</i>', 'Output/thumbnails/3068  Buff-throated Saltator Saltator  maximus IMG_0070_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Not sure why the right half of the bird is sharp while the left half isn\'t', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(89, 'peru07', '89', 'birds', 'Galleries/Peru07/Output/images/3155  Russet-backed Oropendola Psarocolius  angustifrons IMG_0089_RJ.jpg', 600, 450, 'Russet-backed Oropendola <i>Psarocolius angustifrons</i>', 'Output/thumbnails/3155  Russet-backed Oropendola Psarocolius  angustifrons IMG_0089_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Nice photo of this common oropendola', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(470, 'peru07', '470', 'birds', 'Galleries/Peru07/Output/images/3169  Yellow-rumped Cacique Cacicus  cela IMG_0470_RJ.jpg', 600, 450, 'Yellow-rumped Cacique <i>Cacicus cela</i>', 'Output/thumbnails/3169  Yellow-rumped Cacique Cacicus  cela IMG_0470_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Just identifiable in flight', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(504, 'peru07', '504', 'birds', 'Galleries/Peru07/Output/images/3195  Pale-eyed Blackbird Agelasticus  xanthophthalmus IMG_0504_RJ.jpg', 600, 450, 'Pale-eyed Blackbird <i>Agelasticus xanthophthalmus</i>', 'Output/thumbnails/3195  Pale-eyed Blackbird Agelasticus  xanthophthalmus IMG_0504_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'In the rushes at an oxbow lake in the lowlands', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(310, 'peru07', '310', 'birds', 'Galleries/Peru07/Output/images/3206  Giant Cowbird Molothrus  oryzivorus IMG_0310_RJ.jpg', 600, 450, 'Giant Cowbird <i>Molothrus oryzivorus</i>', 'Output/thumbnails/3206  Giant Cowbird Molothrus  oryzivorus IMG_0310_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Menacing at the banks of the Manu River', 'November/December \'07', 'Mark Eaton', 'Peru', '', ''),
				new photo(185, 'peru07', '185', 'birds', 'Galleries/Peru07/Output/images/3226  Olivaceous Siskin Carduelis  olivacea IMG_0185_RJ.jpg', 600, 450, 'Olivaceous Siskin <i>Carduelis olivacea</i>', 'Output/thumbnails/3226  Olivaceous Siskin Carduelis  olivacea IMG_0185_RJ.jpg', 132, 99, 0, 'Peru \'07 Birds', 'Same species as Hooded Siskin <i>Carduelis magellanica</i>?', 'November/December \'07', 'Mark Eaton', 'Peru', '', '')
		);
	} else if (gallery_id == 'japan07birds') {
		photos = new Array(new photo(2, 'japan07birds', '2', 'birds', 'Galleries/Japan07Birds/Output/images/2 Little Grebe Tachybaptus ruficollis.jpg', 600, 450, 'Little Grebe <i>Tachybaptus ruficollis</i>', 'Output/thumbnails/2 Little Grebe Tachybaptus ruficollis.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Easy to find', 'Spring \'07', 'Mark Eaton', 'Tokyo', '', ''),
				new photo(3, 'japan07birds', '3', 'birds', 'Galleries/Japan07Birds/Output/images/3 Grey Heron Ardea cinerea.jpg', 600, 450, 'Grey Heron <i>Ardea cinerea</i>', 'Output/thumbnails/3 Grey Heron Ardea cinerea.jpg', 132, 99, 0, 'Japan \'07 Birds', '', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(4, 'japan07birds', '4', 'birds', 'Galleries/Japan07Birds/Output/images/4 Intermediate Egret Ardea intermedia.jpg', 600, 450, 'Little Egret <i>Egretta garzetta</i>', 'Output/thumbnails/4 Intermediate Egret Ardea intermedia.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Originally I misidentified this as an Intermediate Egret <i>Ardea intermedia</i>.  However, the dark bill and legs, yellow lores and long plumes clearly indicate an alternate plumaged LITTLE EGRET.  Thanks to Paul Saraceni for pointing out my mistake.', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(5, 'japan07birds', '5', 'birds', 'Galleries/Japan07Birds/Output/images/5 Intermediate Egret Ardea intermedia.jpg', 600, 450, 'Little Egret <i>Egretta garzetta</i>', 'Output/thumbnails/5 Intermediate Egret Ardea intermedia.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Originally I misidentified this as an Intermediate Egret <i>Ardea intermedia</i>.  However, the dark bill and legs, yellow lores and long plumes clearly indicate an alternate plumaged LITTLE EGRET.  Thanks to Paul Saraceni for pointing out my mistake.', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(6, 'japan07birds', '6', 'birds', 'Galleries/Japan07Birds/Output/images/6 Black [-eared] Kite Milvus migrans.jpg', 600, 450, 'Black [-eared] Kite <i>Milvus migrans</i>', 'Output/thumbnails/6 Black [-eared] Kite Milvus migrans.jpg', 132, 99, 0, 'Japan \'07 Birds', '', 'Spring \'07', 'Mark Eaton', 'Hokkaido', '', ''),
				new photo(7, 'japan07birds', '7', 'birds', 'Galleries/Japan07Birds/Output/images/7 Black [-eared] Kite Milvus migrans.jpg', 600, 450, 'Black [-eared] Kite <i>Milvus migrans</i>', 'Output/thumbnails/7 Black [-eared] Kite Milvus migrans.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Ubiquitous, particularly at the Kamagawa', 'Spring \'07', 'Mark Eaton', 'Kamagawa, Kyoto', '', ''),
				new photo(8, 'japan07birds', '8', 'birds', 'Galleries/Japan07Birds/Output/images/8 Black [-eared] Kite Milvus migrans.jpg', 600, 450, 'Black [-eared] Kite <i>Milvus migrans</i>', 'Output/thumbnails/8 Black [-eared] Kite Milvus migrans.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Ubiquitous, particularly at the Kamagawa', 'Spring \'07', 'Mark Eaton', 'Kamagawa, Kyoto', '', ''),
				new photo(9, 'japan07birds', '9', 'birds', 'Galleries/Japan07Birds/Output/images/9 White-tailed Eagle Haliaeetus albicilla.jpg', 600, 450, 'White-tailed Eagle <i>Haliaeetus albicilla</i>', 'Output/thumbnails/9 White-tailed Eagle Haliaeetus albicilla.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Only juveniles were left at this time of year', 'Spring \'07', 'Mark Eaton', 'Shiretoko Penisula, Hokkaido', '', ''),
				new photo(10, 'japan07birds', '10', 'birds', 'Galleries/Japan07Birds/Output/images/10 White-tailed Eagle Haliaeetus albicilla.jpg', 600, 450, 'White-tailed Eagle <i>Haliaeetus albicilla</i>', 'Output/thumbnails/10 White-tailed Eagle Haliaeetus albicilla.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Only juveniles were left at this time of year', 'Spring \'07', 'Mark Eaton', 'Shiretoko Penisula, Hokkaido', '', ''),
				new photo(11, 'japan07birds', '11', 'birds', 'Galleries/Japan07Birds/Output/images/11 White-tailed Eagle Haliaeetus albicilla.jpg', 600, 450, 'White-tailed Eagle <i>Haliaeetus albicilla</i>', 'Output/thumbnails/11 White-tailed Eagle Haliaeetus albicilla.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Only juveniles were left at this time of year', 'Spring \'07', 'Mark Eaton', 'Shiretoko Penisula, Hokkaido', '', ''),
				new photo(12, 'japan07birds', '12', 'birds', 'Galleries/Japan07Birds/Output/images/12 Steller\'s Sea-Eagle Haliaeetus pelagicus.jpg', 600, 450, 'Steller\'s Sea-Eagle <i>Haliaeetus pelagicus</i>', 'Output/thumbnails/12 Steller\'s Sea-Eagle Haliaeetus pelagicus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'I almost drove off the road when I saw this bird perched.  Fortunately, there was a pullout right there and I quickly got off the road and got this lovely picture.', 'Spring \'07', 'Mark Eaton', 'Shiretoko Penisula, Hokkaido', '', ''),
				new photo(13, 'japan07birds', '13', 'birds', 'Galleries/Japan07Birds/Output/images/13 Mute Swan Cygnus olor.jpg', 600, 450, 'Mute Swan <i>Cygnus olor</i>', 'Output/thumbnails/13 Mute Swan Cygnus olor.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Maybe I can count this one...', 'Spring \'07', 'Mark Eaton', 'Imperial Gardens, Tokyo', '', ''),
				new photo(14, 'japan07birds', '14', 'birds', 'Galleries/Japan07Birds/Output/images/14 Eurasian Wigeon Anas penelope.jpg', 600, 450, 'Eurasian Wigeon <i>Anas penelope</i>', 'Output/thumbnails/14 Eurasian Wigeon Anas penelope.jpg', 132, 99, 0, 'Japan \'07 Birds', 'In asia no less', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(15, 'japan07birds', '15', 'birds', 'Galleries/Japan07Birds/Output/images/15 Eurasian Wigeon Anas penelope.jpg', 600, 450, 'Eurasian Wigeon <i>Anas penelope</i>', 'Output/thumbnails/15 Eurasian Wigeon Anas penelope.jpg', 132, 99, 0, 'Japan \'07 Birds', 'In asia no less', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(16, 'japan07birds', '16', 'birds', 'Galleries/Japan07Birds/Output/images/16 Eurasian Wigeon Anas penelope.jpg', 600, 450, 'Eurasian Wigeon <i>Anas penelope</i>', 'Output/thumbnails/16 Eurasian Wigeon Anas penelope.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Flying by just offshore in Hokkadio', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(17, 'japan07birds', '17', 'birds', 'Galleries/Japan07Birds/Output/images/17 Spot-billed Duck Anas poecilorhyncha.jpg', 600, 450, 'Spot-billed Duck <i>Anas poecilorhyncha</i>', 'Output/thumbnails/17 Spot-billed Duck Anas poecilorhyncha.jpg', 132, 99, 0, 'Japan \'07 Birds', '', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(18, 'japan07birds', '18', 'birds', 'Galleries/Japan07Birds/Output/images/18 Common Teal Anas crecca.jpg', 600, 450, 'Common Teal <i>Anas crecca</i>', 'Output/thumbnails/18 Common Teal Anas crecca.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Not sure how you tell this from Green-winged Teal', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(19, 'japan07birds', '19', 'birds', 'Galleries/Japan07Birds/Output/images/19 Common Teal Anas crecca.jpg', 600, 450, 'Common Teal <i>Anas crecca</i>', 'Output/thumbnails/19 Common Teal Anas crecca.jpg', 132, 99, 0, 'Japan \'07 Birds', '', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(20, 'japan07birds', '20', 'birds', 'Galleries/Japan07Birds/Output/images/20 Red-crowned [Japanese] Crane Grus japonensis.jpg', 600, 450, 'Red-crowned [Japanese] Crane <i>Grus japonensis</i>', 'Output/thumbnails/20 Red-crowned [Japanese] Crane Grus japonensis.jpg', 132, 99, 0, 'Japan \'07 Birds', 'This immature was handing around the Japanese Crane Reserve.', 'Spring \'07', 'Mark Eaton', 'Japanese Crane Preserve, Hokkaido', '', ''),
				new photo(21, 'japan07birds', '21', 'birds', 'Galleries/Japan07Birds/Output/images/21 Red-crowned [Japanese] Crane Grus japonensis.jpg', 600, 450, 'Red-crowned [Japanese] Crane <i>Grus japonensis</i>', 'Output/thumbnails/21 Red-crowned [Japanese] Crane Grus japonensis.jpg', 132, 99, 0, 'Japan \'07 Birds', 'These immatures were handing around the Japanese Crane Reserve.  Fairly tame but definitely wild birds.', 'Spring \'07', 'Mark Eaton', 'Japanese Crane Preserve, Hokkaido', '', ''),
				new photo(22, 'japan07birds', '22', 'birds', 'Galleries/Japan07Birds/Output/images/22 Red-crowned [Japanese] Crane Grus japonensis.jpg', 600, 450, 'Red-crowned [Japanese] Crane <i>Grus japonensis</i>', 'Output/thumbnails/22 Red-crowned [Japanese] Crane Grus japonensis.jpg', 132, 99, 0, 'Japan \'07 Birds', 'This adult was considerably more feral than the previous birds', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(23, 'japan07birds', '23', 'birds', 'Galleries/Japan07Birds/Output/images/23 Red-crowned [Japanese] Crane Grus japonensis (captive).jpg', 600, 450, 'Red-crowned [Japanese] Crane <i>Grus japonensis</i> (captive).jpg', 'Output/thumbnails/23 Red-crowned [Japanese] Crane Grus japonensis (captive).jpg', 132, 99, 0, 'Japan \'07 Birds', 'Rehab at the preserve', 'Spring \'07', 'Debi Lamm', 'Japanese Crane Preserve, Hokkaido', '', ''),
				new photo(24, 'japan07birds', '24', 'birds', 'Galleries/Japan07Birds/Output/images/24 Black-necked Crane Grus nigricollis (captive).jpg', 600, 450, 'Black-necked Crane <i>Grus nigricollis</i> (captive).jpg', 'Output/thumbnails/24 Black-necked Crane Grus nigricollis (captive).jpg', 132, 99, 0, 'Japan \'07 Birds', 'Not found in Japan, this is a rehab being cared for at the preserve', 'Spring \'07', 'Debi Lamm', 'Japanese Crane Preserve, Hokkaido', '', ''),
				new photo(25, 'japan07birds', '25', 'birds', 'Galleries/Japan07Birds/Output/images/25 Far-Eastern Curlew Numenius madagascariensis .jpg', 600, 450, 'Far-Eastern Curlew Numenius madagascariensis .jpg', 'Output/thumbnails/25 Far-Eastern Curlew Numenius madagascariensis .jpg', 132, 99, 0, 'Japan \'07 Birds', 'A long ways away, but scope views were satisfactory', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(26, 'japan07birds', '26', 'birds', 'Galleries/Japan07Birds/Output/images/26 Greater Sand Plover Charadrius leschenaultii.jpg', 600, 450, 'Greater Sand Plover <i>Charadrius leschenaultii</i>', 'Output/thumbnails/26 Greater Sand Plover Charadrius leschenaultii.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Ditto', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(27, 'japan07birds', '27', 'birds', 'Galleries/Japan07Birds/Output/images/27 Little Ringed Plover  Charadrius dubius.jpg', 600, 450, 'Little Ringed Plover  <i>Charadrius dubius</i>', 'Output/thumbnails/27 Little Ringed Plover  Charadrius dubius.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Nice looks on the Kamagawa', 'Spring \'07', 'Mark Eaton', 'Kamagawa, Kyoto', '', ''),
				new photo(28, 'japan07birds', '28', 'birds', 'Galleries/Japan07Birds/Output/images/28 Common Sandpiper Tringa hypoleucos.jpg', 600, 450, 'Common Sandpiper <i>Tringa hypoleucos</i>', 'Output/thumbnails/28 Common Sandpiper Tringa hypoleucos.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Is this separable from Spotted Sandpiper?', 'Spring \'07', 'Mark Eaton', 'Kamagawa, Kyoto', '', ''),
				new photo(29, 'japan07birds', '29', 'birds', 'Galleries/Japan07Birds/Output/images/29 Slaty-backed Gull Larus schistisagus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i>', 'Output/thumbnails/29 Slaty-backed Gull Larus schistisagus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Adult', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(30, 'japan07birds', '30', 'birds', 'Galleries/Japan07Birds/Output/images/30 Slaty-backed Gull Larus schistisagus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i>', 'Output/thumbnails/30 Slaty-backed Gull Larus schistisagus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Adult', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(31, 'japan07birds', '31', 'birds', 'Galleries/Japan07Birds/Output/images/31 Slaty-backed Gull Larus schistisagus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i>', 'Output/thumbnails/31 Slaty-backed Gull Larus schistisagus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Two adults', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(32, 'japan07birds', '32', 'birds', 'Galleries/Japan07Birds/Output/images/32 Slaty-backed Gull Larus schistisagus and Common Gull Larus canus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i> and Common Gull <i>Larus canus</i>', 'Output/thumbnails/32 Slaty-backed Gull Larus schistisagus and Common Gull Larus canus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Two adult and one first-cycle Slaty-backs with a first-cycle Common Gull thrown in', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(33, 'japan07birds', '33', 'birds', 'Galleries/Japan07Birds/Output/images/33 Slaty-backed Gull Larus schistisagus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i>', 'Output/thumbnails/33 Slaty-backed Gull Larus schistisagus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Adult Slaty-backed in flight showing the string of pearls nicely.  What about the bird in the back?', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(34, 'japan07birds', '34', 'birds', 'Galleries/Japan07Birds/Output/images/34 Slaty-backed Gull Larus schistisagus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i>', 'Output/thumbnails/34 Slaty-backed Gull Larus schistisagus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'First-cycle bird', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(35, 'japan07birds', '35', 'birds', 'Galleries/Japan07Birds/Output/images/35 Slaty-backed Gull Larus schistisagus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i>', 'Output/thumbnails/35 Slaty-backed Gull Larus schistisagus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'First-cycle bird landing', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(36, 'japan07birds', '36', 'birds', 'Galleries/Japan07Birds/Output/images/36 Slaty-backed Gull Larus schistisagus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i>', 'Output/thumbnails/36 Slaty-backed Gull Larus schistisagus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Adult landing', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(37, 'japan07birds', '37', 'birds', 'Galleries/Japan07Birds/Output/images/37 Slaty-backed Gull Larus schistisagus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i>', 'Output/thumbnails/37 Slaty-backed Gull Larus schistisagus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Three adult Slaty-backed Gulls, one of which is landing', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(38, 'japan07birds', '38', 'birds', 'Galleries/Japan07Birds/Output/images/38 Slaty-backed Gull Larus schistisagus and Black-tailed Gull Larus crassirostris.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i> and Black-tailed Gull <i>Larus crassirostris</i>', 'Output/thumbnails/38 Slaty-backed Gull Larus schistisagus and Black-tailed Gull Larus crassirostris.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Slaty-backed Gulls with a Black-tailed Gull thrown in', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(39, 'japan07birds', '39', 'birds', 'Galleries/Japan07Birds/Output/images/39 Slaty-backed Gull Larus schistisagus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i>', 'Output/thumbnails/39 Slaty-backed Gull Larus schistisagus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Another spread-winged photo of a Slaty-backed Gull', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(40, 'japan07birds', '40', 'birds', 'Galleries/Japan07Birds/Output/images/40 Slaty-backed Gull Larus schistisagus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i>', 'Output/thumbnails/40 Slaty-backed Gull Larus schistisagus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Several Slaty-backed Gulls', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(41, 'japan07birds', '41', 'birds', 'Galleries/Japan07Birds/Output/images/41 Slaty-backed Gull Larus schistisagus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus schistisagus</i>', 'Output/thumbnails/41 Slaty-backed Gull Larus schistisagus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'And more...', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(42, 'japan07birds', '42', 'birds', 'Galleries/Japan07Birds/Output/images/42 Slaty-backed Gull, Black-tailed Gull and Black-headed Gull Larus ichthyaetus.jpg', 600, 450, 'Slaty-backed Gull, Black-tailed Gull, Common Gull and Black-headed Gull', 'Output/thumbnails/42 Slaty-backed Gull, Black-tailed Gull and Black-headed Gull Larus ichthyaetus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Nice combination including Slaty-backed, Black-tailed, Common and Black-headed Gulls', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(43, 'japan07birds', '43', 'birds', 'Galleries/Japan07Birds/Output/images/43 Black-tailed Gull Larus crassirostris.jpg', 600, 450, 'Black-tailed Gull <i>Larus crassirostris</i>', 'Output/thumbnails/43 Black-tailed Gull Larus crassirostris.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Two nice adult Black-tailed Gulls', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(44, 'japan07birds', '44', 'birds', 'Galleries/Japan07Birds/Output/images/44 Slaty-backed Gull Larus Schistisagus and Glaucous Gull Larus hyperboreus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus Schistisagus</i> and Glaucous Gull <i>Larus hyperboreus</i>', 'Output/thumbnails/44 Slaty-backed Gull Larus Schistisagus and Glaucous Gull Larus hyperboreus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Two adult and one first-cycle Slaty-backed Gulls', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(45, 'japan07birds', '45', 'birds', 'Galleries/Japan07Birds/Output/images/45 Slaty-backed Gull Larus Schistisagus and Glaucous Gull Larus hyperboreus.jpg', 600, 450, 'Slaty-backed Gull <i>Larus Schistisagus</i> and Glaucous Gull <i>Larus hyperboreus</i>', 'Output/thumbnails/45 Slaty-backed Gull Larus Schistisagus and Glaucous Gull Larus hyperboreus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Slaty-backed Gulls with a Glaucous Gull thrown in', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(46, 'japan07birds', '46', 'birds', 'Galleries/Japan07Birds/Output/images/46 Glaucous Gull Larus hyperboreus.jpg', 600, 450, 'Glaucous Gull <i>Larus hyperboreus</i>', 'Output/thumbnails/46 Glaucous Gull Larus hyperboreus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Nice adult Glaucous Gull', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(47, 'japan07birds', '47', 'birds', 'Galleries/Japan07Birds/Output/images/47 Glaucous Gull Larus hyperboreus.jpg', 600, 450, 'Glaucous Gull <i>Larus hyperboreus</i>', 'Output/thumbnails/47 Glaucous Gull Larus hyperboreus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Bushels of Glaucous Gulls', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(48, 'japan07birds', '48', 'birds', 'Galleries/Japan07Birds/Output/images/48 Black-headed Gull Larus ridibundus.jpg', 600, 450, 'Black-headed Gull <i>Larus ridibundus</i>', 'Output/thumbnails/48 Black-headed Gull Larus ridibundus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Nice sub-adult Black-headed Gull', 'Spring \'07', 'Mark Eaton', 'Tokyo', '', ''),
				new photo(49, 'japan07birds', '49', 'birds', 'Galleries/Japan07Birds/Output/images/49 Oriental Turtle-Dove Streptopelia orientalis.jpg', 600, 450, 'Oriental Turtle-Dove <i>Streptopelia orientalis</i>', 'Output/thumbnails/49 Oriental Turtle-Dove Streptopelia orientalis.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Fairly common in suitable habitat', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(50, 'japan07birds', '50', 'birds', 'Galleries/Japan07Birds/Output/images/50 Blakiston\'s Fish-Owl Ketupa blakistoni.jpg', 600, 450, 'Blakiston\'s Fish-Owl <i>Ketupa blakistoni</i>', 'Output/thumbnails/50 Blakiston\'s Fish-Owl Ketupa blakistoni.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Hard to believe that I got photos of this special bird with my built-in flash.  The owners of Washi no Yado have created effectively a feeder for the owls and this adult was fishing for food to take back to the nest.  Amazing!', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(51, 'japan07birds', '51', 'birds', 'Galleries/Japan07Birds/Output/images/51 Blakiston\'s Fish-Owl Ketupa blakistoni.jpg', 600, 450, 'Blakiston\'s Fish-Owl <i>Ketupa blakistoni</i>', 'Output/thumbnails/51 Blakiston\'s Fish-Owl Ketupa blakistoni.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Same bird as previous photo', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(52, 'japan07birds', '52', 'birds', 'Galleries/Japan07Birds/Output/images/52 White Wagtail Motacilla alba.jpg', 600, 450, 'White Wagtail <i>Motacilla alba</i>', 'Output/thumbnails/52 White Wagtail Motacilla alba.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Newly lumped with the old Black-backed Wagtail', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', ''),
				new photo(53, 'japan07birds', '53', 'birds', 'Galleries/Japan07Birds/Output/images/53 Japanese Wagtail Motacilla grandis.jpg', 600, 450, 'Japanese Wagtail <i>Motacilla grandis</i>', 'Output/thumbnails/53 Japanese Wagtail Motacilla grandis.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Note the facial pattern of this bird compared to the previous bird', 'Spring \'07', 'Mark Eaton', 'Kamagawa, Kyoto', '', ''),
				new photo(54, 'japan07birds', '54', 'birds', 'Galleries/Japan07Birds/Output/images/54 Brown-eared Bulbul Ixos amaurotis.jpg', 600, 450, 'Brown-eared Bulbul <i>Ixos amaurotis</i>', 'Output/thumbnails/54 Brown-eared Bulbul Ixos amaurotis.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Good looking bird with obnoxious vocalizations', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(55, 'japan07birds', '55', 'birds', 'Galleries/Japan07Birds/Output/images/55 [Common] Stonechat Saxicola torquata.jpg', 600, 450, '[Common] Stonechat <i>Saxicola torquata</i>', 'Output/thumbnails/55 [Common] Stonechat Saxicola torquata.jpg', 132, 99, 0, 'Japan \'07 Birds', 'I had to think about this one for awhile but think the id is correct.  Let me know one way or the other.', 'Spring \'07', 'Mark Eaton', 'Kamagawa, Kyoto', '', ''),
				new photo(56, 'japan07birds', '56', 'birds', 'Galleries/Japan07Birds/Output/images/56 Dusky Thrush Turdus naumanni.jpg', 600, 450, 'Dusky Thrush <i>Turdus naumanni</i>', 'Output/thumbnails/56 Dusky Thrush Turdus naumanni.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Common in parks', 'Spring \'07', 'Mark Eaton', 'Tokyo', '', ''),
				new photo(57, 'japan07birds', '57', 'birds', 'Galleries/Japan07Birds/Output/images/57 Japanese White-eye Zosterops japonicus.jpg', 600, 450, 'Japanese White-eye <i>Zosterops japonicus</i>', 'Output/thumbnails/57 Japanese White-eye Zosterops japonicus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'I had the wrong lens when I happened upon this bird (obviously)', 'Spring \'07', 'Mark Eaton', 'Tokyo', '', ''),
				new photo(58, 'japan07birds', '58', 'birds', 'Galleries/Japan07Birds/Output/images/58 [Eurasian] Tree Sparrow Passer montanus.jpg', 600, 450, '[Eurasian] Tree Sparrow <i>Passer montanus</i>', 'Output/thumbnails/58 [Eurasian] Tree Sparrow Passer montanus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'As common as our House Sparrow', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(59, 'japan07birds', '59', 'birds', 'Galleries/Japan07Birds/Output/images/59 White-cheeked Starling Sturnus cineraceus.jpg', 600, 450, 'White-cheeked Starling <i>Sturnus cineraceus</i>', 'Output/thumbnails/59 White-cheeked Starling Sturnus cineraceus.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Prettier and not as noxious as our (introduced) Starling', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(60, 'japan07birds', '60', 'birds', 'Galleries/Japan07Birds/Output/images/60 Large-billed [Jungle] Crow Corvus macrorhynchos.jpg', 600, 450, 'Large-billed [Jungle] Crow <i>Corvus macrorhynchos</i>', 'Output/thumbnails/60 Large-billed [Jungle] Crow Corvus macrorhynchos.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Surely the larges bill for any crow species on the planet', 'Spring \'07', 'Mark Eaton', 'Yatsu Higata Wetlands, Tokyo', '', ''),
				new photo(61, 'japan07birds', '61', 'birds', 'Galleries/Japan07Birds/Output/images/61 Red Fox Vulpes vulpes.jpg', 600, 450, 'Red Fox <i>Vulpes vulpes</i>', 'Output/thumbnails/61 Red Fox Vulpes vulpes.jpg', 132, 99, 0, 'Japan \'07 Birds', 'Simply magical!', 'Spring \'07', 'Mark Eaton', 'Shiretoko Peninsula, Hokkaido', '', '')
		);
	} else if (gallery_id == 'mono08') {
		photos = new Array(new photo(8672, 'mono08', '8672', 'birds', 'Galleries/Mono08/Output/images/81 Common Merganser Mergus merganser IMG_8672.jpg', 600, 450, 'Common Merganser <i>Mergus merganser</i>', 'Output/thumbnails/81 Common Merganser Mergus merganser IMG_8672.jpg', 132, 99, 0, 'Mono \'08 Birds', 'One of 4+ birds on Tioga Lake in Yosemite', 'Spring \'08', 'Mark Eaton', 'Tioga Lake, Yosemite, CA', '', ''),
				new photo(8152, 'mono08', '8152', 'birds', 'Galleries/Mono08/Output/images/463 American Avocet Recurvirostra americana IMG_8152.jpg', 600, 450, 'American Avocet <i>Recurvirostra americana</i>', 'Output/thumbnails/463 American Avocet Recurvirostra americana IMG_8152.jpg', 132, 99, 0, 'Mono \'08 Birds', 'These 4 birds put on a lovely little dance for me', 'Spring \'08', 'Mark Eaton', 'End of boardwalk, Mono County Park, Mono County, CA', '', ''),
				new photo(8148, 'mono08', '8148', 'birds', 'Galleries/Mono08/Output/images/532 Wilson\'s Phalarope Phalaropus tricolor IMG_8148.jpg', 600, 450, 'Wilson\'s Phalarope <i>Phalaropus tricolor</i>', 'Output/thumbnails/532 Wilson\'s Phalarope Phalaropus tricolor IMG_8148.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8262, 'mono08', '8262', 'birds', 'Galleries/Mono08/Output/images/552 California Gull Larus californicus IMG_8262.jpg', 600, 450, 'California Gull <i>Larus californicus</i>', 'Output/thumbnails/552 California Gull Larus californicus IMG_8262.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Walking in the street in downtown Lee Vining', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8399, 'mono08', '8399', 'birds', 'Galleries/Mono08/Output/images/822 Common Nighthawk Chordeiles minor IMG_8399.jpg', 600, 450, 'Common Nighthawk <i>Chordeiles minor</i>', 'Output/thumbnails/822 Common Nighthawk Chordeiles minor IMG_8399.jpg', 132, 99, 0, 'Mono \'08 Birds', 'I found these two birds on a less used road early in the morning at South Tufa.  They let me get amazingly close before they flushed and then put on quite a show for me.', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8400, 'mono08', '8400', 'birds', 'Galleries/Mono08/Output/images/822 Common Nighthawk Chordeiles minor IMG_8400.jpg', 600, 450, 'Common Nighthawk <i>Chordeiles minor</i>', 'Output/thumbnails/822 Common Nighthawk Chordeiles minor IMG_8400.jpg', 132, 99, 0, 'Mono \'08 Birds', 'I found these two birds on a less used road early in the morning at South Tufa.  They let me get amazingly close before they flushed and then put on quite a show for me.', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8412, 'mono08', '8412', 'birds', 'Galleries/Mono08/Output/images/822 Common Nighthawk Chordeiles minor IMG_8412.jpg', 600, 450, 'Common Nighthawk <i>Chordeiles minor</i>', 'Output/thumbnails/822 Common Nighthawk Chordeiles minor IMG_8412.jpg', 132, 99, 0, 'Mono \'08 Birds', 'I found these two birds on a less used road early in the morning at South Tufa.  They let me get amazingly close before they flushed and then put on quite a show for me.', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8413, 'mono08', '8413', 'birds', 'Galleries/Mono08/Output/images/822 Common Nighthawk Chordeiles minor IMG_8413.jpg', 600, 450, 'Common Nighthawk <i>Chordeiles minor</i>', 'Output/thumbnails/822 Common Nighthawk Chordeiles minor IMG_8413.jpg', 132, 99, 0, 'Mono \'08 Birds', 'I found these two birds on a less used road early in the morning at South Tufa.  They let me get amazingly close before they flushed and then put on quite a show for me.', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8436, 'mono08', '8436', 'birds', 'Galleries/Mono08/Output/images/994 Calliope Hummingbird Stellula calliope IMG_8436.jpg', 600, 450, 'Calliope Hummingbird <i>Stellula calliope</i> (female)', 'Output/thumbnails/994 Calliope Hummingbird Stellula calliope IMG_8436.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Wildrose Canyon, Mono County, CA', '', ''),
				new photo(8251, 'mono08', '8251', 'birds', 'Galleries/Mono08/Output/images/1106 Red-breasted Sapsucker Sphyrapicus ruber IMG_8251.jpg', 600, 450, 'Red-breasted Sapsucker <i>Sphyrapicus ruber</i>', 'Output/thumbnails/1106 Red-breasted Sapsucker Sphyrapicus ruber IMG_8251.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Lundy Canyon, Mono County, CA', '', ''),
				new photo(8524, 'mono08', '8524', 'birds', 'Galleries/Mono08/Output/images/1112 Hairy Woodpecker Picoides villosus IMG_8524.jpg', 600, 450, 'Hairy Woodpecker <i>Picoides villosus</i>', 'Output/thumbnails/1112 Hairy Woodpecker Picoides villosus IMG_8524.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8307, 'mono08', '8307', 'birds', 'Galleries/Mono08/Output/images/1294 Western Wood-Pewee Contopus sordidulus IMG_8307.jpg', 600, 450, 'Western Wood-Pewee <i>Contopus sordidulus</i>', 'Output/thumbnails/1294 Western Wood-Pewee Contopus sordidulus IMG_8307.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8379, 'mono08', '8379', 'birds', 'Galleries/Mono08/Output/images/1308 Gray Flycatcher Empidonax wrightii IMG_8379.jpg', 600, 450, 'Gray Flycatcher <i>Empidonax wrightii</i>', 'Output/thumbnails/1308 Gray Flycatcher Empidonax wrightii IMG_8379.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Needed to be coaxed out for this photo', 'Spring \'08', 'Mark Eaton', 'South Tufa, Mono County, CA', '', ''),
				new photo(8531, 'mono08', '8531', 'birds', 'Galleries/Mono08/Output/images/1309 Dusky Flycatcher Empidonax oberholseri IMG_8531.jpg', 600, 450, 'Dusky Flycatcher <i>Empidonax oberholseri</i>', 'Output/thumbnails/1309 Dusky Flycatcher Empidonax oberholseri IMG_8531.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8496, 'mono08', '8496', 'birds', 'Galleries/Mono08/Output/images/1440 Warbling Vireo Vireo gilvus IMG_8496.jpg', 600, 450, 'Warbling Vireo <i>Vireo gilvus</i>', 'Output/thumbnails/1440 Warbling Vireo Vireo gilvus IMG_8496.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Wildrose Canyon, Mono County, CA', '', ''),
				new photo(8123, 'mono08', '8123', 'birds', 'Galleries/Mono08/Output/images/1457 Steller\'s Jay Cyanocitta stelleri IMG_8123.jpg', 600, 450, 'Steller\'s Jay <i>Cyanocitta stelleri</i>', 'Output/thumbnails/1457 Steller\'s Jay Cyanocitta stelleri IMG_8123.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Feeder shot', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8357, 'mono08', '8357', 'birds', 'Galleries/Mono08/Output/images/1480 Clark\'s Nutcracker Nucifraga columbiana IMG_8357.jpg', 600, 450, 'Clark\'s Nutcracker <i>Nucifraga columbiana</i>', 'Output/thumbnails/1480 Clark\'s Nutcracker Nucifraga columbiana IMG_8357.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Not hard to find but hard to get close enough for a photo, at least for me.  Maybe I should try feeding them.', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8189, 'mono08', '8189', 'birds', 'Galleries/Mono08/Output/images/1513 Violet-green Swallow Tachycineta thalassina  IMG_8189.jpg', 600, 450, 'Violet-green Swallow <i>Tachycineta thalassina</i>', 'Output/thumbnails/1513 Violet-green Swallow Tachycineta thalassina  IMG_8189.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Ubiquitous at Mono Lake', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8131, 'mono08', '8131', 'birds', 'Galleries/Mono08/Output/images/1513 Violet-green Swallow Tachycineta thalassina IMG_8131.jpg', 600, 450, 'Violet-green Swallow <i>Tachycineta thalassina</i>', 'Output/thumbnails/1513 Violet-green Swallow Tachycineta thalassina IMG_8131.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Ubiquitous at Mono Lake', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8134, 'mono08', '8134', 'birds', 'Galleries/Mono08/Output/images/1513 Violet-green Swallow Tachycineta thalassina IMG_8134.jpg', 600, 450, 'Violet-green Swallow <i>Tachycineta thalassina</i>', 'Output/thumbnails/1513 Violet-green Swallow Tachycineta thalassina IMG_8134.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Ubiquitous at Mono Lake', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8181, 'mono08', '8181', 'birds', 'Galleries/Mono08/Output/images/1513 Violet-green Swallow Tachycineta thalassina IMG_8181.jpg', 600, 450, 'Violet-green Swallow <i>Tachycineta thalassina</i>', 'Output/thumbnails/1513 Violet-green Swallow Tachycineta thalassina IMG_8181.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Ubiquitous at Mono Lake', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8331, 'mono08', '8331', 'birds', 'Galleries/Mono08/Output/images/1528 Mountain Chickadee Poecile gambeli IMG_8331.jpg', 600, 450, 'Mountain Chickadee <i>Poecile gambeli</i>', 'Output/thumbnails/1528 Mountain Chickadee Poecile gambeli IMG_8331.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Frolicking close enough for this nice photo', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8332, 'mono08', '8332', 'birds', 'Galleries/Mono08/Output/images/1528 Mountain Chickadee Poecile gambeli IMG_8332.jpg', 600, 450, 'Mountain Chickadee <i>Poecile gambeli</i>', 'Output/thumbnails/1528 Mountain Chickadee Poecile gambeli IMG_8332.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Frolicking close enough for this nice photo', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8204, 'mono08', '8204', 'birds', 'Galleries/Mono08/Output/images/1585 House Wren Troglodytes aedon IMG_8204.jpg', 600, 450, 'House Wren <i>Troglodytes aedon</i>', 'Output/thumbnails/1585 House Wren Troglodytes aedon IMG_8204.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Also ubiquitous', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8453, 'mono08', '8453', 'birds', 'Galleries/Mono08/Output/images/1585 House Wren Troglodytes aedon IMG_8453.jpg', 600, 450, 'House Wren <i>Troglodytes aedon</i>', 'Output/thumbnails/1585 House Wren Troglodytes aedon IMG_8453.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Also ubiquitous', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8476, 'mono08', '8476', 'birds', 'Galleries/Mono08/Output/images/1649 Mountain Bluebird Sialia currucoides IMG_8476.jpg', 600, 450, 'Mountain Bluebird <i>Sialia currucoides</i> (male)', 'Output/thumbnails/1649 Mountain Bluebird Sialia currucoides IMG_8476.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Lovely photo of this male', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8480, 'mono08', '8480', 'birds', 'Galleries/Mono08/Output/images/1649 Mountain Bluebird Sialia currucoides IMG_8480.jpg', 600, 450, 'Mountain Bluebird <i>Sialia currucoides</i> (male)', 'Output/thumbnails/1649 Mountain Bluebird Sialia currucoides IMG_8480.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Lovely photo of this male', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8693, 'mono08', '8693', 'birds', 'Galleries/Mono08/Output/images/1650 Townsend\'s Solitaire Myadestes townsendi IMG_8693.jpg', 600, 450, 'Townsend\'s Solitaire <i>Myadestes townsendi</i>', 'Output/thumbnails/1650 Townsend\'s Solitaire Myadestes townsendi IMG_8693.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Fair photo of this bird in harsh light', 'Spring \'08', 'Mark Eaton', 'Tuolomne County, CA', '', ''),
				new photo(8425, 'mono08', '8425', 'birds', 'Galleries/Mono08/Output/images/1713 Sage Thrasher Oreoscoptes montanus IMG_8425.jpg', 600, 450, 'Sage Thrasher <i>Oreoscoptes montanus</i>', 'Output/thumbnails/1713 Sage Thrasher Oreoscoptes montanus IMG_8425.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Also needed to be coaxed out', 'Spring \'08', 'Mark Eaton', 'South Tufa, Mono County, CA', '', ''),
				new photo(8166, 'mono08', '8166', 'birds', 'Galleries/Mono08/Output/images/1775 Yellow Warbler Dendroica petechia IMG_8166.jpg', 600, 450, 'Yellow Warbler <i>Dendroica petechia</i>', 'Output/thumbnails/1775 Yellow Warbler Dendroica petechia IMG_8166.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Nice light for this photo', 'Spring \'08', 'Mark Eaton', 'Mono County Park, Mono County, CA', '', ''),
				new photo(8168, 'mono08', '8168', 'birds', 'Galleries/Mono08/Output/images/1775 Yellow Warbler Dendroica petechia IMG_8168.jpg', 600, 450, 'Yellow Warbler <i>Dendroica petechia</i>', 'Output/thumbnails/1775 Yellow Warbler Dendroica petechia IMG_8168.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Nice light for this photo', 'Spring \'08', 'Mark Eaton', 'Mono County Park, Mono County, CA', '', ''),
				new photo(8469, 'mono08', '8469', 'birds', 'Galleries/Mono08/Output/images/1780 Yellow-rumped Warbler Dendroica coronata IMG_8469.jpg', 600, 450, 'Yellow-rumped [Audubon\'s] Warbler <i>Dendroica coronata</i>', 'Output/thumbnails/1780 Yellow-rumped Warbler Dendroica coronata IMG_8469.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8510, 'mono08', '8510', 'birds', 'Galleries/Mono08/Output/images/1780 Yellow-rumped Warbler Dendroica coronata IMG_8510.jpg', 600, 450, 'Yellow-rumped [Audubon\'s] Warbler <i>Dendroica coronata</i>', 'Output/thumbnails/1780 Yellow-rumped Warbler Dendroica coronata IMG_8510.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8135, 'mono08', '8135', 'birds', 'Galleries/Mono08/Output/images/1831 Wilson\'s Warbler Wilsonia pusilla IMG_8135.jpg', 600, 450, 'Wilson\'s Warbler <i>Wilsonia pusilla</i>', 'Output/thumbnails/1831 Wilson\'s Warbler Wilsonia pusilla IMG_8135.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8229, 'mono08', '8229', 'birds', 'Galleries/Mono08/Output/images/1888 Western Tanager Piranga ludoviciana IMG_8229.jpg', 600, 450, 'Western Tanager <i>Piranga ludoviciana</i>', 'Output/thumbnails/1888 Western Tanager Piranga ludoviciana IMG_8229.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8320, 'mono08', '8320', 'birds', 'Galleries/Mono08/Output/images/1888 Western Tanager Piranga ludoviciana IMG_8320.jpg', 600, 450, 'Western Tanager <i>Piranga ludoviciana</i>', 'Output/thumbnails/1888 Western Tanager Piranga ludoviciana IMG_8320.jpg', 132, 99, 0, 'Mono \'08 Birds', '', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8369, 'mono08', '8369', 'birds', 'Galleries/Mono08/Output/images/1972 Green-tailed Towhee Pipilo chlorurus IMG_8369.jpg', 600, 450, 'Green-tailed Towhee <i>Pipilo chlorurus</i>', 'Output/thumbnails/1972 Green-tailed Towhee Pipilo chlorurus IMG_8369.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Surprisingly hard to find on this trip', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8194, 'mono08', '8194', 'birds', 'Galleries/Mono08/Output/images/1974 Spotted Towhee Pipilo maculatus IMG_8194.jpg', 600, 450, 'Spotted Towhee <i>Pipilo maculatus</i>', 'Output/thumbnails/1974 Spotted Towhee Pipilo maculatus IMG_8194.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Singing at Mono County Park', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8291, 'mono08', '8291', 'birds', 'Galleries/Mono08/Output/images/2001 Vesper Sparrow Pooecetes gramineus IMG_8291.jpg', 600, 450, 'Vesper Sparrow <i>Pooecetes gramineus</i>', 'Output/thumbnails/2001 Vesper Sparrow Pooecetes gramineus IMG_8291.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Suprisingly easy to find on this trip', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8297, 'mono08', '8297', 'birds', 'Galleries/Mono08/Output/images/2001 Vesper Sparrow Pooecetes gramineus IMG_8297.jpg', 600, 450, 'Vesper Sparrow <i>Pooecetes gramineus</i>', 'Output/thumbnails/2001 Vesper Sparrow Pooecetes gramineus IMG_8297.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Surprisingly easy to find on this trip', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8080, 'mono08', '8080', 'birds', 'Galleries/Mono08/Output/images/2056 Black-headed Grosbeak Pheucticus melanocephalus IMG_8080.jpg', 600, 450, 'Black-headed Grosbeak <i>Pheucticus melanocephalus</i>', 'Output/thumbnails/2056 Black-headed Grosbeak Pheucticus melanocephalus IMG_8080.jpg', 132, 99, 0, 'Mono \'08 Birds', 'At the motel in Lee Vining', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8098, 'mono08', '8098', 'birds', 'Galleries/Mono08/Output/images/2056 Black-headed Grosbeak Pheucticus melanocephalus IMG_8098.jpg', 600, 450, 'Black-headed Grosbeak <i>Pheucticus melanocephalus</i>', 'Output/thumbnails/2056 Black-headed Grosbeak Pheucticus melanocephalus IMG_8098.jpg', 132, 99, 0, 'Mono \'08 Birds', 'At the motel in Lee Vining', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8120, 'mono08', '8120', 'birds', 'Galleries/Mono08/Output/images/2056 Black-headed Grosbeak Pheucticus melanocephalus IMG_8120.jpg', 600, 450, 'Black-headed Grosbeak <i>Pheucticus melanocephalus</i>', 'Output/thumbnails/2056 Black-headed Grosbeak Pheucticus melanocephalus IMG_8120.jpg', 132, 99, 0, 'Mono \'08 Birds', 'At the motel in Lee Vining', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8124, 'mono08', '8124', 'birds', 'Galleries/Mono08/Output/images/2056 Black-headed Grosbeak Pheucticus melanocephalus IMG_8124.jpg', 600, 450, 'Black-headed Grosbeak <i>Pheucticus melanocephalus</i>', 'Output/thumbnails/2056 Black-headed Grosbeak Pheucticus melanocephalus IMG_8124.jpg', 132, 99, 0, 'Mono \'08 Birds', 'At the motel in Lee Vining', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8212, 'mono08', '8212', 'birds', 'Galleries/Mono08/Output/images/2078 Yellow-headed Blackbird Xanthocephalus xanthocephalus IMG_8212.jpg', 600, 450, 'Yellow-headed Blackbird <i>Xanthocephalus xanthocephalus</i>', 'Output/thumbnails/2078 Yellow-headed Blackbird Xanthocephalus xanthocephalus IMG_8212.jpg', 132, 99, 0, 'Mono \'08 Birds', 'DeChambeau Ponds', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8225, 'mono08', '8225', 'birds', 'Galleries/Mono08/Output/images/2078 Yellow-headed Blackbird Xanthocephalus xanthocephalus IMG_8225.jpg', 600, 450, 'Yellow-headed Blackbird <i>Xanthocephalus xanthocephalus</i>', 'Output/thumbnails/2078 Yellow-headed Blackbird Xanthocephalus xanthocephalus IMG_8225.jpg', 132, 99, 0, 'Mono \'08 Birds', 'DeChambeau Ponds', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8428, 'mono08', '8428', 'birds', 'Galleries/Mono08/Output/images/2085 Great-tailed Grackle Quiscalus mexicanus IMG_8428.jpg', 600, 450, 'Great-tailed Grackle <i>Quiscalus mexicanus</i>', 'Output/thumbnails/2085 Great-tailed Grackle Quiscalus mexicanus IMG_8428.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Benton Hot Springs', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8618, 'mono08', '8618', 'birds', 'Galleries/Mono08/Output/images/2147 Gray-crowned Rosy-Finch Leucosticte tephrocotis IMG_8618.jpg', 600, 450, 'Gray-crowned Rosy-Finch <i>Leucosticte tephrocotis</i>', 'Output/thumbnails/2147 Gray-crowned Rosy-Finch Leucosticte tephrocotis IMG_8618.jpg', 132, 99, 0, 'Mono \'08 Birds', 'I found two likely breeders just east of Yosemite.  One pair was at the Green Bridge and the other was at the spillway at Ellery Lake.  Both likely had nests on the cliffs on the north side of the road, but the pair at Ellery Lake would fly across the spillway and feed on the scree immediately west of the north end of the spillway.', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8090, 'mono08', '8090', 'birds', 'Galleries/Mono08/Output/images/2153 Cassin\'s Finch Carpodacus cassinii IMG_8090.jpg', 600, 450, 'Cassin\'s Finch <i>Carpodacus cassinii</i>', 'Output/thumbnails/2153 Cassin\'s Finch Carpodacus cassinii IMG_8090.jpg', 132, 99, 0, 'Mono \'08 Birds', 'At the motel in Lee Vining', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8127, 'mono08', '8127', 'birds', 'Galleries/Mono08/Output/images/2153 Cassin\'s Finch Carpodacus cassinii IMG_8127.jpg', 600, 450, 'Cassin\'s Finch <i>Carpodacus cassinii</i>', 'Output/thumbnails/2153 Cassin\'s Finch Carpodacus cassinii IMG_8127.jpg', 132, 99, 0, 'Mono \'08 Birds', 'At the motel in Lee Vining', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8280, 'mono08', '8280', 'birds', 'Galleries/Mono08/Output/images/2153 Cassin\'s Finch Carpodacus cassinii IMG_8280.jpg', 600, 450, 'Cassin\'s Finch <i>Carpodacus cassinii</i>', 'Output/thumbnails/2153 Cassin\'s Finch Carpodacus cassinii IMG_8280.jpg', 132, 99, 0, 'Mono \'08 Birds', 'At the motel in Lee Vining', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', ''),
				new photo(8068, 'mono08', '8068', 'birds', 'Galleries/Mono08/Output/images/9999 Yellow-bellied Marmot Marmota flaviventris IMG_8068.jpg', 600, 450, 'Yellow-bellied Marmot <i>Marmota flaviventris</i>', 'Output/thumbnails/9999 Yellow-bellied Marmot Marmota flaviventris IMG_8068.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Posing at the edge of Tioga Road', 'Spring \'08', 'Mark Eaton', 'Tioga Road, Yosemite, Tuolomne County, CA', '', ''),
				new photo(8551, 'mono08', '8551', 'birds', 'Galleries/Mono08/Output/images/9999 Yellow-bellied Marmot Marmota flaviventris IMG_8551.jpg', 600, 450, 'Yellow-bellied Marmot <i>Marmota flaviventris</i>', 'Output/thumbnails/9999 Yellow-bellied Marmot Marmota flaviventris IMG_8551.jpg', 132, 99, 0, 'Mono \'08 Birds', 'Mostly ignoring me at the Green Bridge', 'Spring \'08', 'Mark Eaton', 'Mono County, CA', '', '')
		);
	} else if (gallery_id == '6.29.08farallones') {
		photos = new Array(new photo(8949, '6.29.08farallones', '8949', 'birds', 'Galleries/6.29.08Farallones/Output/images/206 Sooty Shearwater Puffinus griseus IMG_8949.jpg', 600, 450, 'Sooty Shearwater <i>Puffinus griseus</i>', 'Output/thumbnails/206 Sooty Shearwater Puffinus griseus IMG_8949.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'One of very few tubenoses on this trip', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8846, '6.29.08farallones', '8846', 'birds', 'Galleries/6.29.08Farallones/Output/images/239 Brown Booby Sula leucogaster IMG_8846.jpg', 600, 450, 'Brown Booby <i>Sula leucogaster</i>', 'Output/thumbnails/239 Brown Booby Sula leucogaster IMG_8846.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Sitting in exactly the same location as the bird I saw the previous year', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8764, '6.29.08farallones', '8764', 'birds', 'Galleries/6.29.08Farallones/Output/images/246 Brandt\'s Cormorant Phalacrocorax penicillatus IMG_8764.jpg', 600, 450, 'Brandt\'s Cormorant <i>Phalacrocorax penicillatus</i>', 'Output/thumbnails/246 Brandt\'s Cormorant Phalacrocorax penicillatus IMG_8764.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', '', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8767, '6.29.08farallones', '8767', 'birds', 'Galleries/6.29.08Farallones/Output/images/246 Brandt\'s Cormorant Phalacrocorax penicillatus IMG_8767.jpg', 600, 450, 'Brandt\'s Cormorant <i>Phalacrocorax penicillatus</i>', 'Output/thumbnails/246 Brandt\'s Cormorant Phalacrocorax penicillatus IMG_8767.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', '', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8891, '6.29.08farallones', '8891', 'birds', 'Galleries/6.29.08Farallones/Output/images/251 Pelagic Cormorant Phalacrocorax pelagicus IMG_8891.jpg', 600, 450, 'Pelagic Cormorant <i>Phalacrocorax pelagicus</i>', 'Output/thumbnails/251 Pelagic Cormorant Phalacrocorax pelagicus IMG_8891.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Showing the white flank patches characteristic of breeding plumage', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8778, '6.29.08farallones', '8778', 'birds', 'Galleries/6.29.08Farallones/Output/images/607 Common Murre Uria aalge IMG_8778.jpg', 600, 450, 'Common Murre <i>Uria aalge</i>', 'Output/thumbnails/607 Common Murre Uria aalge IMG_8778.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'A good breeding year for murres', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8857, '6.29.08farallones', '8857', 'birds', 'Galleries/6.29.08Farallones/Output/images/607 Common Murre Uria aalge IMG_8857.jpg', 600, 450, 'Common Murre <i>Uria aalge</i>', 'Output/thumbnails/607 Common Murre Uria aalge IMG_8857.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Nice flight shot showing the underwing', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8917, '6.29.08farallones', '8917', 'birds', 'Galleries/6.29.08Farallones/Output/images/607 Common Murre Uria aalge IMG_8917.jpg', 600, 450, 'Common Murre <i>Uria aalge</i>', 'Output/thumbnails/607 Common Murre Uria aalge IMG_8917.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'A good breeding year for murres', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8995, '6.29.08farallones', '8995', 'birds', 'Galleries/6.29.08Farallones/Output/images/607 Common Murre Uria aalge IMG_8995.jpg', 600, 450, 'Common Murre <i>Uria aalge</i>', 'Output/thumbnails/607 Common Murre Uria aalge IMG_8995.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'A good breeding year for murres', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8864, '6.29.08farallones', '8864', 'birds', 'Galleries/6.29.08Farallones/Output/images/612 Pigeon Guillemot Cepphus columba IMG_8864.jpg', 600, 450, 'Pigeon Guillemot <i>Cepphus columba</i>', 'Output/thumbnails/612 Pigeon Guillemot Cepphus columba IMG_8864.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Note the white wing patch on this bird.  Is this a juvenile?', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8872, '6.29.08farallones', '8872', 'birds', 'Galleries/6.29.08Farallones/Output/images/612 Pigeon Guillemot Cepphus columba IMG_8872.jpg', 600, 450, 'Pigeon Guillemot <i>Cepphus columba</i>', 'Output/thumbnails/612 Pigeon Guillemot Cepphus columba IMG_8872.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Typical alternate pluage', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8905, '6.29.08farallones', '8905', 'birds', 'Galleries/6.29.08Farallones/Output/images/619 Cassin\'s Auklet Ptychoramphus aleuticus IMG_8905.jpg', 600, 450, 'Cassin\'s Auklet <i>Ptychoramphus aleuticus</i>', 'Output/thumbnails/619 Cassin\'s Auklet Ptychoramphus aleuticus IMG_8905.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Nice underwing photo of a bird taking off', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8907, '6.29.08farallones', '8907', 'birds', 'Galleries/6.29.08Farallones/Output/images/619 Cassin\'s Auklet Ptychoramphus aleuticus IMG_8907.jpg', 600, 450, 'Cassin\'s Auklet <i>Ptychoramphus aleuticus</i>', 'Output/thumbnails/619 Cassin\'s Auklet Ptychoramphus aleuticus IMG_8907.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Same two birds as previous photo', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8912, '6.29.08farallones', '8912', 'birds', 'Galleries/6.29.08Farallones/Output/images/619 Cassin\'s Auklet Ptychoramphus aleuticus IMG_8912.jpg', 600, 450, 'Cassin\'s Auklet <i>Ptychoramphus aleuticus</i>', 'Output/thumbnails/619 Cassin\'s Auklet Ptychoramphus aleuticus IMG_8912.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Nice detail of a bird sitting on the water', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8886, '6.29.08farallones', '8886', 'birds', 'Galleries/6.29.08Farallones/Output/images/624 Rhinoceros Auklet Cerorhinca monocerata IMG_8886.jpg', 600, 450, 'Rhinoceros Auklet <i>Cerorhinca monocerata</i>', 'Output/thumbnails/624 Rhinoceros Auklet Cerorhinca monocerata IMG_8886.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Showing the horn characteristic of breeding plumage', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8933, '6.29.08farallones', '8933', 'birds', 'Galleries/6.29.08Farallones/Output/images/626 Horned Puffin Fratercula corniculata and 624 Rhinoceros Auklet Cerorhinca monocerata IMG_8933.jpg', 600, 450, 'Horned Puffin <i>Fratercula corniculata</i> and Rhinoceros Auklet <i>Cerorhinca monocerata</i>', 'Output/thumbnails/626 Horned Puffin Fratercula corniculata and 624 Rhinoceros Auklet Cerorhinca monocerata IMG_8933.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'This bird was seen and originally identified as a juvenile puffin.  I got on the bird and immediately realized that it was an immature Horned Puffin!', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8940, '6.29.08farallones', '8940', 'birds', 'Galleries/6.29.08Farallones/Output/images/626 Horned Puffin Fratercula corniculata and 624 Rhinoceros Auklet Cerorhinca monocerata IMG_8940.jpg', 600, 450, 'Horned Puffin <i>Fratercula corniculata</i> and Rhinoceros Auklet <i>Cerorhinca monocerata</i>', 'Output/thumbnails/626 Horned Puffin Fratercula corniculata and 624 Rhinoceros Auklet Cerorhinca monocerata IMG_8940.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'This bird was seen and originally identified as a juvenile puffin.  I got on the bird and immediately realized that it was an immature Horned Puffin!', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8944, '6.29.08farallones', '8944', 'birds', 'Galleries/6.29.08Farallones/Output/images/626 Horned Puffin Fratercula corniculata and 624 Rhinoceros Auklet Cerorhinca monocerata IMG_8944.jpg', 600, 450, 'Horned Puffin <i>Fratercula corniculata</i> and Rhinoceros Auklet <i>Cerorhinca monocerata</i>', 'Output/thumbnails/626 Horned Puffin Fratercula corniculata and 624 Rhinoceros Auklet Cerorhinca monocerata IMG_8944.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'This bird was seen and originally identified as a juvenile puffin.  I got on the bird and immediately realized that it was an immature Horned Puffin!', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8831, '6.29.08farallones', '8831', 'birds', 'Galleries/6.29.08Farallones/Output/images/627 Tufted Puffin Fratercula cirrhata IMG_8831.jpg', 600, 450, 'Tufted Puffin <i>Fratercula cirrhata</i>', 'Output/thumbnails/627 Tufted Puffin Fratercula cirrhata IMG_8831.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'What a poser!', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8979, '6.29.08farallones', '8979', 'birds', 'Galleries/6.29.08Farallones/Output/images/11001 Steller\'s sea lion IMG_8979.jpg', 600, 450, 'Steller\'s sea lion', 'Output/thumbnails/11001 Steller\'s sea lion IMG_8979.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', '', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8991, '6.29.08farallones', '8991', 'birds', 'Galleries/6.29.08Farallones/Output/images/11001 Steller\'s sea lion IMG_8991.jpg', 600, 450, 'Steller\'s sea lion', 'Output/thumbnails/11001 Steller\'s sea lion IMG_8991.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', '', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8992, '6.29.08farallones', '8992', 'birds', 'Galleries/6.29.08Farallones/Output/images/11001 Steller\'s sea lion IMG_8992.jpg', 600, 450, 'Steller\'s sea lion', 'Output/thumbnails/11001 Steller\'s sea lion IMG_8992.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', '', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8997, '6.29.08farallones', '8997', 'birds', 'Galleries/6.29.08Farallones/Output/images/100010 Humpback whale IMG_8997.jpg', 600, 450, 'Humpback whale', 'Output/thumbnails/100010 Humpback whale IMG_8997.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Nice sequence shot showing the whale diving', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(9001, '6.29.08farallones', '9001', 'birds', 'Galleries/6.29.08Farallones/Output/images/100010 Humpback whale IMG_9001.jpg', 600, 450, 'Humpback whale', 'Output/thumbnails/100010 Humpback whale IMG_9001.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Second shot of sequence', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(9003, '6.29.08farallones', '9003', 'birds', 'Galleries/6.29.08Farallones/Output/images/100010 Humpback whale IMG_9003.jpg', 600, 450, 'Humpback whale', 'Output/thumbnails/100010 Humpback whale IMG_9003.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Last shot of sequence', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8801, '6.29.08farallones', '8801', 'birds', 'Galleries/6.29.08Farallones/Output/images/100059 Risso\'s dolphin IMG_8801.jpg', 600, 450, 'Risso\'s dolphin', 'Output/thumbnails/100059 Risso\'s dolphin IMG_8801.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Pleasant companions for much of the trip', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8955, '6.29.08farallones', '8955', 'birds', 'Galleries/6.29.08Farallones/Output/images/100059 Risso\'s dolphin IMG_8955.jpg', 600, 450, 'Risso\'s dolphin', 'Output/thumbnails/100059 Risso\'s dolphin IMG_8955.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Pleasant companions for much of the trip', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8963, '6.29.08farallones', '8963', 'birds', 'Galleries/6.29.08Farallones/Output/images/100059 Risso\'s dolphin IMG_8963.jpg', 600, 450, 'Risso\'s dolphin', 'Output/thumbnails/100059 Risso\'s dolphin IMG_8963.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Pleasant companions for much of the trip', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8970, '6.29.08farallones', '8970', 'birds', 'Galleries/6.29.08Farallones/Output/images/100059 Risso\'s dolphin IMG_8970.jpg', 600, 450, 'Risso\'s dolphin', 'Output/thumbnails/100059 Risso\'s dolphin IMG_8970.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Pleasant companions for much of the trip', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', ''),
				new photo(8974, '6.29.08farallones', '8974', 'birds', 'Galleries/6.29.08Farallones/Output/images/100059 Risso\'s dolphin IMG_8974.jpg', 600, 450, 'Risso\'s dolphin', 'Output/thumbnails/100059 Risso\'s dolphin IMG_8974.jpg', 132, 99, 0, '6.29.08 Farallones, San Francisco', 'Pleasant companions for much of the trip', 'Summer \'08', 'Mark Eaton', 'Nearshore California', '', '')
		);
	} else if (gallery_id == 'yuba08') {
		photos = new Array(new photo(9217, 'yuba08', '9217', 'birds', 'Galleries/Yuba08/Output/images/243 American White Pelican Pelecanus erythrorhynchos IMG_9217.jpg', 600, 450, 'American White Pelican <i>Pelecanus erythrorhynchos</i>', 'Output/thumbnails/243 American White Pelican Pelecanus erythrorhynchos IMG_9217.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Gliding elegantly over the historic 1903 bridge on Marble Hot Springs Road', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9191, 'yuba08', '9191', 'birds', 'Galleries/Yuba08/Output/images/419 American Coot Fulica americana IMG_9191.jpg', 600, 450, 'American Coot <i>Fulica americana</i>', 'Output/thumbnails/419 American Coot Fulica americana IMG_9191.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Having a bad hair day', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9399, 'yuba08', '9399', 'birds', 'Galleries/Yuba08/Output/images/419 American Coot Fulica americana IMG_9399.jpg', 600, 450, 'American Coot <i>Fulica americana</i>', 'Output/thumbnails/419 American Coot Fulica americana IMG_9399.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Awwwww!', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9413, 'yuba08', '9413', 'birds', 'Galleries/Yuba08/Output/images/429 Sandhill Crane Grus canadensis IMG_9413.jpg', 600, 450, 'Sandhill Crane <i>Grus canadensis</i>', 'Output/thumbnails/429 Sandhill Crane Grus canadensis IMG_9413.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'From the historic 1903 bridge.  Foraging with one juvenile.', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9293, 'yuba08', '9293', 'birds', 'Galleries/Yuba08/Output/images/1112 Hairy Woodpecker Picoides villosus IMG_9293.jpg', 600, 450, 'Hairy Woodpecker <i>Picoides villosus</i>', 'Output/thumbnails/1112 Hairy Woodpecker Picoides villosus IMG_9293.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Gold Lake Road', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9267, 'yuba08', '9267', 'birds', 'Galleries/Yuba08/Output/images/1116 White-headed Woodpecker Picoides albolarvatus IMG_9267.jpg', 600, 450, 'White-headed Woodpecker <i>Picoides albolarvatus</i>', 'Output/thumbnails/1116 White-headed Woodpecker Picoides albolarvatus IMG_9267.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Nesting not far from the Yuba Pass Campground', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9180, 'yuba08', '9180', 'birds', 'Galleries/Yuba08/Output/images/1318 Say\'s Phoebe Sayornis saya IMG_9180.jpg', 600, 450, 'Say\'s Phoebe <i>Sayornis saya</i>', 'Output/thumbnails/1318 Say\'s Phoebe Sayornis saya IMG_9180.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Listed as rare in Sierra Valley on the checklist I have', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9235, 'yuba08', '9235', 'birds', 'Galleries/Yuba08/Output/images/1359 Western Kingbird Tyrannus verticalis IMG_9235.jpg', 600, 450, 'Western Kingbird <i>Tyrannus verticalis</i>', 'Output/thumbnails/1359 Western Kingbird Tyrannus verticalis IMG_9235.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Posing nicely on a side road not far from Dyson Lane', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9390, 'yuba08', '9390', 'birds', 'Galleries/Yuba08/Output/images/1500 Horned Lark Eremophila alpestris IMG_9390.jpg', 600, 450, 'Horned Lark <i>Eremophila alpestris</i>', 'Output/thumbnails/1500 Horned Lark Eremophila alpestris IMG_9390.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'What a poser!', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9212, 'yuba08', '9212', 'birds', 'Galleries/Yuba08/Output/images/1521 Cliff Swallow Petrochelidon pyrrhonota IMG_9212.jpg', 600, 450, 'Cliff Swallow <i>Petrochelidon pyrrhonota</i>', 'Output/thumbnails/1521 Cliff Swallow Petrochelidon pyrrhonota IMG_9212.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'One of thousands along Marble Hot Springs Road', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9036, 'yuba08', '9036', 'birds', 'Galleries/Yuba08/Output/images/1523 Barn Swallow Hirundo rustica IMG_9036.jpg', 600, 450, 'Barn Swallow <i>Hirundo rustica</i>', 'Output/thumbnails/1523 Barn Swallow Hirundo rustica IMG_9036.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Not far from Calpine', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9201, 'yuba08', '9201', 'birds', 'Galleries/Yuba08/Output/images/1523 Barn Swallow Hirundo rustica IMG_9201.jpg', 600, 450, 'Barn Swallow <i>Hirundo rustica</i>', 'Output/thumbnails/1523 Barn Swallow Hirundo rustica IMG_9201.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Young bird on Marble Hot Springs Road', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9205, 'yuba08', '9205', 'birds', 'Galleries/Yuba08/Output/images/1523 Barn Swallow Hirundo rustica IMG_9205.jpg', 600, 450, 'Barn Swallow <i>Hirundo rustica</i>', 'Output/thumbnails/1523 Barn Swallow Hirundo rustica IMG_9205.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Marble Hot Springs Road', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9281, 'yuba08', '9281', 'birds', 'Galleries/Yuba08/Output/images/1544 Red-breasted Nuthatch Sitta canadensis IMG_9281.jpg', 600, 450, 'Red-breasted Nuthatch <i>Sitta canadensis</i>', 'Output/thumbnails/1544 Red-breasted Nuthatch Sitta canadensis IMG_9281.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Fair picture from the Yuba Pass Campground', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9434, 'yuba08', '9434', 'birds', 'Galleries/Yuba08/Output/images/1545 White-breasted Nuthatch Sitta carolinensis IMG_9434.jpg', 600, 450, 'White-breasted Nuthatch <i>Sitta carolinensis</i>', 'Output/thumbnails/1545 White-breasted Nuthatch Sitta carolinensis IMG_9434.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'In Calpine in the parking lot of the lodge', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9243, 'yuba08', '9243', 'birds', 'Galleries/Yuba08/Output/images/1623 Blue-gray Gnatcatcher Polioptila caerulea IMG_9243.jpg', 600, 450, 'Blue-gray Gnatcatcher <i>Polioptila caerulea</i>', 'Output/thumbnails/1623 Blue-gray Gnatcatcher Polioptila caerulea IMG_9243.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Nice photo from Red Rock Canyon in Lassen County', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9272, 'yuba08', '9272', 'birds', 'Galleries/Yuba08/Output/images/1650 Townsend\'s Solitaire Myadestes townsendi IMG_9272.jpg', 600, 450, 'Townsend\'s Solitaire <i>Myadestes townsendi</i>', 'Output/thumbnails/1650 Townsend\'s Solitaire Myadestes townsendi IMG_9272.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Sat on the top of this tree for a good minute or two trying to figure out who was singing', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9296, 'yuba08', '9296', 'birds', 'Galleries/Yuba08/Output/images/1766 Orange-crowned Warbler Vermivora celata IMG_9296.jpg', 600, 450, 'Orange-crowned Warbler <i>Vermivora celata</i>', 'Output/thumbnails/1766 Orange-crowned Warbler Vermivora celata IMG_9296.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Likely a juvenile bird along Gold Lake Road', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9264, 'yuba08', '9264', 'birds', 'Galleries/Yuba08/Output/images/1780 Yellow-rumped Warbler Dendroica coronata IMG_9264.jpg', 600, 450, 'Yellow-rumped Warbler <i>Dendroica coronata</i>', 'Output/thumbnails/1780 Yellow-rumped Warbler Dendroica coronata IMG_9264.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Nice picture of a singing bird at Yuba Pass Campground', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9304, 'yuba08', '9304', 'birds', 'Galleries/Yuba08/Output/images/1831 Wilson\'s Warbler Wilsonia pusilla IMG_9304.jpg', 600, 450, 'Wilson\'s Warbler <i>Wilsonia pusilla</i>', 'Output/thumbnails/1831 Wilson\'s Warbler Wilsonia pusilla IMG_9304.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Gold Lake Road', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9155, 'yuba08', '9155', 'birds', 'Galleries/Yuba08/Output/images/1888 Western Tanager Piranga ludoviciana IMG_9155.jpg', 600, 450, 'Western Tanager <i>Piranga ludoviciana</i>', 'Output/thumbnails/1888 Western Tanager Piranga ludoviciana IMG_9155.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Bringing food back to the nest', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9168, 'yuba08', '9168', 'birds', 'Galleries/Yuba08/Output/images/1888 Western Tanager Piranga ludoviciana IMG_9168.jpg', 600, 450, 'Western Tanager <i>Piranga ludoviciana</i>', 'Output/thumbnails/1888 Western Tanager Piranga ludoviciana IMG_9168.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Bringing food back to the nest', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9024, 'yuba08', '9024', 'birds', 'Galleries/Yuba08/Output/images/1972 Green-tailed Towhee Pipilo chlorurus IMG_9024.jpg', 600, 450, 'Green-tailed Towhee <i>Pipilo chlorurus</i>', 'Output/thumbnails/1972 Green-tailed Towhee Pipilo chlorurus IMG_9024.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Mountain Quail Road', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9106, 'yuba08', '9106', 'birds', 'Galleries/Yuba08/Output/images/1997 Brewer\'s Sparrow Spizella breweri IMG_9106.jpg', 600, 450, 'Brewer\'s Sparrow <i>Spizella breweri</i>', 'Output/thumbnails/1997 Brewer\'s Sparrow Spizella breweri IMG_9106.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Nice pose at Calpine Corner', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9075, 'yuba08', '9075', 'birds', 'Galleries/Yuba08/Output/images/2001 Vesper Sparrow Pooecetes gramineus IMG_9075.jpg', 600, 450, 'Vesper Sparrow <i>Pooecetes gramineus</i>', 'Output/thumbnails/2001 Vesper Sparrow Pooecetes gramineus IMG_9075.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Calpine Corner', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9079, 'yuba08', '9079', 'birds', 'Galleries/Yuba08/Output/images/2001 Vesper Sparrow Pooecetes gramineus IMG_9079.jpg', 600, 450, 'Vesper Sparrow <i>Pooecetes gramineus</i>', 'Output/thumbnails/2001 Vesper Sparrow Pooecetes gramineus IMG_9079.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Calpine Corner', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9301, 'yuba08', '9301', 'birds', 'Galleries/Yuba08/Output/images/2015 Fox Sparrow Passerella iliaca IMG_9301.jpg', 600, 450, 'Fox Sparrow <i>Passerella iliaca</i>', 'Output/thumbnails/2015 Fox Sparrow Passerella iliaca IMG_9301.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Gold Lake Road', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9196, 'yuba08', '9196', 'birds', 'Galleries/Yuba08/Output/images/2069 Red-winged Blackbird Agelaius phoeniceus IMG_9196.jpg', 600, 450, 'Red-winged Blackbird <i>Agelaius phoeniceus</i>', 'Output/thumbnails/2069 Red-winged Blackbird Agelaius phoeniceus IMG_9196.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Marble Hot Springs Road', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9198, 'yuba08', '9198', 'birds', 'Galleries/Yuba08/Output/images/2069 Red-winged Blackbird Agelaius phoeniceus IMG_9198.jpg', 600, 450, 'Red-winged Blackbird <i>Agelaius phoeniceus</i>', 'Output/thumbnails/2069 Red-winged Blackbird Agelaius phoeniceus IMG_9198.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'Marble Hot Springs Road', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9328, 'yuba08', '9328', 'birds', 'Galleries/Yuba08/Output/images/2150 Pine Grosbeak Pinicola enucleator IMG_9328.jpg', 600, 450, 'Pine Grosbeak <i>Pinicola enucleator</i>', 'Output/thumbnails/2150 Pine Grosbeak Pinicola enucleator IMG_9328.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'I see Pine Grosbeak on fewer than half of my trips.  This bird was singing along Gold Lake Road and I was quite fortunate to get pictures.', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9348, 'yuba08', '9348', 'birds', 'Galleries/Yuba08/Output/images/2150 Pine Grosbeak Pinicola enucleator IMG_9348.jpg', 600, 450, 'Pine Grosbeak <i>Pinicola enucleator</i>', 'Output/thumbnails/2150 Pine Grosbeak Pinicola enucleator IMG_9348.jpg', 132, 99, 0, 'Yuba Pass, July \'08', 'I see Pine Grosbeak on fewer than half of my trips.  This bird was singing along Gold Lake Road and I was quite fortunate to get pictures.', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', ''),
				new photo(9284, 'yuba08', '9284', 'birds', 'Galleries/Yuba08/Output/images/9999 Tamias sp. IMG_9284.jpg', 600, 450, 'Tamias sp.', 'Output/thumbnails/9999 Tamias sp. IMG_9284.jpg', 132, 99, 0, 'Yuba pass, July \'08', 'Taken just north of the Yuba Pass Campground.  What species is this?', 'July \'08', 'Mark Eaton', 'Sierra Nevada, California', '', '')
		);
	} else if (gallery_id == 'mendocino09') {
		photos = new Array(
				new photo(957, 'mendocino09', '957', 'travel', 'Galleries/Mendocino09/Output/images/IMG_0957.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_0957.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'Near the Mendocino Headlands', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(964, 'mendocino09', '964', 'travel', 'Galleries/Mendocino09/Output/images/IMG_0964.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_0964.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'Winter surf ebbing from the rocks', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(979, 'mendocino09', '979', 'travel', 'Galleries/Mendocino09/Output/images/IMG_0979.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_0979.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'Cave formed by the pounding surf', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(985, 'mendocino09', '985', 'travel', 'Galleries/Mendocino09/Output/images/IMG_0985.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_0985.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'This wonderful little opening was completely surrounded by headlands.  The surf had bored an opening under the headlands and somehow this opened up all the way to the surface.', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(993, 'mendocino09', '993', 'travel', 'Galleries/Mendocino09/Output/images/IMG_0993.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_0993.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'Badly weathered fence post.  Sublime!', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(996, 'mendocino09', '996', 'travel', 'Galleries/Mendocino09/Output/images/IMG_0996.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_0996.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'Winter clouds and the headlands', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(997, 'mendocino09', '997', 'travel', 'Galleries/Mendocino09/Output/images/IMG_0997.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_0997.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'A <b>pygmy forest</b> is a forest which, for <a href="http://en.wikipedia.org/wiki/Pedology_(soil_study)" title="Pedology (soil study)" target="_blank">pedological</a> and <a href="http://en.wikipedia.org/wiki/Geology" title="Geology" target="_blank">geological</a> reasons, contains only miniature trees. Pygmy forests are usually associated with the coastal terraces and inner coastal mountains of Northern California. A variant of the pygmy forest is sometimes called <b>elfin forest</b> in parts of Southern California, Mexico and Central America.', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(998, 'mendocino09', '998', 'travel', 'Galleries/Mendocino09/Output/images/IMG_0998.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_0998.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'A <b>pygmy forest</b> is a forest which, for <a href="http://en.wikipedia.org/wiki/Pedology_(soil_study)" title="Pedology (soil study)" target="_blank">pedological</a> and <a href="http://en.wikipedia.org/wiki/Geology" title="Geology" target="_blank">geological</a> reasons, contains only miniature trees. Pygmy forests are usually associated with the coastal terraces and inner coastal mountains of Northern California. A variant of the pygmy forest is sometimes called <b>elfin forest</b> in parts of Southern California, Mexico and Central America.', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(999, 'mendocino09', '999', 'travel', 'Galleries/Mendocino09/Output/images/IMG_0999.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_0999.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'A <b>pygmy forest</b> is a forest which, for <a href="http://en.wikipedia.org/wiki/Pedology_(soil_study)" title="Pedology (soil study)" target="_blank">pedological</a> and <a href="http://en.wikipedia.org/wiki/Geology" title="Geology" target="_blank">geological</a> reasons, contains only miniature trees. Pygmy forests are usually associated with the coastal terraces and inner coastal mountains of Northern California. A variant of the pygmy forest is sometimes called <b>elfin forest</b> in parts of Southern California, Mexico and Central America.', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(1000, 'mendocino09', '1000', 'travel', 'Galleries/Mendocino09/Output/images/IMG_1000.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_1000.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'A <b>pygmy forest</b> is a forest which, for <a href="http://en.wikipedia.org/wiki/Pedology_(soil_study)" title="Pedology (soil study)" target="_blank">pedological</a> and <a href="http://en.wikipedia.org/wiki/Geology" title="Geology" target="_blank">geological</a> reasons, contains only miniature trees. Pygmy forests are usually associated with the coastal terraces and inner coastal mountains of Northern California. A variant of the pygmy forest is sometimes called <b>elfin forest</b> in parts of Southern California, Mexico and Central America.', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(1001, 'mendocino09', '1001', 'travel', 'Galleries/Mendocino09/Output/images/IMG_1001.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_1001.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'A <b>pygmy forest</b> is a forest which, for <a href="http://en.wikipedia.org/wiki/Pedology_(soil_study)" title="Pedology (soil study)" target="_blank">pedological</a> and <a href="http://en.wikipedia.org/wiki/Geology" title="Geology" target="_blank">geological</a> reasons, contains only miniature trees. Pygmy forests are usually associated with the coastal terraces and inner coastal mountains of Northern California. A variant of the pygmy forest is sometimes called <b>elfin forest</b> in parts of Southern California, Mexico and Central America.', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(1002, 'mendocino09', '1002', 'travel', 'Galleries/Mendocino09/Output/images/IMG_1002.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_1002.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'A <b>pygmy forest</b> is a forest which, for <a href="http://en.wikipedia.org/wiki/Pedology_(soil_study)" title="Pedology (soil study)" target="_blank">pedological</a> and <a href="http://en.wikipedia.org/wiki/Geology" title="Geology" target="_blank">geological</a> reasons, contains only miniature trees. Pygmy forests are usually associated with the coastal terraces and inner coastal mountains of Northern California. A variant of the pygmy forest is sometimes called <b>elfin forest</b> in parts of Southern California, Mexico and Central America.', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(1003, 'mendocino09', '1003', 'travel', 'Galleries/Mendocino09/Output/images/IMG_1003.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_1003.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'A <b>pygmy forest</b> is a forest which, for <a href="http://en.wikipedia.org/wiki/Pedology_(soil_study)" title="Pedology (soil study)" target="_blank">pedological</a> and <a href="http://en.wikipedia.org/wiki/Geology" title="Geology" target="_blank">geological</a> reasons, contains only miniature trees. Pygmy forests are usually associated with the coastal terraces and inner coastal mountains of Northern California. A variant of the pygmy forest is sometimes called <b>elfin forest</b> in parts of Southern California, Mexico and Central America.', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(1006, 'mendocino09', '1006', 'travel', 'Galleries/Mendocino09/Output/images/IMG_1006.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_1006.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'A <b>pygmy forest</b> is a forest which, for <a href="http://en.wikipedia.org/wiki/Pedology_(soil_study)" title="Pedology (soil study)" target="_blank">pedological</a> and <a href="http://en.wikipedia.org/wiki/Geology" title="Geology" target="_blank">geological</a> reasons, contains only miniature trees. Pygmy forests are usually associated with the coastal terraces and inner coastal mountains of Northern California. A variant of the pygmy forest is sometimes called <b>elfin forest</b> in parts of Southern California, Mexico and Central America.', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(1010, 'mendocino09', '1010', 'travel', 'Galleries/Mendocino09/Output/images/IMG_1010.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_1010.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'A <b>pygmy forest</b> is a forest which, for <a href="http://en.wikipedia.org/wiki/Pedology_(soil_study)" title="Pedology (soil study)" target="_blank">pedological</a> and <a href="http://en.wikipedia.org/wiki/Geology" title="Geology" target="_blank">geological</a> reasons, contains only miniature trees. Pygmy forests are usually associated with the coastal terraces and inner coastal mountains of Northern California. A variant of the pygmy forest is sometimes called <b>elfin forest</b> in parts of Southern California, Mexico and Central America.', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', ''),
				new photo(1012, 'mendocino09', '1012', 'travel', 'Galleries/Mendocino09/Output/images/IMG_1012.jpg', 600, 450, 'Mendocino, CA', 'Output/thumbnails/IMG_1012.jpg', 132, 99, 0, 'Mendocino, Winter \'09', 'Sea stacks on stormy winter day', 'Winter \'09', 'Mark Eaton and Debi Lamm', 'Coastal Northern CA', '', '')
		);
	} else if (gallery_id == 'japan07accommodations') {
		photos = new Array(
				new photo(3, 'japan07accommodations', '3', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0003_image079.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0003_image079.jpg', 132, 99, 0, 'Japan, Spring \'07', 'View of the Tokyo Skyline from the bedroom including the bed, day bed and, of course, the TV', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(4, 'japan07accommodations', '4', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0004_image081.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0004_image081.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Every bit as comfortable as it looks', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(5, 'japan07accommodations', '5', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0005_image087.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0005_image087.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Walk-in closet; bring your friends', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(6, 'japan07accommodations', '6', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0006_image093.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0006_image093.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Tub for two.  Ahem.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(7, 'japan07accommodations', '7', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0007_image099.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0007_image099.jpg', 132, 99, 0, 'Japan, Spring \'07', 'The shower.  Bring the local football team too.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(8, 'japan07accommodations', '8', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0008_image101.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0008_image101.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Aromatherapy included.  I used the TV remote instead.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(9, 'japan07accommodations', '9', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0009_image103.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0009_image103.jpg', 132, 99, 0, 'Japan, Spring \'07', 'His', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(10, 'japan07accommodations', '10', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0010_image105.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0010_image105.jpg', 132, 99, 0, 'Japan, Spring \'07', 'His and Hers', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(11, 'japan07accommodations', '11', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0011_image083.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0011_image083.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Did I say TV?  One of three in the room.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(12, 'japan07accommodations', '12', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0012_image085.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0012_image085.jpg', 132, 99, 0, 'Japan, Spring \'07', 'The day bed.  We preferred walking around.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(13, 'japan07accommodations', '13', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0013_image107.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0013_image107.jpg', 132, 99, 0, 'Japan, Spring \'07', 'How lovely is this?  Real orchid, of course.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(14, 'japan07accommodations', '14', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0014_image109.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0014_image109.jpg', 132, 99, 0, 'Japan, Spring \'07', 'The living room.  Basically a one bedroom apartment.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(15, 'japan07accommodations', '15', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0015_image111.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0015_image111.jpg', 132, 99, 0, 'Japan, Spring \'07', 'How ironic that pictures of the American Southwest were being played for the gaijin in this room.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(16, 'japan07accommodations', '16', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0016_image113.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0016_image113.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Full sized writing desk', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(17, 'japan07accommodations', '17', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0017_image115.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0017_image115.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Lamp.  Duh.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(18, 'japan07accommodations', '18', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0018_image117.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0018_image117.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Coffee table, or more properly, tea table I should think', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(19, 'japan07accommodations', '19', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0019_image123.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0019_image123.jpg', 132, 99, 0, 'Japan, Spring \'07', 'The other bathroom off of the living room.  Make sure those pesky guests don\'t have to use your private space!', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(20, 'japan07accommodations', '20', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0020_image119.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0020_image119.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Tea set, of course', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(21, 'japan07accommodations', '21', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0021_image097.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0021_image097.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Redux for the tub', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(22, 'japan07accommodations', '22', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0022_image095.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0022_image095.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Heated towel racks, of course.  And it was fun watching the Bloomberg channel while I was in the shower.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(23, 'japan07accommodations', '23', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0023_image089.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0023_image089.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Yukata and fan', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(24, 'japan07accommodations', '24', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0024_image091.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0024_image091.jpg', 132, 99, 0, 'Japan, Spring \'07', 'You\'re not wearing your shoes in here, are you?', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(25, 'japan07accommodations', '25', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0025_image121.jpg', 600, 450, 'Mandarin Oriental, Tokyo', 'Output/thumbnails/Accommodations_slide0025_image121.jpg', 132, 99, 0, 'Japan, Spring \'07', '"Free" Internet.  But it was nice to hook up my iPod to the TV stereo.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(26, 'japan07accommodations', '26', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0026_image059.jpg', 600, 450, 'Minsyuku Washi no Yado', 'Output/thumbnails/Accommodations_slide0026_image059.jpg', 132, 99, 0, 'Japan, Spring \'07', 'What a relief when we finally found this place.  Our very kind Japanese waitress from our favorite sushi bar in San Francisco had made our reservations for us, but we had no idea even with directions where it was.  Fortunately, Debi recognized a building from a photograph that we had and we found it just as dusk fell.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(27, 'japan07accommodations', '27', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0027_image063.jpg', 600, 450, 'Minsyuku Washi no Yado', 'Output/thumbnails/Accommodations_slide0027_image063.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Our room.  I discovered later that it was the best in the minsyuku.  What furniture?', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(28, 'japan07accommodations', '28', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0028_image065.jpg', 600, 450, 'Minsyuku Washi no Yado', 'Output/thumbnails/Accommodations_slide0028_image065.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Yes, we needed all of this bedding.  It was about 80&deg;F in the room with burner on and about 45&deg;F by morning.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(29, 'japan07accommodations', '29', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0029_image067.jpg', 600, 450, 'Minsyuku Washi no Yado', 'Output/thumbnails/Accommodations_slide0029_image067.jpg', 132, 99, 0, 'Japan, Spring \'07', 'People work hard for a living up here.  This shows how spartan life is and how relatively comfortable our lodging was.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(30, 'japan07accommodations', '30', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0030_image061.jpg', 600, 450, 'Minsyuku Washi no Yado', 'Output/thumbnails/Accommodations_slide0030_image061.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Outside of the minsyuku', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(31, 'japan07accommodations', '31', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0031_image069.jpg', 600, 450, 'Minsyuku Washi no Yado', 'Output/thumbnails/Accommodations_slide0031_image069.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Fishing nets or something of that ilk.  I think most of the locals work on the fishing boats that fish year round.  I can\'t imagine how cold that must be.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(32, 'japan07accommodations', '32', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0032_image049.jpg', 600, 450, 'Hotel New Otani, Tokyo', 'Output/thumbnails/Accommodations_slide0032_image049.jpg', 132, 99, 0, 'Japan, Spring \'07', 'The night stand', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(33, 'japan07accommodations', '33', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0033_image051.jpg', 600, 450, 'Hotel New Otani, Tokyo', 'Output/thumbnails/Accommodations_slide0033_image051.jpg', 132, 99, 0, 'Japan, Spring \'07', 'More orchids', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(34, 'japan07accommodations', '34', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0034_image053.jpg', 600, 450, 'Hotel New Otani, Tokyo', 'Output/thumbnails/Accommodations_slide0034_image053.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Tea, for two, and you, and me...  The tea was free, the coffee wasn\'t.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(35, 'japan07accommodations', '35', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0035_image055.jpg', 600, 450, 'Hotel New Otani, Tokyo', 'Output/thumbnails/Accommodations_slide0035_image055.jpg', 132, 99, 0, 'Japan, Spring \'07', 'More slippers', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(36, 'japan07accommodations', '36', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0036_image057.jpg', 600, 450, 'Hotel New Otani, Tokyo', 'Output/thumbnails/Accommodations_slide0036_image057.jpg', 132, 99, 0, 'Japan, Spring \'07', 'You gotta like a culture that provides a whisk broom in your room', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(37, 'japan07accommodations', '37', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0037_image045.jpg', 600, 450, 'Hotel New Otani, Tokyo', 'Output/thumbnails/Accommodations_slide0037_image045.jpg', 132, 99, 0, 'Japan, Spring \'07', 'A comfortable living room.  Nice view of Asakusa behind the curtains.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(38, 'japan07accommodations', '38', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0038_image047.jpg', 600, 450, 'Hotel New Otani, Tokyo', 'Output/thumbnails/Accommodations_slide0038_image047.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Da living room again', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(39, 'japan07accommodations', '39', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0039_image071.jpg', 600, 450, 'Ryokan Ishicho Shogikuen, Kyoto', 'Output/thumbnails/Accommodations_slide0039_image071.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Exterior of the ryokan.  This is called a modern ryokan or ryokan hotel because of the contemporary construction.  But the rooms are very traditional.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(40, 'japan07accommodations', '40', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0040_image073.jpg', 600, 450, 'Ryokan Ishicho Shogikuen, Kyoto', 'Output/thumbnails/Accommodations_slide0040_image073.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Our futons.  Amazingly comfortable!', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(41, 'japan07accommodations', '41', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0041_image075.jpg', 600, 450, 'Ryokan Ishicho Shogikuen, Kyoto', 'Output/thumbnails/Accommodations_slide0041_image075.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Detail of one bed', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(42, 'japan07accommodations', '42', 'travel', 'Galleries/Japan Accommodations/Output/images/Accommodations_slide0042_image077.jpg', 600, 450, 'Ryokan Ishicho Shogikuen, Kyoto', 'Output/thumbnails/Accommodations_slide0042_image077.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Tatami mats.  Note the quality of the mats and they looked virtually unused', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''));

	} else if (gallery_id == 'japan07citieslandscapes') {
		photos = new Array(new photo(2, 'japan07citieslandscapes', '2', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0088_image098.jpg', 600, 450, 'Tokyo and train tracks', 'Output/thumbnails/Cities and Landscapes_slide0088_image098.jpg', 132, 99, 0, 'Japan, Spring \'07', 'How lovely to watch the trains departing Tokyo station round the clock', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(3, 'japan07citieslandscapes', '3', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0003_image090.jpg', 600, 450, 'Tokyo Skyline', 'Output/thumbnails/Cities and Landscapes_slide0003_image090.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Viewed from the Mandarin Oriental.  The Tokyo train station is just visible near the lower right hand corner of the photo.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(4, 'japan07citieslandscapes', '4', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0004_image092.jpg', 600, 450, 'Tokyo Skyline', 'Output/thumbnails/Cities and Landscapes_slide0004_image092.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Viewed from the Mandarin Oriental', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(5, 'japan07citieslandscapes', '5', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0005_image094.jpg', 600, 450, 'Mitsukoshi Department Store', 'Output/thumbnails/Cities and Landscapes_slide0005_image094.jpg', 132, 99, 0, 'Japan, Spring \'07', 'This is the mother ship in Tokyo.  If you look carefully, you can see the nursery, a food area and what appears to be an area for modeling', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(6, 'japan07citieslandscapes', '6', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0006_image096.jpg', 600, 450, 'Tokyo Skyline', 'Output/thumbnails/Cities and Landscapes_slide0006_image096.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Viewed from the Mandarin Oriental', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(7, 'japan07citieslandscapes', '7', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0007_image100.jpg', 600, 450, 'Tokyo Skyline', 'Output/thumbnails/Cities and Landscapes_slide0007_image100.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Taken from the same location as the second slide in this gallery.  Not bad for having the camera sitting on a window ledge!', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(8, 'japan07citieslandscapes', '8', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0008_image102.jpg', 600, 450, 'Akasaka, Tokyo', 'Output/thumbnails/Cities and Landscapes_slide0008_image102.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Surely one of the cleanest cities in the world, the affluence of this area dominated by high-rise hotels and businesses is clear', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(9, 'japan07citieslandscapes', '9', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0009_image104.jpg', 600, 450, 'Japanes Rickshaw', 'Output/thumbnails/Cities and Landscapes_slide0009_image104.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Looks like hard work and it is!', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(10, 'japan07citieslandscapes', '10', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0010_image106.jpg', 600, 450, 'Japanese Restaurant Storefront', 'Output/thumbnails/Cities and Landscapes_slide0010_image106.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Not sure what kind of cuisine they have but I like their selection of sake!', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(11, 'japan07citieslandscapes', '11', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0011_image108.jpg', 600, 450, 'Plastic Food', 'Output/thumbnails/Cities and Landscapes_slide0011_image108.jpg', 132, 99, 0, 'Japan, Spring \'07', 'I believe this is store rather than a restaurant but don\'t recall', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(12, 'japan07citieslandscapes', '12', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0012_image110.jpg', 600, 450, 'Nicely Decorated Store', 'Output/thumbnails/Cities and Landscapes_slide0012_image110.jpg', 132, 99, 0, 'Japan, Spring \'07', 'I believe they\'re selling mochi treats along with other foodstuffs', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(13, 'japan07citieslandscapes', '13', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0013_image112.jpg', 600, 450, 'Row Shops', 'Output/thumbnails/Cities and Landscapes_slide0013_image112.jpg', 132, 99, 0, 'Japan, Spring \'07', 'This area was teeming both with people and with shops.  One thing we found interesting was that commerce and religion are often unabashedly intertwined, as you can see from the temple just visible at the back of the photo.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(14, 'japan07citieslandscapes', '14', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0014_image114.jpg', 600, 450, 'Colorful Shop', 'Output/thumbnails/Cities and Landscapes_slide0014_image114.jpg', 132, 99, 0, 'Japan, Spring \'07', 'This shop sold <a href="http://en.wikipedia.org/wiki/Obi_(sash)" title="Obi" target="_blank">obis</a> and <a href="http://en.wikipedia.org/wiki/Kimono" title="Kimono" target="_blank">kimonos</a> as well as other goods', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(15, 'japan07citieslandscapes', '15', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0015_image116.jpg', 600, 450, 'Obis', 'Output/thumbnails/Cities and Landscapes_slide0015_image116.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Same shop as the previous photo', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(16, 'japan07citieslandscapes', '16', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0016_image118.jpg', 600, 450, 'Alleyway', 'Output/thumbnails/Cities and Landscapes_slide0016_image118.jpg', 132, 99, 0, 'Japan, Spring \'07', 'With space at a premium, some alleys are painfully narrow', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(17, 'japan07citieslandscapes', '17', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0017_image120.jpg', 600, 450, 'Korean BBQ', 'Output/thumbnails/Cities and Landscapes_slide0017_image120.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Note the man wearing the mask.  Masks are very commonly worn in Japanese cities, though their efficacy is subject to debate.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(19, 'japan07citieslandscapes', '19', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0019_image122.jpg', 600, 450, 'Culinary District, Asakusa', 'Output/thumbnails/Cities and Landscapes_slide0019_image122.jpg', 132, 99, 0, 'Japan, Spring \'07', 'These icons indicate directions, purveyors of kitchen merchandise and perhaps nothing at all.  But you can find anything you need for a restaurant here.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(20, 'japan07citieslandscapes', '20', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0020_image138.jpg', 600, 450, 'Culinary District, Asakusa', 'Output/thumbnails/Cities and Landscapes_slide0020_image138.jpg', 132, 99, 0, 'Japan, Spring \'07', 'See, I told you so', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(21, 'japan07citieslandscapes', '21', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0021_image124.jpg', 600, 450, 'Mural in Asakusa', 'Output/thumbnails/Cities and Landscapes_slide0021_image124.jpg', 132, 99, 0, 'Japan, Spring \'07', 'The denizens of Asakusa are showing their sense of humor here.  Asakusa is probably the most bohmenian part of Tokyo', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(22, 'japan07citieslandscapes', '22', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0022_image126.jpg', 600, 450, 'Culinary District Icon', 'Output/thumbnails/Cities and Landscapes_slide0022_image126.jpg', 132, 99, 0, 'Japan, Spring \'07', 'When you see this, you have found it', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(23, 'japan07citieslandscapes', '23', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0023_image128.jpg', 600, 450, 'A Large Beetle', 'Output/thumbnails/Cities and Landscapes_slide0023_image128.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Not sure which species, genus or subfamily of <i>Scarabaeidae</i> this is, but it is spectacular and fun', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(24, 'japan07citieslandscapes', '24', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0024_image130.jpg', 600, 450, 'Twilight in Asakusa', 'Output/thumbnails/Cities and Landscapes_slide0024_image130.jpg', 132, 99, 0, 'Japan, Spring \'07', 'After a thunderstorm, this provided a nice view as we headed back to our room', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(25, 'japan07citieslandscapes', '25', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0025_image132.jpg', 600, 450, 'Ginza', 'Output/thumbnails/Cities and Landscapes_slide0025_image132.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Just opposite the Mitsukoshi store', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(26, 'japan07citieslandscapes', '26', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0026_image134.jpg', 600, 450, 'Mitsukoshi', 'Output/thumbnails/Cities and Landscapes_slide0026_image134.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Picture perfect merchandise display', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(27, 'japan07citieslandscapes', '27', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0027_image136.jpg', 600, 450, 'Ginza', 'Output/thumbnails/Cities and Landscapes_slide0027_image136.jpg', 132, 99, 0, 'Japan, Spring \'07', 'More buildings', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(28, 'japan07citieslandscapes', '28', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0028_image140.jpg', 600, 450, 'Nowhere to put a freeway', 'Output/thumbnails/Cities and Landscapes_slide0028_image140.jpg', 132, 99, 0, 'Japan, Spring \'07', 'This is actually a very historic bridge which has been ruined by putting a freeway down the center of the river.  Apparently, with the 1964 Tokyo Olympics fast approaching, it was decided to build the freeway along the only viable route.  What a pity.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(29, 'japan07citieslandscapes', '29', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0029_image142.jpg', 600, 450, 'Police Station', 'Output/thumbnails/Cities and Landscapes_slide0029_image142.jpg', 132, 99, 0, 'Japan, Spring \'07', 'At the Imperial Gardens in Tokyo', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(30, 'japan07citieslandscapes', '30', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0030_image144.jpg', 600, 450, 'Bridge at Imperial Gardens', 'Output/thumbnails/Cities and Landscapes_slide0030_image144.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(31, 'japan07citieslandscapes', '31', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0031_image146.jpg', 600, 450, 'Imperial Gardens', 'Output/thumbnails/Cities and Landscapes_slide0031_image146.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(32, 'japan07citieslandscapes', '32', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0032_image148.jpg', 600, 450, 'Statue at Imperial Gardens', 'Output/thumbnails/Cities and Landscapes_slide0032_image148.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(33, 'japan07citieslandscapes', '33', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0033_image150.jpg', 600, 450, 'Traditional Brooms', 'Output/thumbnails/Cities and Landscapes_slide0033_image150.jpg', 132, 99, 0, 'Japan, Spring \'07', 'These brooms are still used today to maintain public grounds and perhaps even for domestic use', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(34, 'japan07citieslandscapes', '34', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0034_image152.jpg', 600, 450, 'Street Light', 'Output/thumbnails/Cities and Landscapes_slide0034_image152.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Part statue, part streetlight, the overall effect is quite pleasant.  Found in many parts of Tokyo and elsewhere.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(35, 'japan07citieslandscapes', '35', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0035_image154.jpg', 600, 450, 'Building and Gardens', 'Output/thumbnails/Cities and Landscapes_slide0035_image154.jpg', 132, 99, 0, 'Japan, Spring \'07', 'This photo epitomizes the Japanese sense of aesthetic.  Simply sublime!', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(36, 'japan07citieslandscapes', '36', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0036_image158.jpg', 600, 450, 'Engraved stone and Gardens', 'Output/thumbnails/Cities and Landscapes_slide0036_image158.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(37, 'japan07citieslandscapes', '37', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0037_image160.jpg', 600, 450, 'Toro and Pond', 'Output/thumbnails/Cities and Landscapes_slide0037_image160.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(38, 'japan07citieslandscapes', '38', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0038_image156.jpg', 600, 450, 'Imperical Gardens', 'Output/thumbnails/Cities and Landscapes_slide0038_image156.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(39, 'japan07citieslandscapes', '39', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0039_image162.jpg', 600, 450, 'Sushi Bar', 'Output/thumbnails/Cities and Landscapes_slide0039_image162.jpg', 132, 99, 0, 'Japan, Spring \'07', 'We ate here after Tsukiji Market.  Sushi for breakfast!', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(40, 'japan07citieslandscapes', '40', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0040_image164.jpg', 600, 450, 'Pork Products Sold Here', 'Output/thumbnails/Cities and Landscapes_slide0040_image164.jpg', 132, 99, 0, 'Japan, Spring \'07', 'I think pigs are cute but I like pork a little too much', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(41, 'japan07citieslandscapes', '41', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0041_image166.jpg', 600, 450, 'Oddly-shaped Building', 'Output/thumbnails/Cities and Landscapes_slide0041_image166.jpg', 132, 99, 0, 'Japan, Spring \'07', 'I can not think of any rhyme nor reason to build a building in this shape.  As a footnote, notice the wanted poster in the foreground.  It was perhaps the only indication that there is crime in Tokyo, one of the world\'s safest cities.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(42, 'japan07citieslandscapes', '42', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0042_image168.jpg', 600, 450, 'Coke Machines', 'Output/thumbnails/Cities and Landscapes_slide0042_image168.jpg', 132, 99, 0, 'Japan, Spring \'07', 'But you can get a whole lot more of these machines that you can in the states', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(43, 'japan07citieslandscapes', '43', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0043_image170.jpg', 600, 450, 'Vending Machine Beverage', 'Output/thumbnails/Cities and Landscapes_slide0043_image170.jpg', 132, 99, 0, 'Japan, Spring \'07', 'I think this is a yogurt drink, but I\'m not sure', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(44, 'japan07citieslandscapes', '44', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0044_image172.jpg', 600, 450, 'Mountains of Hokkaido', 'Output/thumbnails/Cities and Landscapes_slide0044_image172.jpg', 132, 99, 0, 'Japan, Spring \'07', 'This is taken not far from Washi no Yado and is habitat for Blakiston\'s Fish-Owl', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(46, 'japan07citieslandscapes', '46', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0046_image174.jpg', 600, 450, 'Boat out of the Water', 'Output/thumbnails/Cities and Landscapes_slide0046_image174.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Showing the harsh environment of this part of the world.  This is early April!', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(47, 'japan07citieslandscapes', '47', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0047_image176.jpg', 600, 450, 'Fishing Village', 'Output/thumbnails/Cities and Landscapes_slide0047_image176.jpg', 132, 99, 0, 'Japan, Spring \'07', 'More from the Shiretoko Peninsula in Hokkaido', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(48, 'japan07citieslandscapes', '48', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0048_image178.jpg', 600, 450, 'Fishing Harbor', 'Output/thumbnails/Cities and Landscapes_slide0048_image178.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Yes, that is snow.  We got flurries for about 30 minutes or so.  Amazing.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(49, 'japan07citieslandscapes', '49', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0049_image180.jpg', 600, 450, 'Restaurant', 'Output/thumbnails/Cities and Landscapes_slide0049_image180.jpg', 132, 99, 0, 'Japan, Spring \'07', 'This is the end of the road; we had to turn around unless we wanted to walk.  I almost went in because they have coffee.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(50, 'japan07citieslandscapes', '50', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0050_image182.jpg', 600, 450, 'Boat in Dry Dock', 'Output/thumbnails/Cities and Landscapes_slide0050_image182.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Not sure what is happening here; maybe fishing season is over.  But there were several boats in dry dock.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(51, 'japan07citieslandscapes', '51', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0051_image184.jpg', 600, 450, 'Boats in Dry Dock', 'Output/thumbnails/Cities and Landscapes_slide0051_image184.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Not sure what is happening here; maybe fishing season is over.  But there were several boats in dry dock.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(52, 'japan07citieslandscapes', '52', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0052_image186.jpg', 600, 450, 'Kuril Islands, Russia', 'Output/thumbnails/Cities and Landscapes_slide0052_image186.jpg', 132, 99, 0, 'Japan, Spring \'07', 'These islands are part of a border dispute between Japan and Russia which has dates to the second world war.  While the full story is <a href="http://en.wikipedia.org/wiki/Kuril_Islands_dispute"  color="#ffffff" target="_blank">complicated</a>, Russia has had possession since the end of the war.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(53, 'japan07citieslandscapes', '53', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0053_image188.jpg', 600, 450, 'Crab Shack', 'Output/thumbnails/Cities and Landscapes_slide0053_image188.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Love them happy crabs!', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(54, 'japan07citieslandscapes', '54', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0054_image190.jpg', 600, 450, '?', 'Output/thumbnails/Cities and Landscapes_slide0054_image190.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Really not sure what this is.  Even my Japanese friends can\'t tell.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(55, 'japan07citieslandscapes', '55', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0055_image192.jpg', 600, 450, '?', 'Output/thumbnails/Cities and Landscapes_slide0055_image192.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Located referred to in the previous photo', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(56, 'japan07citieslandscapes', '56', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0056_image194.jpg', 600, 450, 'Sign with White-tailed Eagle', 'Output/thumbnails/Cities and Landscapes_slide0056_image194.jpg', 132, 99, 0, 'Japan, Spring \'07', 'The Shiretoko Peninsula is home to one of the larges congregations of wintering White-tailed Eagles and Steller\'s Sea-Eagles. While most were gone, there are few young birds still hanging around.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(57, 'japan07citieslandscapes', '57', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0057_image196.jpg', 600, 450, 'Faded Japanese script in Kyoto', 'Output/thumbnails/Cities and Landscapes_slide0057_image196.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(59, 'japan07citieslandscapes', '59', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0059_image198.jpg', 600, 450, 'Old doorway', 'Output/thumbnails/Cities and Landscapes_slide0059_image198.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(60, 'japan07citieslandscapes', '60', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0060_image200.jpg', 600, 450, 'WWF in Japan?', 'Output/thumbnails/Cities and Landscapes_slide0060_image200.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Seemed very incongruous while walking around in Kyoto', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(61, 'japan07citieslandscapes', '61', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0061_image202.jpg', 600, 450, 'Poster', 'Output/thumbnails/Cities and Landscapes_slide0061_image202.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Don\'t recall what for', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(62, 'japan07citieslandscapes', '62', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0062_image204.jpg', 600, 450, 'Living in style in Kyoto', 'Output/thumbnails/Cities and Landscapes_slide0062_image204.jpg', 132, 99, 0, 'Japan, Spring \'07', 'This is a very comfortable private residence.  The size of the property indicates that the owner is wealthy.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(63, 'japan07citieslandscapes', '63', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0063_image206.jpg', 600, 450, 'Narrow alleyway in Kyoto', 'Output/thumbnails/Cities and Landscapes_slide0063_image206.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(64, 'japan07citieslandscapes', '64', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0064_image208.jpg', 600, 450, 'Hand woven baskets for sale in Kyoto', 'Output/thumbnails/Cities and Landscapes_slide0064_image208.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(65, 'japan07citieslandscapes', '65', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0065_image210.jpg', 600, 450, 'Shinto shide', 'Output/thumbnails/Cities and Landscapes_slide0065_image210.jpg', 132, 99, 0, 'Japan, Spring \'07', '<a href="http://en.wikipedia.org/wiki/Shide_%28Shinto%29"  color="#ffffff" target="_blank">Shide</a> is a zigzag-shaped paper streamer used in Shinto rituals.  They are common adornments over doorways in Japanese cities, particularly in Kyoto.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(66, 'japan07citieslandscapes', '66', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0066_image212.jpg', 600, 450, 'Japanese Garden', 'Output/thumbnails/Cities and Landscapes_slide0066_image212.jpg', 132, 99, 0, 'Japan, Spring \'07', 'This lovely scene is from the Imperial Palace in Kyoto', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(67, 'japan07citieslandscapes', '67', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0067_image214.jpg', 600, 450, 'Restaurant (?)', 'Output/thumbnails/Cities and Landscapes_slide0067_image214.jpg', 132, 99, 0, 'Japan, Spring \'07', 'I think this is a restaurant.  Very strange.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(68, 'japan07citieslandscapes', '68', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0068_image216.jpg', 600, 450, 'Bicycles and Sakura', 'Output/thumbnails/Cities and Landscapes_slide0068_image216.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Bicycles are ubiquitous in Kyoto, particularly near the university.  What a pleasant way to travel.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(69, 'japan07citieslandscapes', '69', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0069_image218.jpg', 600, 450, 'Very narrow building', 'Output/thumbnails/Cities and Landscapes_slide0069_image218.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Yes, this is a real building and in use.  To get an idea for how narrow it really is, look at the person on the sidewalk on the left hand side of the building.  Yet another example of how dear space is to the Japanese.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(70, 'japan07citieslandscapes', '70', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0070_image220.jpg', 600, 450, 'Japanese House', 'Output/thumbnails/Cities and Landscapes_slide0070_image220.jpg', 132, 99, 0, 'Japan, Spring \'07', 'These screens are typical of older houses and are lowered during the heat of the day, I believe.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(71, 'japan07citieslandscapes', '71', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0071_image222.jpg', 600, 450, 'Kamagawa (Kama river)', 'Output/thumbnails/Cities and Landscapes_slide0071_image222.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(72, 'japan07citieslandscapes', '72', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0072_image224.jpg', 600, 450, 'Busy street corner', 'Output/thumbnails/Cities and Landscapes_slide0072_image224.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Kyoto', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(74, 'japan07citieslandscapes', '74', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0074_image226.jpg', 600, 450, 'Row houses', 'Output/thumbnails/Cities and Landscapes_slide0074_image226.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Either Kyoto or Nara', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(75, 'japan07citieslandscapes', '75', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0075_image230.jpg', 600, 450, 'Umbrellas', 'Output/thumbnails/Cities and Landscapes_slide0075_image230.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Even the pedestrian task of hanging one\'s umbrella has an aesthetic', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(76, 'japan07citieslandscapes', '76', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0076_image232.jpg', 600, 450, 'Tea House (?)', 'Output/thumbnails/Cities and Landscapes_slide0076_image232.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Not sure since I can\'t read the Kanji', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(77, 'japan07citieslandscapes', '77', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0077_image234.jpg', 600, 450, 'Tea House', 'Output/thumbnails/Cities and Landscapes_slide0077_image234.jpg', 132, 99, 0, 'Japan, Spring \'07', 'This I know is a tea house.  Not sure how gaijin friendly these places are.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(78, 'japan07citieslandscapes', '78', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0078_image238.jpg', 600, 450, 'Kyoto Residence', 'Output/thumbnails/Cities and Landscapes_slide0078_image238.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(79, 'japan07citieslandscapes', '79', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0079_image240.jpg', 600, 450, 'Kyoto Building', 'Output/thumbnails/Cities and Landscapes_slide0079_image240.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(80, 'japan07citieslandscapes', '80', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0080_image242.jpg', 600, 450, 'Shinto Offering', 'Output/thumbnails/Cities and Landscapes_slide0080_image242.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Showing the shide and other elements of the offering', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(81, 'japan07citieslandscapes', '81', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0081_image246.jpg', 600, 450, 'Depiction of Yabusame', 'Output/thumbnails/Cities and Landscapes_slide0081_image246.jpg', 132, 99, 0, 'Japan, Spring \'07', '<a href="http://en.wikipedia.org/wiki/Yabusame"  color="#ffffff" target="_blank">Yabusame</a>, is a type of Japanese archery, one that is performed while riding a horse. The archer shoots a special "turnip-headed" arrow at a wooden target.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(82, 'japan07citieslandscapes', '82', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0082_image248.jpg', 600, 450, 'Kyoto Store Front', 'Output/thumbnails/Cities and Landscapes_slide0082_image248.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(83, 'japan07citieslandscapes', '83', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0083_image252.jpg', 600, 450, 'Fire Truck in Kyoto', 'Output/thumbnails/Cities and Landscapes_slide0083_image252.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Surely the shiniest fire truck you will ever find', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(84, 'japan07citieslandscapes', '84', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0084_image228.jpg', 600, 450, 'Narrow street in Kyoto', 'Output/thumbnails/Cities and Landscapes_slide0084_image228.jpg', 132, 99, 0, 'Japan, Spring \'07', 'Leading up to one of the hilltop shrines', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(85, 'japan07citieslandscapes', '85', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0085_image236.jpg', 600, 450, 'Curb your dog', 'Output/thumbnails/Cities and Landscapes_slide0085_image236.jpg', 132, 99, 0, 'Japan, Spring \'07', 'How cute is this?', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(86, 'japan07citieslandscapes', '86', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0086_image244.jpg', 600, 450, 'Building Facade', 'Output/thumbnails/Cities and Landscapes_slide0086_image244.jpg', 132, 99, 0, 'Japan, Spring \'07', '', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', ''),
				new photo(87, 'japan07citieslandscapes', '87', 'travel', 'Galleries/Japan Cities and Landscapes/Output/images/Cities and Landscapes_slide0087_image250.jpg', 600, 450, 'Kaiseki Restaurant', 'Output/thumbnails/Cities and Landscapes_slide0087_image250.jpg', 132, 99, 0, 'Japan, Spring \'07', 'In Kyoto, we had both breakfast and dinner at the ryokan so we didn\'t eat out.  Kaiseki meals can be extremely expensive.', 'Spring \'07', 'Mark Eaton and Debi Lamm', 'Japan', '', '')
		);
	} else if (gallery_id == 'locallyrare') {
		photos = new Array(
				new photo(201006096759, 'locallyrare', '20100609272556759', 'birds', 'Galleries/Locally Rare/Output/images/20100609 27255 Yellow-throated Warbler Dendroica dominica IMG_6759.jpg', 600, 450, 'Yellow-throated Warbler <i>Dendroica dominica albilora</i>', 'Output/thumbnails/20100609 27255 Yellow-throated Warbler Dendroica dominica IMG_6759.jpg', 132, 99, 0, 'Mt. Davidson, SF', '<p><b>Description:</b>:<br />A small passerine that was roughly the same size as the nearby Townsend\'s Warbler and superficially resembled it.  On closer inspection, the bird was dominantly gray and white with a prominent yellow throat.  The facial pattern was quite distinct; on a white face there was a three-lobed black mask, with one lobe extending to the lores, the other extending to nape forming a broad eyeline and the third lore extending down to the sides of the upper breast.  The eye had a white subocular crescent.</p><p>The yellow on the throad ended abruptly turning into clean white underparts broken only by black streaking on the sides of the breast and the flanks.  The rest of the underparts were clean white.  The upperparts appeared gray in the hideous rainforest conditions on the mountain that morning.  There were two white wingbars.  The undertail showed bright white tail spots though the precise pattern was hard to discern.</p><p>The bird sang on occasion as is evident from one of the photos.  The song was compared in the field to a recording of a presumed <i>D.d. dominica</i> and found <b>not</b> to be a good match for that subspecies.  It actually seemed closer to an American Redstart.</p><p><b>Analysis:</b><br />The yellow throat on an otherwise largely black and white bird eliminates most passerines other than vireos and warbles.  No vireo has a 3-lobed dark mask so we\'re left with warblers.  Grace\'s Warbler has a yellow throat, grayish upperparts, black streaking on the flanks but lacks a triangular black facial mask.  Blackburian Warbler has a triangular black mask but would show a bright orange throat in spring.  Not withstanding the equivocal voice, we\'re unambiguously left with YELLOW-THROATED WARBLER.  The white lores identify the bird to the expected subspecies <i>albilora</i>.', 'June 2010', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(201006096761, 'locallyrare', '20100609272556761', 'birds', 'Galleries/Locally Rare/Output/images/20100609 27255 Yellow-throated Warbler Dendroica dominica IMG_6761.jpg', 600, 450, 'Yellow-throated Warbler <i>Dendroica dominica albilora</i>', 'Output/thumbnails/20100609 27255 Yellow-throated Warbler Dendroica dominica IMG_6761.jpg', 132, 99, 0, 'Mt. Davidson, SF', '<p><b>Description:</b>:<br />A small passerine that was roughly the same size as the nearby Townsend\'s Warbler and superficially resembled it.  On closer inspection, the bird was dominantly gray and white with a prominent yellow throat.  The facial pattern was quite distinct; on a white face there was a three-lobed black mask, with one lobe extending to the lores, the other extending to nape forming a broad eyeline and the third lore extending down to the sides of the upper breast.  The eye had a white subocular crescent.</p><p>The yellow on the throad ended abruptly turning into clean white underparts broken only by black streaking on the sides of the breast and the flanks.  The rest of the underparts were clean white.  The upperparts appeared gray in the hideous rainforest conditions on the mountain that morning.  There were two white wingbars.  The undertail showed bright white tail spots though the precise pattern was hard to discern.</p><p>The bird sang on occasion as is evident from one of the photos.  The song was compared in the field to a recording of a presumed <i>D.d. dominica</i> and found <b>not</b> to be a good match for that subspecies.  It actually seemed closer to an American Redstart.</p><p><b>Analysis:</b><br />The yellow throat on an otherwise largely black and white bird eliminates most passerines other than vireos and warbles.  No vireo has a 3-lobed dark mask so we\'re left with warblers.  Grace\'s Warbler has a yellow throat, grayish upperparts, black streaking on the flanks but lacks a triangular black facial mask.  Blackburian Warbler has a triangular black mask but would show a bright orange throat in spring.  Not withstanding the equivocal voice, we\'re unambiguously left with YELLOW-THROATED WARBLER.  The white lores identify the bird to the expected subspecies <i>albilora</i>.', 'June 2010', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(201006096766, 'locallyrare', '20100609272556766', 'birds', 'Galleries/Locally Rare/Output/images/20100609 27255 Yellow-throated Warbler Dendroica dominica IMG_6766.jpg', 600, 450, 'Yellow-throated Warbler <i>Dendroica dominica albilora</i>', 'Output/thumbnails/20100609 27255 Yellow-throated Warbler Dendroica dominica IMG_6766.jpg', 132, 99, 0, 'Mt. Davidson, SF', '<p><b>Description:</b>:<br />A small passerine that was roughly the same size as the nearby Townsend\'s Warbler and superficially resembled it.  On closer inspection, the bird was dominantly gray and white with a prominent yellow throat.  The facial pattern was quite distinct; on a white face there was a three-lobed black mask, with one lobe extending to the lores, the other extending to nape forming a broad eyeline and the third lore extending down to the sides of the upper breast.  The eye had a white subocular crescent.</p><p>The yellow on the throad ended abruptly turning into clean white underparts broken only by black streaking on the sides of the breast and the flanks.  The rest of the underparts were clean white.  The upperparts appeared gray in the hideous rainforest conditions on the mountain that morning.  There were two white wingbars.  The undertail showed bright white tail spots though the precise pattern was hard to discern.</p><p>The bird sang on occasion as is evident from one of the photos.  The song was compared in the field to a recording of a presumed <i>D.d. dominica</i> and found <b>not</b> to be a good match for that subspecies.  It actually seemed closer to an American Redstart.</p><p><b>Analysis:</b><br />The yellow throat on an otherwise largely black and white bird eliminates most passerines other than vireos and warbles.  No vireo has a 3-lobed dark mask so we\'re left with warblers.  Grace\'s Warbler has a yellow throat, grayish upperparts, black streaking on the flanks but lacks a triangular black facial mask.  Blackburian Warbler has a triangular black mask but would show a bright orange throat in spring.  Not withstanding the equivocal voice, we\'re unambiguously left with YELLOW-THROATED WARBLER.  The white lores identify the bird to the expected subspecies <i>albilora</i>.', 'June 2010', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(201005026328, 'locallyrare', 'birds', '20100502 15679     6328', 'Galleries/Locally Rare/Output/images/20100502 15679 Bell\'s Vireo Vireo bellii IMG_6328.jpg', 600, 450, 'Least Bell\'s Vireo <i>Vireo bellii pusillus</i>', 'Output/thumbnails/20100502 15679 Bell\'s Vireo Vireo bellii IMG_6328.jpg', 132, 99, 0, 'Putah Creek Sink, YOL', 'This was one of two (ultimately three) birds that were found in the willows in the sink.  This bird was singing nearly constantly and fortunately ventured to our side of the creek for these nice photos.</p><p>Identification was straight-forward given the bird was actively singing.  The pale spectacles, overall pale coloration and distinct lower wing bar with only hints of gray on the flank confirm LEAST BELL\'S VIREO <i>Vireo bellii pusillus</i>.', 'May 2010', 'Mark Eaton', 'Putah Creek Sink, YOL', '', ''),
				new photo(201005026338, 'locallyrare', 'birds', '20100502 15679     6338', 'Galleries/Locally Rare/Output/images/20100502 15679 Bell\'s Vireo Vireo bellii IMG_6338.jpg', 600, 450, 'Least Bell\'s Vireo <i>Vireo bellii pusillus</i>', 'Output/thumbnails/20100502 15679 Bell\'s Vireo Vireo bellii IMG_6338.jpg', 132, 99, 0, 'Putah Creek Sink, YOL', 'This was one of two (ultimately three) birds that were found in the willows in the sink.  This bird was singing nearly constantly and fortunately ventured to our side of the creek for these nice photos.</p><p>Identification was straight-forward given the bird was actively singing.  The pale spectacles, overall pale coloration and distinct lower wing bar with only hints of gray on the flank confirm LEAST BELL\'S VIREO <i>Vireo bellii pusillus</i>.', 'May 2010', 'Mark Eaton', 'Putah Creek Sink, YOL', '', ''),
				new photo(201005026357, 'locallyrare', 'birds', '20100502 15679     6357', 'Galleries/Locally Rare/Output/images/20100502 15679 Bell\'s Vireo Vireo bellii IMG_6357.jpg', 600, 450, 'Least Bell\'s Vireo <i>Vireo bellii pusillus</i>', 'Output/thumbnails/20100502 15679 Bell\'s Vireo Vireo bellii IMG_6357.jpg', 132, 99, 0, 'Putah Creek Sink, YOL', 'This was one of two (ultimately three) birds that were found in the willows in the sink.  This bird was singing nearly constantly and fortunately ventured to our side of the creek for these nice photos.</p><p>Identification was straight-forward given the bird was actively singing.  The pale spectacles, overall pale coloration and distinct lower wing bar with only hints of gray on the flank confirm LEAST BELL\'S VIREO <i>Vireo bellii pusillus</i>.', 'May 2010', 'Mark Eaton', 'Putah Creek Sink, YOL', '', ''),
				new photo(2010041189345961, 'locallyrare', '2010041189345961', 'birds', 'Galleries/Locally Rare/Output/images/20100411 8934 Calliope Hummingbird Stellula calliope IMG_5961.jpg', 600, 450, 'Calliope Hummingbird <i>Stellula calliope</i>', 'Output/thumbnails/20100411 8934 Calliope Hummingbird Stellula calliope IMG_5961.jpg', 132, 99, 0, 'Ed Levin Park, SCL', '', 'April 2010', 'Mark Eaton', 'Ed Levin Park, SCL', '', ''),
				new photo(20100313145830442, 'locallyrare', '20100313145830442', 'birds', 'Galleries/Locally Rare/Output/images/20100313 14583 Cassin\'s Kingbird Tyrannus vociferans IMG_0442.jpg', 600, 450, 'Cassin\'s Kingbird <i>Tyrannus vociferans</i>', 'Output/thumbnails/20100313 14583 Cassin\'s Kingbird Tyrannus vociferans IMG_0442.jpg', 132, 99, 0, 'Panoche Valley SBT', '', 'March 2010', 'Mark Eaton', 'Panoche Valley SBT', '', ''),
				new photo(2010031330475854, 'locallyrare', '2010031330475854', 'birds', 'Galleries/Locally Rare/Output/images/20100313 3047 Prairie Falcon Falco mexicanus IMG_5854.jpg', 600, 450, 'Prairie Falcon <i>Falco mexicanus</i>', 'Output/thumbnails/20100313 3047 Prairie Falcon Falco mexicanus IMG_5854.jpg', 132, 99, 0, 'Panoche Valley SBT', '', 'March 2010', 'Mark Eaton', 'Panoche Valley SBT', '', ''),
				new photo(2010031337625878, 'locallyrare', '2010031337625878', 'birds', 'Galleries/Locally Rare/Output/images/20100313 3762 Mountain Plover Charadrius montanus IMG_5878.jpg', 600, 450, 'Mountain Plover <i>Charadrius montanus</i>', 'Output/thumbnails/20100313 3762 Mountain Plover Charadrius montanus IMG_5878.jpg', 132, 99, 0, 'Panoche Valley SBT', '', 'March 2010', 'Mark Eaton', 'Panoche Valley SBT', '', ''),
				new photo(201001104505714, 'locallyrare', '201001104505714', 'birds', 'Galleries/Locally Rare/Output/images/20100110 450 Tufted Duck Aythya fuligula IMG_5714.jpg', 600, 450, 'Tufted Duck <i>Aythya fuligula</i>', 'Output/thumbnails/20100110 450 Tufted Duck Aythya fuligula IMG_5714.jpg', 132, 99, 0, 'Lake Merritt, Oakland ALA', '', 'January 2010', 'Mark Eaton', 'Lake Merritt, Oakland ALA', '', ''),
				new photo(201001104505716, 'locallyrare', '201001104505716', 'birds', 'Galleries/Locally Rare/Output/images/20100110 450 Tufted Duck Aythya fuligula IMG_5716.jpg', 600, 450, 'Tufted Duck <i>Aythya fuligula</i>', 'Output/thumbnails/20100110 450 Tufted Duck Aythya fuligula IMG_5716.jpg', 132, 99, 0, 'Lake Merritt, Oakland ALA', '', 'January 2010', 'Mark Eaton', 'Lake Merritt, Oakland ALA', '', ''),
				new photo(20100102265305629, 'locallyrare', '20100102265305629', 'birds', 'Galleries/Locally Rare/Output/images/20100102 26530 Curve-billed Thrasher Toxostoma curvirostre IMG_5629.jpg', 600, 450, 'Curve-billed Thrasher <i>Toxostoma curvirostre palmeri</i>', 'Output/thumbnails/20100102 26530 Curve-billed Thrasher Toxostoma curvirostre IMG_5629.jpg', 132, 99, 0, 'Chiriaco Summit RIV', '<p><b>Description:</b><br />An obvious thrasher sitting in plain view not 20 feet from me.  The upperparts were uniformly gray and the strongly-graduated tail length was about 75% of the lenght of the body.  The will was strongly decurved and appeared all dark.  The eye was bright yellow orange with a dark iris.  The throat was clean white and the gray on the back bled into the upper breast becoming indistinct spots on a very pale gray breast.  The vent appeared to be pale rust reminsicent somewhat of a towhee.  The wings were unmarked though it looked like the outer primaries were newly molting, contrasting with the wear on the rest of the remiges (and rest of the body, for that matter).  The undertail coverts were similarly patterned as the dull spots on the breast.</p><p><b>Analysis:</b><br />  Specific identification is relatively straightforward.  California, Le Conte\'s and Crissal Thrashers are eliminated by breast pattern and Sage and Bendire\'s are eliminated by bill shape.  So, we\'re left with CURVE-BILLED THRASHER.  The indistinct breast spotting confirms the expected western subspecies <i>T.c. palmeri</i>.', 'January 2010', 'Mark Eaton', 'Chiriaco Summit RIV', '', ''),
				new photo(20100102265305639, 'locallyrare', '20100102265305639', 'birds', 'Galleries/Locally Rare/Output/images/20100102 26530 Curve-billed Thrasher Toxostoma curvirostre IMG_5639.jpg', 600, 450, 'Curve-billed Thrasher <i>Toxostoma curvirostre palmeri</i>', 'Output/thumbnails/20100102 26530 Curve-billed Thrasher Toxostoma curvirostre IMG_5639.jpg', 132, 99, 0, 'Chiriaco Summit RIV', '<p><b>Description:</b><br />An obvious thrasher sitting in plain view not 20 feet from me.  The upperparts were uniformly gray and the strongly-graduated tail length was about 75% of the lenght of the body.  The will was strongly decurved and appeared all dark.  The eye was bright yellow orange with a dark iris.  The throat was clean white and the gray on the back bled into the upper breast becoming indistinct spots on a very pale gray breast.  The vent appeared to be pale rust reminsicent somewhat of a towhee.  The wings were unmarked though it looked like the outer primaries were newly molting, contrasting with the wear on the rest of the remiges (and rest of the body, for that matter).  The undertail coverts were similarly patterned as the dull spots on the breast.</p><p><b>Analysis:</b><br />  Specific identification is relatively straightforward.  California, Le Conte\'s and Crissal Thrashers are eliminated by breast pattern and Sage and Bendire\'s are eliminated by bill shape.  So, we\'re left with CURVE-BILLED THRASHER.  The indistinct breast spotting confirms the expected western subspecies <i>T.c. palmeri</i>.', 'January 2010', 'Mark Eaton', 'Chiriaco Summit RIV', '', ''),
				new photo(20091229292915360, 'locallyrare', '20091229292915360', 'birds', 'Galleries/Locally Rare/Output/images/20091229 29291 Harris\'s Sparrow Zonotrichia querula IMG_5360.jpg', 600, 450, 'Harris\'s Sparrow <i>Zonotrichia querula</i>', 'Output/thumbnails/20091229 29291 Harris\'s Sparrow Zonotrichia querula IMG_5360.jpg', 132, 99, 0, 'Furnace Creek Ranch INY', '', 'December 2009', 'Mark Eaton', 'Furnace Creek Ranch INY', '', ''),
				new photo(20091229292915365, 'locallyrare', '20091229292915365', 'birds', 'Galleries/Locally Rare/Output/images/20091229 29291 Harris\'s Sparrow Zonotrichia querula IMG_5365.jpg', 600, 450, 'Harris\'s Sparrow <i>Zonotrichia querula</i>', 'Output/thumbnails/20091229 29291 Harris\'s Sparrow Zonotrichia querula IMG_5365.jpg', 132, 99, 0, 'Furnace Creek Ranch INY', '', 'December 2009', 'Mark Eaton', 'Furnace Creek Ranch INY', '', ''),
				new photo(200912245251, 'locallyrare', '200912245251', 'birds', 'Galleries/Locally Rare/Output/images/20091224 Big White Gull IMG_5251.jpg', 600, 450, 'Big White Gull', 'Output/thumbnails/20091224 Big White Gull IMG_5251.jpg', 132, 99, 0, 'Golden Gate Park 12.24.09', '<p>Appears to be a true albino, but what species?</p>', 'December \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200912245252, 'locallyrare', '200912245252', 'birds', 'Galleries/Locally Rare/Output/images/20091224 Big White Gull IMG_5252.jpg', 600, 450, 'Big White Gull', 'Output/thumbnails/20091224 Big White Gull IMG_5252.jpg', 132, 99, 0, 'Golden Gate Park 12.24.09', '<p>Appears to be a true albino, but what species?</p>', 'December \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200912245255, 'locallyrare', '200912245255', 'birds', 'Galleries/Locally Rare/Output/images/20091224 Big White Gull IMG_5255.jpg', 600, 450, 'Big White Gull', 'Output/thumbnails/20091224 Big White Gull IMG_5255.jpg', 132, 99, 0, 'Golden Gate Park 12.24.09', '<p>Appears to be a true albino, but what species?</p>', 'December \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200912245288, 'locallyrare', '200912245288', 'birds', 'Galleries/Locally Rare/Output/images/20091224 Big White Gull IMG_5288.jpg', 600, 450, 'Big White Gull', 'Output/thumbnails/20091224 Big White Gull IMG_5288.jpg', 132, 99, 0, 'Golden Gate Park 12.24.09', '<p>Appears to be a true albino, but what species?</p>', 'December \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(20091202105744758, 'locallyrare', '20091202105744758', 'birds', 'Galleries/Locally Rare/Output/images/20091202 10574 Yellow-bellied Sapsucker Sphyrapicus varius IMG_4758.jpg', 600, 450, 'Yellow-bellied Sapsucker <i>Sphyrapicus varius</i>', 'Output/thumbnails/20091202 10574 Yellow-bellied Sapsucker Sphyrapicus varius IMG_4758.jpg', 132, 99, 0, 'Menlo Park SM 12.02.09', '<p>A very nice find for San Mateo county.  It took about 2 hours to show up at the Acacia trees along the creek, but then offered nice photos.</p>', 'December \'09', 'Mark Eaton', 'San Francisco Bay Area', '', ''),
				new photo(2009101816944295, 'locallyrare', '2009101816944295', 'birds', 'Galleries/Locally Rare/Output/images/20091018 1694 White-chinned Petrel Procellaria aequinoctialis IMG_4295.jpg', 600, 450, 'White-chinned Petrel <i>Procellaria aequinoctialis</i>', 'Output/thumbnails/20091018 1694 White-chinned Petrel Procellaria aequinoctialis IMG_4295.jpg', 132, 99, 0, 'Half Moon Bay SM 10.18.09', '<p><b>Download a video by Hugh Cotter <a href="Galleries/Locally Rare/Output/movies/WCPetrel.dv">Hi res</a> (282 MB) or <a href="Galleries/Locally Rare/Output/movies/WCPetrel-Web.mov">Lo res</a> (9 MB)!</b></p><p><b>Description</b>: <br />An obvious large dark seabird superficially resembling a Flesh-footed Shearwater.  However, on closer inspection, the bird differed in several essential ways.  The overall impression was a uniformly dark chocolate brown seabird.  The coverts and scapulars were crisp and showed very faint pale edges to them.  The eye was dark and the bill was obviously completely different from any shearwater bill, comprised of several well defined bill plates in abject contrast from the much simpler bill topology of a shearwater.  Even more importantly, the chin of the bird was clearly marked white, though this was very difficult to see in the field and only readily apparent at high magnification in photographs.</p> <p>In flight, the bird did not resemble a shearwater at all.  It was large, with a strongly wedge-shaped tail and flew with its bill held downward at approximately a 45 degree angle and the wing beat were slow and deliberate intermixed with gliding.  Overall, it more resembled a gull-sized (giant), dark-morph fulmar than a large dark shearwater.  Legs were either dark or obscured by the underparts.</p> <p>We follow the nomenclature for bill plates as discussed in Howell [1].  The bill was somewhere between very pale yellow and yellow-ivory.  Each bill plate was clearly outlined with broad dark edges.  Proceeding from base of the maxilla outward, the naricorn extended roughly 1/3 of the way along the upper part of the bill before abruptly ending and exposing the dark top of the culminicorn.  The distal 25% of the maxilla was marked by a prominent maxillary unguis which was concolorous with the other bill plates all the way to the tip.  The latericorn was difficult to see in the filed but is just visible in the photos and did not show dark edges separating it from the culminicorn.  Working from the base of the mandible distally, the ramicorn was separated from the mandibular unguis by an clear dark edges.</p> <p><b>Analysis</b>:</p> <p>Once you get over the shell shock of finding the bird, identification is quite simple, actually.  No shearwater will have this combination of bill plates and the bird is obviously not either Fulmar for any of several reasons.  <span>The bill shape of a </span><i>Pteredroma</i><span> is similar, but all dark </span><i>pteredromas</i><span> invariably have all dark bills.</span></p> <p><span>So, we\'re left with </span><i>Procellaria</i><span> petrels.  Fortunately, there is a Howell [1] provides a nice contemporary review of the genus </span><i>Procellaria</i><span>.  Westland and Parkinson\'s Petrel can be eliminated by the the clear white tip on the maxillary unguis.  Spectacled Petrel can have a white chin but has at least some white on the head even in poorly marked individuals and also a dark maxillary unguis.  Therefore, the pale tip to the maxillary unguis in conjunction with the obvious white chin on this bird uniquely identifies this bird as a WHITE-CHINNED PETREL </span><i>Procellaria aequinoctialis</i><span>.  </span> </p> <p><b>Literature cited</b>:</p> <p>[1] Howell, S.N.G. 2006. <i>Identification of "Black Petrels" genus Procellaria</i>. Birding. 38:52-64.  </p>', 'October \'09', 'Mark Eaton', 'Nearshore Northern California', '', ''),
				new photo(2009101816944296, 'locallyrare', '2009101816944296', 'birds', 'Galleries/Locally Rare/Output/images/20091018 1694 White-chinned Petrel Procellaria aequinoctialis IMG_4296.jpg', 600, 450, 'White-chinned Petrel <i>Procellaria aequinoctialis</i>', 'Output/thumbnails/20091018 1694 White-chinned Petrel Procellaria aequinoctialis IMG_4296.jpg', 132, 99, 0, 'Half Moon Bay SM 10.18.09', '<p><b>Download a video by Hugh Cotter <a href="Galleries/Locally Rare/Output/movies/WCPetrel.dv">Hi res</a> (282 MB) or <a href="Galleries/Locally Rare/Output/movies/WCPetrel-Web.mov">Lo res</a> (9 MB)!</b></p><p><b>Description</b>: <br />An obvious large dark seabird superficially resembling a Flesh-footed Shearwater.  However, on closer inspection, the bird differed in several essential ways.  The overall impression was a uniformly dark chocolate brown seabird.  The coverts and scapulars were crisp and showed very faint pale edges to them.  The eye was dark and the bill was obviously completely different from any shearwater bill, comprised of several well defined bill plates in abject contrast from the much simpler bill topology of a shearwater.  Even more importantly, the chin of the bird was clearly marked white, though this was very difficult to see in the field and only readily apparent at high magnification in photographs.</p> <p>In flight, the bird did not resemble a shearwater at all.  It was large, with a strongly wedge-shaped tail and flew with its bill held downward at approximately a 45 degree angle and the wing beat were slow and deliberate intermixed with gliding.  Overall, it more resembled a gull-sized (giant), dark-morph fulmar than a large dark shearwater.  Legs were either dark or obscured by the underparts.</p> <p>We follow the nomenclature for bill plates as discussed in Howell [1].  The bill was somewhere between very pale yellow and yellow-ivory.  Each bill plate was clearly outlined with broad dark edges.  Proceeding from base of the maxilla outward, the naricorn extended roughly 1/3 of the way along the upper part of the bill before abruptly ending and exposing the dark top of the culminicorn.  The distal 25% of the maxilla was marked by a prominent maxillary unguis which was concolorous with the other bill plates all the way to the tip.  The latericorn was difficult to see in the filed but is just visible in the photos and did not show dark edges separating it from the culminicorn.  Working from the base of the mandible distally, the ramicorn was separated from the mandibular unguis by an clear dark edges.</p> <p><b>Analysis</b>:</p> <p>Once you get over the shell shock of finding the bird, identification is quite simple, actually.  No shearwater will have this combination of bill plates and the bird is obviously not either Fulmar for any of several reasons.  <span>The bill shape of a </span><i>Pteredroma</i><span> is similar, but all dark </span><i>pteredromas</i><span> invariably have all dark bills.</span></p> <p><span>So, we\'re left with </span><i>Procellaria</i><span> petrels.  Fortunately, there is a Howell [1] provides a nice contemporary review of the genus </span><i>Procellaria</i><span>.  Westland and Parkinson\'s Petrel can be eliminated by the the clear white tip on the maxillary unguis.  Spectacled Petrel can have a white chin but has at least some white on the head even in poorly marked individuals and also a dark maxillary unguis.  Therefore, the pale tip to the maxillary unguis in conjunction with the obvious white chin on this bird uniquely identifies this bird as a WHITE-CHINNED PETREL </span><i>Procellaria aequinoctialis</i><span>.  </span> </p> <p><b>Literature cited</b>:</p> <p>[1] Howell, S.N.G. 2006. <i>Identification of "Black Petrels" genus Procellaria</i>. Birding. 38:52-64.  </p>', 'October \'09', 'Mark Eaton', 'Nearshore Northern California', '', ''),
				new photo(200910034048, 'locallyrare', '200910034048', 'birds', 'Galleries/Locally Rare/Output/images/20091003 15699 Solitary Vireo Vireo solitarius IMG_4048.jpg', 600, 450, 'Blue-headed Vireo <i>Vireo solitarius</i>', 'Output/thumbnails/20091003 15699 Solitary Vireo Vireo solitarius IMG_4048.jpg', 132, 99, 0, 'South Lake Merced SF 10.03.09', '<p><B>Description</B>:<br />An obvious passerine with a dark head and yellow highlights.  The head was uniformly dark slaty or blue gray with a prominent white eye ring.  The eye ring continued from the top in a straight line towards the maxilla forming prominent white spectacles, contrasting strongly with the dark grey head.  The bill was stout and dark, appearing to be bluish-gray in the photos.  The lores were black, even darker than the head, forming a line between the front of the eye and the gape, though the lores did not strongly contrast with the dark coloration of the head.  The head was uniformly colored and dark gray with the exception of the nape, which was washed with green.  This is hard to see in the photos but was relatively easy to see in the field.</p> <p>The head contrasted strongly with the clean white throat.  The line of demarcation between the auriculars and the throat was clearly and abruptly defined with virtually no transition between the two.  At the base of the auriculars or shoulder was a pale greenish wash which as confined to the sides of the of the bird, just bleeding into the throat as is just visible in some of the photos.  The breast and belly and most of  the rest of the underparts were virtually unmarked clean white, again strongly contrasting with the upper parts   </p> <p>The sides of the breast and the flanks were yellow, with some faint dark streaking in the flanks.  The vent was strongly washed yellow, even brighter than the yellow on the flanks.  The undertail coverts where white.  The underside of the rectrices were dark with broad white edges visible on the outermost rectrix, visible in one of the photos.  The feet were bluish-gray.</p> <p>The back was bright yellowish-green, weakly contrasting with the nape but strongly contrasting with the head.  In particular, there was no gray on the upperparts whatsoever other than on the head proper.  The flight feathers were in general black.  The tertials had broad white edges to them.  The secondaries had fine yellowish-green edging while the primaries were also edged yellowish-green.  The greater and median secondary coverts had broad white tips tinged yellow forming two strong wing bars.  The greater primary coverts were entirely dark and lacked pale edges.  The upper side of the rectrices were dark (?) with prominent yellowish-green edges.  The bird was not heard to vocalize.</p> <p><B>Analysis:</B></p> <p>Few North American passerines have as prominent white spectacles on a dark face.  Yellow-breasted Chat has green on the back, yellow and white below, white spectacles with dark lores and bill but lacks wing bars.  Otherwise, we\'re left with vireos.  Gray Vireo has a white eye ring and white lores forming spectacles but is otherwise more or less uniformly gray and the lores are white rather than dark lores with a pale supraloral stripe and lacks wing bars.  Nominate Bell\'s Vireo <I>V. b. bellii</I><SPAN STYLE="font-style: normal"> can show green upper parts yellow below and two wing bars, but has a dark eye line breaking the white eye ring and lacks dark lores.  Hutton\'s Vireo lacks the dark head and has pale lores.  Black-capped Vireo (hah!) has large white spectacles on a dark head but has a red eye and lacks dark lores.  The spectacles on White-eyed Vireo and Yellow-throated Vireo are yellow, not white.</SPAN></p> <p><SPAN STYLE="font-style: normal">So, we\'re left only with the Solitary Vireo complex, which is where most experienced birders would have started.  In 1997, the AOU[1]</SPAN><SUP><SPAN STYLE="font-style: normal"> </SPAN></SUP><SPAN STYLE="font-style: normal">split the Solitary Vireo into 3 different species, Plumbeous Vireo </SPAN><I>V. plumbeus</I><SPAN STYLE="font-style: normal">, Cassin\'s Vireo </SPAN><I>V. cassinii</I><SPAN STYLE="font-style: normal">, and Blue-headed Vireo </SPAN><I>V. solitarius</I><SPAN STYLE="font-style: normal">.  With that split, birders become much more keenly attuned to separating the three phenotypes.  As part of that split, field identification became more challenging as the plumage differences can be subtle for certain individuals of the three species.</SPAN></p><p><SPAN STYLE="font-style: normal">Heindel[2] probably has covered field identification of the three species in the most detail; most of the following analysis relies on this work.  Pyle[3] has covered the molt of the Solitary Vireo complex in detail and we start there.  “Solitary Vireos complete their prebasic (PB) molt on the summering grounds.  HY birds have a partial PB molt usually includes all greater coverts but no tertials or rectrices.  AHY birds undergo a complete molt.”  The crisp primary (pp) coverts suggest that this is an AHY bird.</SPAN></p><p><SPAN STYLE="font-style: normal">Now, we head intrepidly onto specific identification.  Plumbeous Vireo seems to be the easiest to deal with.  In all plumages, </SPAN><I>plumbeus</I><SPAN STYLE="font-style: normal"> has a back that is concolorous with the head, unlike both </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  So, we\'re left separating </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, which is where experienced birders would have started to begin with.</SPAN></p><p><SPAN STYLE="font-style: normal">Separation of spring birds is relatively unambiguous between </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  Consider Figure 1 in Heindel[2]:</SPAN></p><P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> <I>The entire head is dark blue-gray, whereas the throat...is bright white.  Note how the gray extends through the auriculars, where it contrasts with green in the “shoulder” area.  The yellow at the sides of the breast is intense, rarely matched by </I><SPAN STYLE="font-style: normal">cassinii</SPAN><I>.</I></p> <P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> </p><P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"> Many of these field marks will prove useful for separating fall birds as well.</p> <P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"></p> <p><SPAN STYLE="font-style: normal">However, fall birds create some additional complications.  As specified in Pyle[3], the Solitary Vireo completes its prebasic molt on the summering grounds, therefore it fall birds can be at the absolute extreme of brightness.  Such a bright </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> is displayed in the photograph by Mlodinow[4].  Note the strong contrast between the grayish head and the whitish throat, surely at the bright extreme for cassinii    However, there are several features which I believe clearly separate this individual for a vagrant </SPAN><I>solitarius.</I></p><p><SPAN STYLE="font-style: normal">The first is the yellow on the underparts.  While the coloration is bright, note that the yellow is diffuse and not confined to the immediate sides of the breast and flanks.  Again, referring to Heindel[2], </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> appears never to show diffuse yellow as shown in this photo.  The second factor is blue gray on the head.  While it approaches the coloration of </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, note that the blue gray extends onto the nape and the upper back.  On </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the nape shows a distinct greenish wash, such as in the cover photograph of Heindel[2] and back is strongly green, with no grayish wash.  Finally, the third field mark is the auriculars themselves.  Notice in Mlodinow[4] that there appears to be a bit of a yellowish wash in the auricular region.  In </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the auriculars are clean blue-gray with bordered by greenish on the shoulder, not the auriculars.  In conclusion, I agree with the identification of Mlodinow[4] but also believe that </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> would be clearly separable from this individual.</SPAN></p><p><SPAN STYLE="font-style: normal">Starting with Heindel[2], let\'s build a list of field marks that objectively allow us to score individuals.</SPAN></p> <p></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Cassinii</I></p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Solitarius</I></p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weakly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Lacks blue; auriculars and nape greenish</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish gray with no green on the auriculars; nape washed green</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly-contrasting</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Pale greenish; occasionally white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak and blended</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Can be bright but diffuse across underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, how does the Lake Merced bird score?</SPAN></p><table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=171*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=67%> 				<P STYLE="font-style: normal">Lake Merced Bird</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=67%> 				<p>Very dark gray with hints of blue; no greenish wash at all</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strong; green on the back is much different from the head 				color</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=67%> 				<p>Broad white edges</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Auriculars solidly gray noticeably contrasting with green of 				the shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=67%> 				<p>Confined to the sides of the breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">Even if we say the cheek/throat contrast is equivocal, the rest of the field marks point rather unambiguously toward </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.   We can also test our scoring algorithm on other recent fall individuals such as those mentioned in Sterling[5] and Morlan[6]:</SPAN></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Sterling[5]</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Morlan[6]</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish-gray</p> 			</TD> 			<TD WIDTH=33%> 				<p>Dark gray (bluish gray in the description)</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars appearing to contrast with greenish 				shoulder</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, even allowing for the equivocal check/throat contrast, both Sterling[5] and Morlan[6] fall unambiguously in the </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> camp and I agree with the identification of these individuals.  I believe the scoring algorithm does indeed work for well-marked individuals and also believe that the Lake Merced bird is unambiguously BLUE-HEADED VIREO </SPAN><I>Vireo solitarius</I><SPAN STYLE="font-style: normal">.</SPAN></p><p><B><SPAN STYLE="font-style: normal">Literature and Photographs Cited:</SPAN></B></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[1] American Ornithologists\' Union. 1997. Forty-first supplement to the American Ornithologists\' Union Check-list of North American Birds. Auk 114:542-552.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[2] Heindel, Matt T. 1996. Field Identification of the Solitary Vireo Complex, Birding XXVIII: Number 6:458-471.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[3] Pyle, Peter. 1997. Identification Guide to North American Birds, Part I.  Slate Creek Press, Bolinas, California.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[4] Mlodinow, S. m54/2/038. Cassin\'s Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo cassinii </SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">Copyright © S. Mlodinow/VIREO, Mexico; Baja Sur: Miraflores Date: September 29 Sex Unknown.  Link at <a HREF="http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS" target="_blank">http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS</A>; you will need to create an account but the link is publicly accessible.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[5] Sterling, J.  Blue-headed Vireo, </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">, 13 November 2008 at Los Osos, SLO Photo © 2008 John Sterling, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm</A>.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[6] Morlan, J. Blue-headed Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal"> Mendoza Ranch, Point Reyes National Seashore, County, California, 1 October 2004, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm</a>.</SPAN></SPAN></p>', 'October \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200910034054, 'locallyrare', '200910034054', 'birds', 'Galleries/Locally Rare/Output/images/20091003 15699 Solitary Vireo Vireo solitarius IMG_4054.jpg', 600, 450, 'Blue-headed Vireo <i>Vireo solitarius</i>', 'Output/thumbnails/20091003 15699 Solitary Vireo Vireo solitarius IMG_4054.jpg', 132, 99, 0, 'South Lake Merced SF 10.03.09', '<p><B>Description</B>:<br />An obvious passerine with a dark head and yellow highlights.  The head was uniformly dark slaty or blue gray with a prominent white eye ring.  The eye ring continued from the top in a straight line towards the maxilla forming prominent white spectacles, contrasting strongly with the dark grey head.  The bill was stout and dark, appearing to be bluish-gray in the photos.  The lores were black, even darker than the head, forming a line between the front of the eye and the gape, though the lores did not strongly contrast with the dark coloration of the head.  The head was uniformly colored and dark gray with the exception of the nape, which was washed with green.  This is hard to see in the photos but was relatively easy to see in the field.</p> <p>The head contrasted strongly with the clean white throat.  The line of demarcation between the auriculars and the throat was clearly and abruptly defined with virtually no transition between the two.  At the base of the auriculars or shoulder was a pale greenish wash which as confined to the sides of the of the bird, just bleeding into the throat as is just visible in some of the photos.  The breast and belly and most of  the rest of the underparts were virtually unmarked clean white, again strongly contrasting with the upper parts   </p> <p>The sides of the breast and the flanks were yellow, with some faint dark streaking in the flanks.  The vent was strongly washed yellow, even brighter than the yellow on the flanks.  The undertail coverts where white.  The underside of the rectrices were dark with broad white edges visible on the outermost rectrix, visible in one of the photos.  The feet were bluish-gray.</p> <p>The back was bright yellowish-green, weakly contrasting with the nape but strongly contrasting with the head.  In particular, there was no gray on the upperparts whatsoever other than on the head proper.  The flight feathers were in general black.  The tertials had broad white edges to them.  The secondaries had fine yellowish-green edging while the primaries were also edged yellowish-green.  The greater and median secondary coverts had broad white tips tinged yellow forming two strong wing bars.  The greater primary coverts were entirely dark and lacked pale edges.  The upper side of the rectrices were dark (?) with prominent yellowish-green edges.  The bird was not heard to vocalize.</p> <p><B>Analysis:</B></p> <p>Few North American passerines have as prominent white spectacles on a dark face.  Yellow-breasted Chat has green on the back, yellow and white below, white spectacles with dark lores and bill but lacks wing bars.  Otherwise, we\'re left with vireos.  Gray Vireo has a white eye ring and white lores forming spectacles but is otherwise more or less uniformly gray and the lores are white rather than dark lores with a pale supraloral stripe and lacks wing bars.  Nominate Bell\'s Vireo <I>V. b. bellii</I><SPAN STYLE="font-style: normal"> can show green upper parts yellow below and two wing bars, but has a dark eye line breaking the white eye ring and lacks dark lores.  Hutton\'s Vireo lacks the dark head and has pale lores.  Black-capped Vireo (hah!) has large white spectacles on a dark head but has a red eye and lacks dark lores.  The spectacles on White-eyed Vireo and Yellow-throated Vireo are yellow, not white.</SPAN></p> <p><SPAN STYLE="font-style: normal">So, we\'re left only with the Solitary Vireo complex, which is where most experienced birders would have started.  In 1997, the AOU[1]</SPAN><SUP><SPAN STYLE="font-style: normal"> </SPAN></SUP><SPAN STYLE="font-style: normal">split the Solitary Vireo into 3 different species, Plumbeous Vireo </SPAN><I>V. plumbeus</I><SPAN STYLE="font-style: normal">, Cassin\'s Vireo </SPAN><I>V. cassinii</I><SPAN STYLE="font-style: normal">, and Blue-headed Vireo </SPAN><I>V. solitarius</I><SPAN STYLE="font-style: normal">.  With that split, birders become much more keenly attuned to separating the three phenotypes.  As part of that split, field identification became more challenging as the plumage differences can be subtle for certain individuals of the three species.</SPAN></p><p><SPAN STYLE="font-style: normal">Heindel[2] probably has covered field identification of the three species in the most detail; most of the following analysis relies on this work.  Pyle[3] has covered the molt of the Solitary Vireo complex in detail and we start there.  “Solitary Vireos complete their prebasic (PB) molt on the summering grounds.  HY birds have a partial PB molt usually includes all greater coverts but no tertials or rectrices.  AHY birds undergo a complete molt.”  The crisp primary (pp) coverts suggest that this is an AHY bird.</SPAN></p><p><SPAN STYLE="font-style: normal">Now, we head intrepidly onto specific identification.  Plumbeous Vireo seems to be the easiest to deal with.  In all plumages, </SPAN><I>plumbeus</I><SPAN STYLE="font-style: normal"> has a back that is concolorous with the head, unlike both </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  So, we\'re left separating </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, which is where experienced birders would have started to begin with.</SPAN></p><p><SPAN STYLE="font-style: normal">Separation of spring birds is relatively unambiguous between </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  Consider Figure 1 in Heindel[2]:</SPAN></p><P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> <I>The entire head is dark blue-gray, whereas the throat...is bright white.  Note how the gray extends through the auriculars, where it contrasts with green in the “shoulder” area.  The yellow at the sides of the breast is intense, rarely matched by </I><SPAN STYLE="font-style: normal">cassinii</SPAN><I>.</I></p> <P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> </p><P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"> Many of these field marks will prove useful for separating fall birds as well.</p> <P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"></p> <p><SPAN STYLE="font-style: normal">However, fall birds create some additional complications.  As specified in Pyle[3], the Solitary Vireo completes its prebasic molt on the summering grounds, therefore it fall birds can be at the absolute extreme of brightness.  Such a bright </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> is displayed in the photograph by Mlodinow[4].  Note the strong contrast between the grayish head and the whitish throat, surely at the bright extreme for cassinii    However, there are several features which I believe clearly separate this individual for a vagrant </SPAN><I>solitarius.</I></p><p><SPAN STYLE="font-style: normal">The first is the yellow on the underparts.  While the coloration is bright, note that the yellow is diffuse and not confined to the immediate sides of the breast and flanks.  Again, referring to Heindel[2], </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> appears never to show diffuse yellow as shown in this photo.  The second factor is blue gray on the head.  While it approaches the coloration of </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, note that the blue gray extends onto the nape and the upper back.  On </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the nape shows a distinct greenish wash, such as in the cover photograph of Heindel[2] and back is strongly green, with no grayish wash.  Finally, the third field mark is the auriculars themselves.  Notice in Mlodinow[4] that there appears to be a bit of a yellowish wash in the auricular region.  In </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the auriculars are clean blue-gray with bordered by greenish on the shoulder, not the auriculars.  In conclusion, I agree with the identification of Mlodinow[4] but also believe that </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> would be clearly separable from this individual.</SPAN></p><p><SPAN STYLE="font-style: normal">Starting with Heindel[2], let\'s build a list of field marks that objectively allow us to score individuals.</SPAN></p> <p></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Cassinii</I></p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Solitarius</I></p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weakly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Lacks blue; auriculars and nape greenish</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish gray with no green on the auriculars; nape washed green</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly-contrasting</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Pale greenish; occasionally white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak and blended</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Can be bright but diffuse across underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, how does the Lake Merced bird score?</SPAN></p><table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=171*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=67%> 				<P STYLE="font-style: normal">Lake Merced Bird</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=67%> 				<p>Very dark gray with hints of blue; no greenish wash at all</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strong; green on the back is much different from the head 				color</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=67%> 				<p>Broad white edges</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Auriculars solidly gray noticeably contrasting with green of 				the shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=67%> 				<p>Confined to the sides of the breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">Even if we say the cheek/throat contrast is equivocal, the rest of the field marks point rather unambiguously toward </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.   We can also test our scoring algorithm on other recent fall individuals such as those mentioned in Sterling[5] and Morlan[6]:</SPAN></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Sterling[5]</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Morlan[6]</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish-gray</p> 			</TD> 			<TD WIDTH=33%> 				<p>Dark gray (bluish gray in the description)</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars appearing to contrast with greenish 				shoulder</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, even allowing for the equivocal check/throat contrast, both Sterling[5] and Morlan[6] fall unambiguously in the </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> camp and I agree with the identification of these individuals.  I believe the scoring algorithm does indeed work for well-marked individuals and also believe that the Lake Merced bird is unambiguously BLUE-HEADED VIREO </SPAN><I>Vireo solitarius</I><SPAN STYLE="font-style: normal">.</SPAN></p><p><B><SPAN STYLE="font-style: normal">Literature and Photographs Cited:</SPAN></B></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[1] American Ornithologists\' Union. 1997. Forty-first supplement to the American Ornithologists\' Union Check-list of North American Birds. Auk 114:542-552.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[2] Heindel, Matt T. 1996. Field Identification of the Solitary Vireo Complex, Birding XXVIII: Number 6:458-471.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[3] Pyle, Peter. 1997. Identification Guide to North American Birds, Part I.  Slate Creek Press, Bolinas, California.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[4] Mlodinow, S. m54/2/038. Cassin\'s Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo cassinii </SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">Copyright © S. Mlodinow/VIREO, Mexico; Baja Sur: Miraflores Date: September 29 Sex Unknown.  Link at <a HREF="http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS" target="_blank">http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS</A>; you will need to create an account but the link is publicly accessible.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[5] Sterling, J.  Blue-headed Vireo, </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">, 13 November 2008 at Los Osos, SLO Photo © 2008 John Sterling, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm</A>.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[6] Morlan, J. Blue-headed Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal"> Mendoza Ranch, Point Reyes National Seashore, County, California, 1 October 2004, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm</a>.</SPAN></SPAN></p>', 'October \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200910034055, 'locallyrare', '200910034055', 'birds', 'Galleries/Locally Rare/Output/images/20091003 15699 Solitary Vireo Vireo solitarius IMG_4055.jpg', 600, 450, 'Blue-headed Vireo <i>Vireo solitarius</i>', 'Output/thumbnails/20091003 15699 Solitary Vireo Vireo solitarius IMG_4055.jpg', 132, 99, 0, 'South Lake Merced SF 10.03.09', '<p><B>Description</B>:<br />An obvious passerine with a dark head and yellow highlights.  The head was uniformly dark slaty or blue gray with a prominent white eye ring.  The eye ring continued from the top in a straight line towards the maxilla forming prominent white spectacles, contrasting strongly with the dark grey head.  The bill was stout and dark, appearing to be bluish-gray in the photos.  The lores were black, even darker than the head, forming a line between the front of the eye and the gape, though the lores did not strongly contrast with the dark coloration of the head.  The head was uniformly colored and dark gray with the exception of the nape, which was washed with green.  This is hard to see in the photos but was relatively easy to see in the field.</p> <p>The head contrasted strongly with the clean white throat.  The line of demarcation between the auriculars and the throat was clearly and abruptly defined with virtually no transition between the two.  At the base of the auriculars or shoulder was a pale greenish wash which as confined to the sides of the of the bird, just bleeding into the throat as is just visible in some of the photos.  The breast and belly and most of  the rest of the underparts were virtually unmarked clean white, again strongly contrasting with the upper parts   </p> <p>The sides of the breast and the flanks were yellow, with some faint dark streaking in the flanks.  The vent was strongly washed yellow, even brighter than the yellow on the flanks.  The undertail coverts where white.  The underside of the rectrices were dark with broad white edges visible on the outermost rectrix, visible in one of the photos.  The feet were bluish-gray.</p> <p>The back was bright yellowish-green, weakly contrasting with the nape but strongly contrasting with the head.  In particular, there was no gray on the upperparts whatsoever other than on the head proper.  The flight feathers were in general black.  The tertials had broad white edges to them.  The secondaries had fine yellowish-green edging while the primaries were also edged yellowish-green.  The greater and median secondary coverts had broad white tips tinged yellow forming two strong wing bars.  The greater primary coverts were entirely dark and lacked pale edges.  The upper side of the rectrices were dark (?) with prominent yellowish-green edges.  The bird was not heard to vocalize.</p> <p><B>Analysis:</B></p> <p>Few North American passerines have as prominent white spectacles on a dark face.  Yellow-breasted Chat has green on the back, yellow and white below, white spectacles with dark lores and bill but lacks wing bars.  Otherwise, we\'re left with vireos.  Gray Vireo has a white eye ring and white lores forming spectacles but is otherwise more or less uniformly gray and the lores are white rather than dark lores with a pale supraloral stripe and lacks wing bars.  Nominate Bell\'s Vireo <I>V. b. bellii</I><SPAN STYLE="font-style: normal"> can show green upper parts yellow below and two wing bars, but has a dark eye line breaking the white eye ring and lacks dark lores.  Hutton\'s Vireo lacks the dark head and has pale lores.  Black-capped Vireo (hah!) has large white spectacles on a dark head but has a red eye and lacks dark lores.  The spectacles on White-eyed Vireo and Yellow-throated Vireo are yellow, not white.</SPAN></p> <p><SPAN STYLE="font-style: normal">So, we\'re left only with the Solitary Vireo complex, which is where most experienced birders would have started.  In 1997, the AOU[1]</SPAN><SUP><SPAN STYLE="font-style: normal"> </SPAN></SUP><SPAN STYLE="font-style: normal">split the Solitary Vireo into 3 different species, Plumbeous Vireo </SPAN><I>V. plumbeus</I><SPAN STYLE="font-style: normal">, Cassin\'s Vireo </SPAN><I>V. cassinii</I><SPAN STYLE="font-style: normal">, and Blue-headed Vireo </SPAN><I>V. solitarius</I><SPAN STYLE="font-style: normal">.  With that split, birders become much more keenly attuned to separating the three phenotypes.  As part of that split, field identification became more challenging as the plumage differences can be subtle for certain individuals of the three species.</SPAN></p><p><SPAN STYLE="font-style: normal">Heindel[2] probably has covered field identification of the three species in the most detail; most of the following analysis relies on this work.  Pyle[3] has covered the molt of the Solitary Vireo complex in detail and we start there.  “Solitary Vireos complete their prebasic (PB) molt on the summering grounds.  HY birds have a partial PB molt usually includes all greater coverts but no tertials or rectrices.  AHY birds undergo a complete molt.”  The crisp primary (pp) coverts suggest that this is an AHY bird.</SPAN></p><p><SPAN STYLE="font-style: normal">Now, we head intrepidly onto specific identification.  Plumbeous Vireo seems to be the easiest to deal with.  In all plumages, </SPAN><I>plumbeus</I><SPAN STYLE="font-style: normal"> has a back that is concolorous with the head, unlike both </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  So, we\'re left separating </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, which is where experienced birders would have started to begin with.</SPAN></p><p><SPAN STYLE="font-style: normal">Separation of spring birds is relatively unambiguous between </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  Consider Figure 1 in Heindel[2]:</SPAN></p><P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> <I>The entire head is dark blue-gray, whereas the throat...is bright white.  Note how the gray extends through the auriculars, where it contrasts with green in the “shoulder” area.  The yellow at the sides of the breast is intense, rarely matched by </I><SPAN STYLE="font-style: normal">cassinii</SPAN><I>.</I></p> <P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> </p><P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"> Many of these field marks will prove useful for separating fall birds as well.</p> <P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"></p> <p><SPAN STYLE="font-style: normal">However, fall birds create some additional complications.  As specified in Pyle[3], the Solitary Vireo completes its prebasic molt on the summering grounds, therefore it fall birds can be at the absolute extreme of brightness.  Such a bright </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> is displayed in the photograph by Mlodinow[4].  Note the strong contrast between the grayish head and the whitish throat, surely at the bright extreme for cassinii    However, there are several features which I believe clearly separate this individual for a vagrant </SPAN><I>solitarius.</I></p><p><SPAN STYLE="font-style: normal">The first is the yellow on the underparts.  While the coloration is bright, note that the yellow is diffuse and not confined to the immediate sides of the breast and flanks.  Again, referring to Heindel[2], </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> appears never to show diffuse yellow as shown in this photo.  The second factor is blue gray on the head.  While it approaches the coloration of </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, note that the blue gray extends onto the nape and the upper back.  On </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the nape shows a distinct greenish wash, such as in the cover photograph of Heindel[2] and back is strongly green, with no grayish wash.  Finally, the third field mark is the auriculars themselves.  Notice in Mlodinow[4] that there appears to be a bit of a yellowish wash in the auricular region.  In </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the auriculars are clean blue-gray with bordered by greenish on the shoulder, not the auriculars.  In conclusion, I agree with the identification of Mlodinow[4] but also believe that </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> would be clearly separable from this individual.</SPAN></p><p><SPAN STYLE="font-style: normal">Starting with Heindel[2], let\'s build a list of field marks that objectively allow us to score individuals.</SPAN></p> <p></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Cassinii</I></p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Solitarius</I></p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weakly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Lacks blue; auriculars and nape greenish</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish gray with no green on the auriculars; nape washed green</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly-contrasting</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Pale greenish; occasionally white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak and blended</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Can be bright but diffuse across underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, how does the Lake Merced bird score?</SPAN></p><table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=171*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=67%> 				<P STYLE="font-style: normal">Lake Merced Bird</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=67%> 				<p>Very dark gray with hints of blue; no greenish wash at all</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strong; green on the back is much different from the head 				color</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=67%> 				<p>Broad white edges</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Auriculars solidly gray noticeably contrasting with green of 				the shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=67%> 				<p>Confined to the sides of the breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">Even if we say the cheek/throat contrast is equivocal, the rest of the field marks point rather unambiguously toward </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.   We can also test our scoring algorithm on other recent fall individuals such as those mentioned in Sterling[5] and Morlan[6]:</SPAN></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Sterling[5]</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Morlan[6]</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish-gray</p> 			</TD> 			<TD WIDTH=33%> 				<p>Dark gray (bluish gray in the description)</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars appearing to contrast with greenish 				shoulder</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, even allowing for the equivocal check/throat contrast, both Sterling[5] and Morlan[6] fall unambiguously in the </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> camp and I agree with the identification of these individuals.  I believe the scoring algorithm does indeed work for well-marked individuals and also believe that the Lake Merced bird is unambiguously BLUE-HEADED VIREO </SPAN><I>Vireo solitarius</I><SPAN STYLE="font-style: normal">.</SPAN></p><p><B><SPAN STYLE="font-style: normal">Literature and Photographs Cited:</SPAN></B></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[1] American Ornithologists\' Union. 1997. Forty-first supplement to the American Ornithologists\' Union Check-list of North American Birds. Auk 114:542-552.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[2] Heindel, Matt T. 1996. Field Identification of the Solitary Vireo Complex, Birding XXVIII: Number 6:458-471.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[3] Pyle, Peter. 1997. Identification Guide to North American Birds, Part I.  Slate Creek Press, Bolinas, California.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[4] Mlodinow, S. m54/2/038. Cassin\'s Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo cassinii </SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">Copyright © S. Mlodinow/VIREO, Mexico; Baja Sur: Miraflores Date: September 29 Sex Unknown.  Link at <a HREF="http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS" target="_blank">http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS</A>; you will need to create an account but the link is publicly accessible.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[5] Sterling, J.  Blue-headed Vireo, </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">, 13 November 2008 at Los Osos, SLO Photo © 2008 John Sterling, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm</A>.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[6] Morlan, J. Blue-headed Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal"> Mendoza Ranch, Point Reyes National Seashore, County, California, 1 October 2004, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm</a>.</SPAN></SPAN></p>', 'October \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200910034057, 'locallyrare', '200910034057', 'birds', 'Galleries/Locally Rare/Output/images/20091003 15699 Solitary Vireo Vireo solitarius IMG_4057.jpg', 600, 450, 'Blue-headed Vireo <i>Vireo solitarius</i>', 'Output/thumbnails/20091003 15699 Solitary Vireo Vireo solitarius IMG_4057.jpg', 132, 99, 0, 'South Lake Merced SF 10.03.09', '<p><B>Description</B>:<br />An obvious passerine with a dark head and yellow highlights.  The head was uniformly dark slaty or blue gray with a prominent white eye ring.  The eye ring continued from the top in a straight line towards the maxilla forming prominent white spectacles, contrasting strongly with the dark grey head.  The bill was stout and dark, appearing to be bluish-gray in the photos.  The lores were black, even darker than the head, forming a line between the front of the eye and the gape, though the lores did not strongly contrast with the dark coloration of the head.  The head was uniformly colored and dark gray with the exception of the nape, which was washed with green.  This is hard to see in the photos but was relatively easy to see in the field.</p> <p>The head contrasted strongly with the clean white throat.  The line of demarcation between the auriculars and the throat was clearly and abruptly defined with virtually no transition between the two.  At the base of the auriculars or shoulder was a pale greenish wash which as confined to the sides of the of the bird, just bleeding into the throat as is just visible in some of the photos.  The breast and belly and most of  the rest of the underparts were virtually unmarked clean white, again strongly contrasting with the upper parts   </p> <p>The sides of the breast and the flanks were yellow, with some faint dark streaking in the flanks.  The vent was strongly washed yellow, even brighter than the yellow on the flanks.  The undertail coverts where white.  The underside of the rectrices were dark with broad white edges visible on the outermost rectrix, visible in one of the photos.  The feet were bluish-gray.</p> <p>The back was bright yellowish-green, weakly contrasting with the nape but strongly contrasting with the head.  In particular, there was no gray on the upperparts whatsoever other than on the head proper.  The flight feathers were in general black.  The tertials had broad white edges to them.  The secondaries had fine yellowish-green edging while the primaries were also edged yellowish-green.  The greater and median secondary coverts had broad white tips tinged yellow forming two strong wing bars.  The greater primary coverts were entirely dark and lacked pale edges.  The upper side of the rectrices were dark (?) with prominent yellowish-green edges.  The bird was not heard to vocalize.</p> <p><B>Analysis:</B></p> <p>Few North American passerines have as prominent white spectacles on a dark face.  Yellow-breasted Chat has green on the back, yellow and white below, white spectacles with dark lores and bill but lacks wing bars.  Otherwise, we\'re left with vireos.  Gray Vireo has a white eye ring and white lores forming spectacles but is otherwise more or less uniformly gray and the lores are white rather than dark lores with a pale supraloral stripe and lacks wing bars.  Nominate Bell\'s Vireo <I>V. b. bellii</I><SPAN STYLE="font-style: normal"> can show green upper parts yellow below and two wing bars, but has a dark eye line breaking the white eye ring and lacks dark lores.  Hutton\'s Vireo lacks the dark head and has pale lores.  Black-capped Vireo (hah!) has large white spectacles on a dark head but has a red eye and lacks dark lores.  The spectacles on White-eyed Vireo and Yellow-throated Vireo are yellow, not white.</SPAN></p> <p><SPAN STYLE="font-style: normal">So, we\'re left only with the Solitary Vireo complex, which is where most experienced birders would have started.  In 1997, the AOU[1]</SPAN><SUP><SPAN STYLE="font-style: normal"> </SPAN></SUP><SPAN STYLE="font-style: normal">split the Solitary Vireo into 3 different species, Plumbeous Vireo </SPAN><I>V. plumbeus</I><SPAN STYLE="font-style: normal">, Cassin\'s Vireo </SPAN><I>V. cassinii</I><SPAN STYLE="font-style: normal">, and Blue-headed Vireo </SPAN><I>V. solitarius</I><SPAN STYLE="font-style: normal">.  With that split, birders become much more keenly attuned to separating the three phenotypes.  As part of that split, field identification became more challenging as the plumage differences can be subtle for certain individuals of the three species.</SPAN></p><p><SPAN STYLE="font-style: normal">Heindel[2] probably has covered field identification of the three species in the most detail; most of the following analysis relies on this work.  Pyle[3] has covered the molt of the Solitary Vireo complex in detail and we start there.  “Solitary Vireos complete their prebasic (PB) molt on the summering grounds.  HY birds have a partial PB molt usually includes all greater coverts but no tertials or rectrices.  AHY birds undergo a complete molt.”  The crisp primary (pp) coverts suggest that this is an AHY bird.</SPAN></p><p><SPAN STYLE="font-style: normal">Now, we head intrepidly onto specific identification.  Plumbeous Vireo seems to be the easiest to deal with.  In all plumages, </SPAN><I>plumbeus</I><SPAN STYLE="font-style: normal"> has a back that is concolorous with the head, unlike both </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  So, we\'re left separating </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, which is where experienced birders would have started to begin with.</SPAN></p><p><SPAN STYLE="font-style: normal">Separation of spring birds is relatively unambiguous between </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  Consider Figure 1 in Heindel[2]:</SPAN></p><P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> <I>The entire head is dark blue-gray, whereas the throat...is bright white.  Note how the gray extends through the auriculars, where it contrasts with green in the “shoulder” area.  The yellow at the sides of the breast is intense, rarely matched by </I><SPAN STYLE="font-style: normal">cassinii</SPAN><I>.</I></p> <P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> </p><P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"> Many of these field marks will prove useful for separating fall birds as well.</p> <P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"></p> <p><SPAN STYLE="font-style: normal">However, fall birds create some additional complications.  As specified in Pyle[3], the Solitary Vireo completes its prebasic molt on the summering grounds, therefore it fall birds can be at the absolute extreme of brightness.  Such a bright </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> is displayed in the photograph by Mlodinow[4].  Note the strong contrast between the grayish head and the whitish throat, surely at the bright extreme for cassinii    However, there are several features which I believe clearly separate this individual for a vagrant </SPAN><I>solitarius.</I></p><p><SPAN STYLE="font-style: normal">The first is the yellow on the underparts.  While the coloration is bright, note that the yellow is diffuse and not confined to the immediate sides of the breast and flanks.  Again, referring to Heindel[2], </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> appears never to show diffuse yellow as shown in this photo.  The second factor is blue gray on the head.  While it approaches the coloration of </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, note that the blue gray extends onto the nape and the upper back.  On </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the nape shows a distinct greenish wash, such as in the cover photograph of Heindel[2] and back is strongly green, with no grayish wash.  Finally, the third field mark is the auriculars themselves.  Notice in Mlodinow[4] that there appears to be a bit of a yellowish wash in the auricular region.  In </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the auriculars are clean blue-gray with bordered by greenish on the shoulder, not the auriculars.  In conclusion, I agree with the identification of Mlodinow[4] but also believe that </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> would be clearly separable from this individual.</SPAN></p><p><SPAN STYLE="font-style: normal">Starting with Heindel[2], let\'s build a list of field marks that objectively allow us to score individuals.</SPAN></p> <p></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Cassinii</I></p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Solitarius</I></p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weakly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Lacks blue; auriculars and nape greenish</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish gray with no green on the auriculars; nape washed green</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly-contrasting</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Pale greenish; occasionally white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak and blended</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Can be bright but diffuse across underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, how does the Lake Merced bird score?</SPAN></p><table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=171*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=67%> 				<P STYLE="font-style: normal">Lake Merced Bird</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=67%> 				<p>Very dark gray with hints of blue; no greenish wash at all</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strong; green on the back is much different from the head 				color</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=67%> 				<p>Broad white edges</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Auriculars solidly gray noticeably contrasting with green of 				the shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=67%> 				<p>Confined to the sides of the breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">Even if we say the cheek/throat contrast is equivocal, the rest of the field marks point rather unambiguously toward </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.   We can also test our scoring algorithm on other recent fall individuals such as those mentioned in Sterling[5] and Morlan[6]:</SPAN></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Sterling[5]</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Morlan[6]</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish-gray</p> 			</TD> 			<TD WIDTH=33%> 				<p>Dark gray (bluish gray in the description)</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars appearing to contrast with greenish 				shoulder</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, even allowing for the equivocal check/throat contrast, both Sterling[5] and Morlan[6] fall unambiguously in the </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> camp and I agree with the identification of these individuals.  I believe the scoring algorithm does indeed work for well-marked individuals and also believe that the Lake Merced bird is unambiguously BLUE-HEADED VIREO </SPAN><I>Vireo solitarius</I><SPAN STYLE="font-style: normal">.</SPAN></p><p><B><SPAN STYLE="font-style: normal">Literature and Photographs Cited:</SPAN></B></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[1] American Ornithologists\' Union. 1997. Forty-first supplement to the American Ornithologists\' Union Check-list of North American Birds. Auk 114:542-552.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[2] Heindel, Matt T. 1996. Field Identification of the Solitary Vireo Complex, Birding XXVIII: Number 6:458-471.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[3] Pyle, Peter. 1997. Identification Guide to North American Birds, Part I.  Slate Creek Press, Bolinas, California.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[4] Mlodinow, S. m54/2/038. Cassin\'s Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo cassinii </SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">Copyright © S. Mlodinow/VIREO, Mexico; Baja Sur: Miraflores Date: September 29 Sex Unknown.  Link at <a HREF="http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS" target="_blank">http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS</A>; you will need to create an account but the link is publicly accessible.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[5] Sterling, J.  Blue-headed Vireo, </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">, 13 November 2008 at Los Osos, SLO Photo © 2008 John Sterling, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm</A>.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[6] Morlan, J. Blue-headed Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal"> Mendoza Ranch, Point Reyes National Seashore, County, California, 1 October 2004, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm</a>.</SPAN></SPAN></p>', 'October \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200910034058, 'locallyrare', '200910034058', 'birds', 'Galleries/Locally Rare/Output/images/20091003 15699 Solitary Vireo Vireo solitarius IMG_4058.jpg', 600, 450, 'Blue-headed Vireo <i>Vireo solitarius</i>', 'Output/thumbnails/20091003 15699 Solitary Vireo Vireo solitarius IMG_4058.jpg', 132, 99, 0, 'South Lake Merced SF 10.03.09', '<p><B>Description</B>:<br />An obvious passerine with a dark head and yellow highlights.  The head was uniformly dark slaty or blue gray with a prominent white eye ring.  The eye ring continued from the top in a straight line towards the maxilla forming prominent white spectacles, contrasting strongly with the dark grey head.  The bill was stout and dark, appearing to be bluish-gray in the photos.  The lores were black, even darker than the head, forming a line between the front of the eye and the gape, though the lores did not strongly contrast with the dark coloration of the head.  The head was uniformly colored and dark gray with the exception of the nape, which was washed with green.  This is hard to see in the photos but was relatively easy to see in the field.</p> <p>The head contrasted strongly with the clean white throat.  The line of demarcation between the auriculars and the throat was clearly and abruptly defined with virtually no transition between the two.  At the base of the auriculars or shoulder was a pale greenish wash which as confined to the sides of the of the bird, just bleeding into the throat as is just visible in some of the photos.  The breast and belly and most of  the rest of the underparts were virtually unmarked clean white, again strongly contrasting with the upper parts   </p> <p>The sides of the breast and the flanks were yellow, with some faint dark streaking in the flanks.  The vent was strongly washed yellow, even brighter than the yellow on the flanks.  The undertail coverts where white.  The underside of the rectrices were dark with broad white edges visible on the outermost rectrix, visible in one of the photos.  The feet were bluish-gray.</p> <p>The back was bright yellowish-green, weakly contrasting with the nape but strongly contrasting with the head.  In particular, there was no gray on the upperparts whatsoever other than on the head proper.  The flight feathers were in general black.  The tertials had broad white edges to them.  The secondaries had fine yellowish-green edging while the primaries were also edged yellowish-green.  The greater and median secondary coverts had broad white tips tinged yellow forming two strong wing bars.  The greater primary coverts were entirely dark and lacked pale edges.  The upper side of the rectrices were dark (?) with prominent yellowish-green edges.  The bird was not heard to vocalize.</p> <p><B>Analysis:</B></p> <p>Few North American passerines have as prominent white spectacles on a dark face.  Yellow-breasted Chat has green on the back, yellow and white below, white spectacles with dark lores and bill but lacks wing bars.  Otherwise, we\'re left with vireos.  Gray Vireo has a white eye ring and white lores forming spectacles but is otherwise more or less uniformly gray and the lores are white rather than dark lores with a pale supraloral stripe and lacks wing bars.  Nominate Bell\'s Vireo <I>V. b. bellii</I><SPAN STYLE="font-style: normal"> can show green upper parts yellow below and two wing bars, but has a dark eye line breaking the white eye ring and lacks dark lores.  Hutton\'s Vireo lacks the dark head and has pale lores.  Black-capped Vireo (hah!) has large white spectacles on a dark head but has a red eye and lacks dark lores.  The spectacles on White-eyed Vireo and Yellow-throated Vireo are yellow, not white.</SPAN></p> <p><SPAN STYLE="font-style: normal">So, we\'re left only with the Solitary Vireo complex, which is where most experienced birders would have started.  In 1997, the AOU[1]</SPAN><SUP><SPAN STYLE="font-style: normal"> </SPAN></SUP><SPAN STYLE="font-style: normal">split the Solitary Vireo into 3 different species, Plumbeous Vireo </SPAN><I>V. plumbeus</I><SPAN STYLE="font-style: normal">, Cassin\'s Vireo </SPAN><I>V. cassinii</I><SPAN STYLE="font-style: normal">, and Blue-headed Vireo </SPAN><I>V. solitarius</I><SPAN STYLE="font-style: normal">.  With that split, birders become much more keenly attuned to separating the three phenotypes.  As part of that split, field identification became more challenging as the plumage differences can be subtle for certain individuals of the three species.</SPAN></p><p><SPAN STYLE="font-style: normal">Heindel[2] probably has covered field identification of the three species in the most detail; most of the following analysis relies on this work.  Pyle[3] has covered the molt of the Solitary Vireo complex in detail and we start there.  “Solitary Vireos complete their prebasic (PB) molt on the summering grounds.  HY birds have a partial PB molt usually includes all greater coverts but no tertials or rectrices.  AHY birds undergo a complete molt.”  The crisp primary (pp) coverts suggest that this is an AHY bird.</SPAN></p><p><SPAN STYLE="font-style: normal">Now, we head intrepidly onto specific identification.  Plumbeous Vireo seems to be the easiest to deal with.  In all plumages, </SPAN><I>plumbeus</I><SPAN STYLE="font-style: normal"> has a back that is concolorous with the head, unlike both </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  So, we\'re left separating </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, which is where experienced birders would have started to begin with.</SPAN></p><p><SPAN STYLE="font-style: normal">Separation of spring birds is relatively unambiguous between </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  Consider Figure 1 in Heindel[2]:</SPAN></p><P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> <I>The entire head is dark blue-gray, whereas the throat...is bright white.  Note how the gray extends through the auriculars, where it contrasts with green in the “shoulder” area.  The yellow at the sides of the breast is intense, rarely matched by </I><SPAN STYLE="font-style: normal">cassinii</SPAN><I>.</I></p> <P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> </p><P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"> Many of these field marks will prove useful for separating fall birds as well.</p> <P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"></p> <p><SPAN STYLE="font-style: normal">However, fall birds create some additional complications.  As specified in Pyle[3], the Solitary Vireo completes its prebasic molt on the summering grounds, therefore it fall birds can be at the absolute extreme of brightness.  Such a bright </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> is displayed in the photograph by Mlodinow[4].  Note the strong contrast between the grayish head and the whitish throat, surely at the bright extreme for cassinii    However, there are several features which I believe clearly separate this individual for a vagrant </SPAN><I>solitarius.</I></p><p><SPAN STYLE="font-style: normal">The first is the yellow on the underparts.  While the coloration is bright, note that the yellow is diffuse and not confined to the immediate sides of the breast and flanks.  Again, referring to Heindel[2], </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> appears never to show diffuse yellow as shown in this photo.  The second factor is blue gray on the head.  While it approaches the coloration of </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, note that the blue gray extends onto the nape and the upper back.  On </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the nape shows a distinct greenish wash, such as in the cover photograph of Heindel[2] and back is strongly green, with no grayish wash.  Finally, the third field mark is the auriculars themselves.  Notice in Mlodinow[4] that there appears to be a bit of a yellowish wash in the auricular region.  In </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the auriculars are clean blue-gray with bordered by greenish on the shoulder, not the auriculars.  In conclusion, I agree with the identification of Mlodinow[4] but also believe that </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> would be clearly separable from this individual.</SPAN></p><p><SPAN STYLE="font-style: normal">Starting with Heindel[2], let\'s build a list of field marks that objectively allow us to score individuals.</SPAN></p> <p></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Cassinii</I></p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Solitarius</I></p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weakly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Lacks blue; auriculars and nape greenish</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish gray with no green on the auriculars; nape washed green</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly-contrasting</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Pale greenish; occasionally white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak and blended</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Can be bright but diffuse across underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, how does the Lake Merced bird score?</SPAN></p><table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=171*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=67%> 				<P STYLE="font-style: normal">Lake Merced Bird</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=67%> 				<p>Very dark gray with hints of blue; no greenish wash at all</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strong; green on the back is much different from the head 				color</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=67%> 				<p>Broad white edges</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Auriculars solidly gray noticeably contrasting with green of 				the shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=67%> 				<p>Confined to the sides of the breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">Even if we say the cheek/throat contrast is equivocal, the rest of the field marks point rather unambiguously toward </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.   We can also test our scoring algorithm on other recent fall individuals such as those mentioned in Sterling[5] and Morlan[6]:</SPAN></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Sterling[5]</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Morlan[6]</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish-gray</p> 			</TD> 			<TD WIDTH=33%> 				<p>Dark gray (bluish gray in the description)</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars appearing to contrast with greenish 				shoulder</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, even allowing for the equivocal check/throat contrast, both Sterling[5] and Morlan[6] fall unambiguously in the </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> camp and I agree with the identification of these individuals.  I believe the scoring algorithm does indeed work for well-marked individuals and also believe that the Lake Merced bird is unambiguously BLUE-HEADED VIREO </SPAN><I>Vireo solitarius</I><SPAN STYLE="font-style: normal">.</SPAN></p><p><B><SPAN STYLE="font-style: normal">Literature and Photographs Cited:</SPAN></B></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[1] American Ornithologists\' Union. 1997. Forty-first supplement to the American Ornithologists\' Union Check-list of North American Birds. Auk 114:542-552.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[2] Heindel, Matt T. 1996. Field Identification of the Solitary Vireo Complex, Birding XXVIII: Number 6:458-471.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[3] Pyle, Peter. 1997. Identification Guide to North American Birds, Part I.  Slate Creek Press, Bolinas, California.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[4] Mlodinow, S. m54/2/038. Cassin\'s Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo cassinii </SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">Copyright © S. Mlodinow/VIREO, Mexico; Baja Sur: Miraflores Date: September 29 Sex Unknown.  Link at <a HREF="http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS" target="_blank">http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS</A>; you will need to create an account but the link is publicly accessible.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[5] Sterling, J.  Blue-headed Vireo, </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">, 13 November 2008 at Los Osos, SLO Photo © 2008 John Sterling, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm</A>.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[6] Morlan, J. Blue-headed Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal"> Mendoza Ranch, Point Reyes National Seashore, County, California, 1 October 2004, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm</a>.</SPAN></SPAN></p>', 'October \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200910034059, 'locallyrare', '200910034059', 'birds', 'Galleries/Locally Rare/Output/images/20091003 15699 Solitary Vireo Vireo solitarius IMG_4059.jpg', 600, 450, 'Blue-headed Vireo <i>Vireo solitarius</i>', 'Output/thumbnails/20091003 15699 Solitary Vireo Vireo solitarius IMG_4059.jpg', 132, 99, 0, 'South Lake Merced SF 10.03.09', '<p><B>Description</B>:<br />An obvious passerine with a dark head and yellow highlights.  The head was uniformly dark slaty or blue gray with a prominent white eye ring.  The eye ring continued from the top in a straight line towards the maxilla forming prominent white spectacles, contrasting strongly with the dark grey head.  The bill was stout and dark, appearing to be bluish-gray in the photos.  The lores were black, even darker than the head, forming a line between the front of the eye and the gape, though the lores did not strongly contrast with the dark coloration of the head.  The head was uniformly colored and dark gray with the exception of the nape, which was washed with green.  This is hard to see in the photos but was relatively easy to see in the field.</p> <p>The head contrasted strongly with the clean white throat.  The line of demarcation between the auriculars and the throat was clearly and abruptly defined with virtually no transition between the two.  At the base of the auriculars or shoulder was a pale greenish wash which as confined to the sides of the of the bird, just bleeding into the throat as is just visible in some of the photos.  The breast and belly and most of  the rest of the underparts were virtually unmarked clean white, again strongly contrasting with the upper parts   </p> <p>The sides of the breast and the flanks were yellow, with some faint dark streaking in the flanks.  The vent was strongly washed yellow, even brighter than the yellow on the flanks.  The undertail coverts where white.  The underside of the rectrices were dark with broad white edges visible on the outermost rectrix, visible in one of the photos.  The feet were bluish-gray.</p> <p>The back was bright yellowish-green, weakly contrasting with the nape but strongly contrasting with the head.  In particular, there was no gray on the upperparts whatsoever other than on the head proper.  The flight feathers were in general black.  The tertials had broad white edges to them.  The secondaries had fine yellowish-green edging while the primaries were also edged yellowish-green.  The greater and median secondary coverts had broad white tips tinged yellow forming two strong wing bars.  The greater primary coverts were entirely dark and lacked pale edges.  The upper side of the rectrices were dark (?) with prominent yellowish-green edges.  The bird was not heard to vocalize.</p> <p><B>Analysis:</B></p> <p>Few North American passerines have as prominent white spectacles on a dark face.  Yellow-breasted Chat has green on the back, yellow and white below, white spectacles with dark lores and bill but lacks wing bars.  Otherwise, we\'re left with vireos.  Gray Vireo has a white eye ring and white lores forming spectacles but is otherwise more or less uniformly gray and the lores are white rather than dark lores with a pale supraloral stripe and lacks wing bars.  Nominate Bell\'s Vireo <I>V. b. bellii</I><SPAN STYLE="font-style: normal"> can show green upper parts yellow below and two wing bars, but has a dark eye line breaking the white eye ring and lacks dark lores.  Hutton\'s Vireo lacks the dark head and has pale lores.  Black-capped Vireo (hah!) has large white spectacles on a dark head but has a red eye and lacks dark lores.  The spectacles on White-eyed Vireo and Yellow-throated Vireo are yellow, not white.</SPAN></p> <p><SPAN STYLE="font-style: normal">So, we\'re left only with the Solitary Vireo complex, which is where most experienced birders would have started.  In 1997, the AOU[1]</SPAN><SUP><SPAN STYLE="font-style: normal"> </SPAN></SUP><SPAN STYLE="font-style: normal">split the Solitary Vireo into 3 different species, Plumbeous Vireo </SPAN><I>V. plumbeus</I><SPAN STYLE="font-style: normal">, Cassin\'s Vireo </SPAN><I>V. cassinii</I><SPAN STYLE="font-style: normal">, and Blue-headed Vireo </SPAN><I>V. solitarius</I><SPAN STYLE="font-style: normal">.  With that split, birders become much more keenly attuned to separating the three phenotypes.  As part of that split, field identification became more challenging as the plumage differences can be subtle for certain individuals of the three species.</SPAN></p><p><SPAN STYLE="font-style: normal">Heindel[2] probably has covered field identification of the three species in the most detail; most of the following analysis relies on this work.  Pyle[3] has covered the molt of the Solitary Vireo complex in detail and we start there.  “Solitary Vireos complete their prebasic (PB) molt on the summering grounds.  HY birds have a partial PB molt usually includes all greater coverts but no tertials or rectrices.  AHY birds undergo a complete molt.”  The crisp primary (pp) coverts suggest that this is an AHY bird.</SPAN></p><p><SPAN STYLE="font-style: normal">Now, we head intrepidly onto specific identification.  Plumbeous Vireo seems to be the easiest to deal with.  In all plumages, </SPAN><I>plumbeus</I><SPAN STYLE="font-style: normal"> has a back that is concolorous with the head, unlike both </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  So, we\'re left separating </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, which is where experienced birders would have started to begin with.</SPAN></p><p><SPAN STYLE="font-style: normal">Separation of spring birds is relatively unambiguous between </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  Consider Figure 1 in Heindel[2]:</SPAN></p><P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> <I>The entire head is dark blue-gray, whereas the throat...is bright white.  Note how the gray extends through the auriculars, where it contrasts with green in the “shoulder” area.  The yellow at the sides of the breast is intense, rarely matched by </I><SPAN STYLE="font-style: normal">cassinii</SPAN><I>.</I></p> <P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> </p><P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"> Many of these field marks will prove useful for separating fall birds as well.</p> <P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"></p> <p><SPAN STYLE="font-style: normal">However, fall birds create some additional complications.  As specified in Pyle[3], the Solitary Vireo completes its prebasic molt on the summering grounds, therefore it fall birds can be at the absolute extreme of brightness.  Such a bright </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> is displayed in the photograph by Mlodinow[4].  Note the strong contrast between the grayish head and the whitish throat, surely at the bright extreme for cassinii    However, there are several features which I believe clearly separate this individual for a vagrant </SPAN><I>solitarius.</I></p><p><SPAN STYLE="font-style: normal">The first is the yellow on the underparts.  While the coloration is bright, note that the yellow is diffuse and not confined to the immediate sides of the breast and flanks.  Again, referring to Heindel[2], </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> appears never to show diffuse yellow as shown in this photo.  The second factor is blue gray on the head.  While it approaches the coloration of </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, note that the blue gray extends onto the nape and the upper back.  On </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the nape shows a distinct greenish wash, such as in the cover photograph of Heindel[2] and back is strongly green, with no grayish wash.  Finally, the third field mark is the auriculars themselves.  Notice in Mlodinow[4] that there appears to be a bit of a yellowish wash in the auricular region.  In </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the auriculars are clean blue-gray with bordered by greenish on the shoulder, not the auriculars.  In conclusion, I agree with the identification of Mlodinow[4] but also believe that </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> would be clearly separable from this individual.</SPAN></p><p><SPAN STYLE="font-style: normal">Starting with Heindel[2], let\'s build a list of field marks that objectively allow us to score individuals.</SPAN></p> <p></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Cassinii</I></p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Solitarius</I></p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weakly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Lacks blue; auriculars and nape greenish</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish gray with no green on the auriculars; nape washed green</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly-contrasting</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Pale greenish; occasionally white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak and blended</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Can be bright but diffuse across underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, how does the Lake Merced bird score?</SPAN></p><table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=171*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=67%> 				<P STYLE="font-style: normal">Lake Merced Bird</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=67%> 				<p>Very dark gray with hints of blue; no greenish wash at all</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strong; green on the back is much different from the head 				color</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=67%> 				<p>Broad white edges</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Auriculars solidly gray noticeably contrasting with green of 				the shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=67%> 				<p>Confined to the sides of the breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">Even if we say the cheek/throat contrast is equivocal, the rest of the field marks point rather unambiguously toward </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.   We can also test our scoring algorithm on other recent fall individuals such as those mentioned in Sterling[5] and Morlan[6]:</SPAN></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Sterling[5]</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Morlan[6]</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish-gray</p> 			</TD> 			<TD WIDTH=33%> 				<p>Dark gray (bluish gray in the description)</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars appearing to contrast with greenish 				shoulder</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, even allowing for the equivocal check/throat contrast, both Sterling[5] and Morlan[6] fall unambiguously in the </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> camp and I agree with the identification of these individuals.  I believe the scoring algorithm does indeed work for well-marked individuals and also believe that the Lake Merced bird is unambiguously BLUE-HEADED VIREO </SPAN><I>Vireo solitarius</I><SPAN STYLE="font-style: normal">.</SPAN></p><p><B><SPAN STYLE="font-style: normal">Literature and Photographs Cited:</SPAN></B></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[1] American Ornithologists\' Union. 1997. Forty-first supplement to the American Ornithologists\' Union Check-list of North American Birds. Auk 114:542-552.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[2] Heindel, Matt T. 1996. Field Identification of the Solitary Vireo Complex, Birding XXVIII: Number 6:458-471.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[3] Pyle, Peter. 1997. Identification Guide to North American Birds, Part I.  Slate Creek Press, Bolinas, California.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[4] Mlodinow, S. m54/2/038. Cassin\'s Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo cassinii </SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">Copyright © S. Mlodinow/VIREO, Mexico; Baja Sur: Miraflores Date: September 29 Sex Unknown.  Link at <a HREF="http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS" target="_blank">http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS</A>; you will need to create an account but the link is publicly accessible.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[5] Sterling, J.  Blue-headed Vireo, </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">, 13 November 2008 at Los Osos, SLO Photo © 2008 John Sterling, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm</A>.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[6] Morlan, J. Blue-headed Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal"> Mendoza Ranch, Point Reyes National Seashore, County, California, 1 October 2004, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm</a>.</SPAN></SPAN></p>', 'October \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200910034062, 'locallyrare', '200910034062', 'birds', 'Galleries/Locally Rare/Output/images/20091003 15699 Solitary Vireo Vireo solitarius IMG_4062.jpg', 600, 450, 'Blue-headed Vireo <i>Vireo solitarius</i>', 'Output/thumbnails/20091003 15699 Solitary Vireo Vireo solitarius IMG_4062.jpg', 132, 99, 0, 'South Lake Merced SF 10.03.09', '<p><B>Description</B>:<br />An obvious passerine with a dark head and yellow highlights.  The head was uniformly dark slaty or blue gray with a prominent white eye ring.  The eye ring continued from the top in a straight line towards the maxilla forming prominent white spectacles, contrasting strongly with the dark grey head.  The bill was stout and dark, appearing to be bluish-gray in the photos.  The lores were black, even darker than the head, forming a line between the front of the eye and the gape, though the lores did not strongly contrast with the dark coloration of the head.  The head was uniformly colored and dark gray with the exception of the nape, which was washed with green.  This is hard to see in the photos but was relatively easy to see in the field.</p> <p>The head contrasted strongly with the clean white throat.  The line of demarcation between the auriculars and the throat was clearly and abruptly defined with virtually no transition between the two.  At the base of the auriculars or shoulder was a pale greenish wash which as confined to the sides of the of the bird, just bleeding into the throat as is just visible in some of the photos.  The breast and belly and most of  the rest of the underparts were virtually unmarked clean white, again strongly contrasting with the upper parts   </p> <p>The sides of the breast and the flanks were yellow, with some faint dark streaking in the flanks.  The vent was strongly washed yellow, even brighter than the yellow on the flanks.  The undertail coverts where white.  The underside of the rectrices were dark with broad white edges visible on the outermost rectrix, visible in one of the photos.  The feet were bluish-gray.</p> <p>The back was bright yellowish-green, weakly contrasting with the nape but strongly contrasting with the head.  In particular, there was no gray on the upperparts whatsoever other than on the head proper.  The flight feathers were in general black.  The tertials had broad white edges to them.  The secondaries had fine yellowish-green edging while the primaries were also edged yellowish-green.  The greater and median secondary coverts had broad white tips tinged yellow forming two strong wing bars.  The greater primary coverts were entirely dark and lacked pale edges.  The upper side of the rectrices were dark (?) with prominent yellowish-green edges.  The bird was not heard to vocalize.</p> <p><B>Analysis:</B></p> <p>Few North American passerines have as prominent white spectacles on a dark face.  Yellow-breasted Chat has green on the back, yellow and white below, white spectacles with dark lores and bill but lacks wing bars.  Otherwise, we\'re left with vireos.  Gray Vireo has a white eye ring and white lores forming spectacles but is otherwise more or less uniformly gray and the lores are white rather than dark lores with a pale supraloral stripe and lacks wing bars.  Nominate Bell\'s Vireo <I>V. b. bellii</I><SPAN STYLE="font-style: normal"> can show green upper parts yellow below and two wing bars, but has a dark eye line breaking the white eye ring and lacks dark lores.  Hutton\'s Vireo lacks the dark head and has pale lores.  Black-capped Vireo (hah!) has large white spectacles on a dark head but has a red eye and lacks dark lores.  The spectacles on White-eyed Vireo and Yellow-throated Vireo are yellow, not white.</SPAN></p> <p><SPAN STYLE="font-style: normal">So, we\'re left only with the Solitary Vireo complex, which is where most experienced birders would have started.  In 1997, the AOU[1]</SPAN><SUP><SPAN STYLE="font-style: normal"> </SPAN></SUP><SPAN STYLE="font-style: normal">split the Solitary Vireo into 3 different species, Plumbeous Vireo </SPAN><I>V. plumbeus</I><SPAN STYLE="font-style: normal">, Cassin\'s Vireo </SPAN><I>V. cassinii</I><SPAN STYLE="font-style: normal">, and Blue-headed Vireo </SPAN><I>V. solitarius</I><SPAN STYLE="font-style: normal">.  With that split, birders become much more keenly attuned to separating the three phenotypes.  As part of that split, field identification became more challenging as the plumage differences can be subtle for certain individuals of the three species.</SPAN></p><p><SPAN STYLE="font-style: normal">Heindel[2] probably has covered field identification of the three species in the most detail; most of the following analysis relies on this work.  Pyle[3] has covered the molt of the Solitary Vireo complex in detail and we start there.  “Solitary Vireos complete their prebasic (PB) molt on the summering grounds.  HY birds have a partial PB molt usually includes all greater coverts but no tertials or rectrices.  AHY birds undergo a complete molt.”  The crisp primary (pp) coverts suggest that this is an AHY bird.</SPAN></p><p><SPAN STYLE="font-style: normal">Now, we head intrepidly onto specific identification.  Plumbeous Vireo seems to be the easiest to deal with.  In all plumages, </SPAN><I>plumbeus</I><SPAN STYLE="font-style: normal"> has a back that is concolorous with the head, unlike both </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  So, we\'re left separating </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, which is where experienced birders would have started to begin with.</SPAN></p><p><SPAN STYLE="font-style: normal">Separation of spring birds is relatively unambiguous between </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> and </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.  Consider Figure 1 in Heindel[2]:</SPAN></p><P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> <I>The entire head is dark blue-gray, whereas the throat...is bright white.  Note how the gray extends through the auriculars, where it contrasts with green in the “shoulder” area.  The yellow at the sides of the breast is intense, rarely matched by </I><SPAN STYLE="font-style: normal">cassinii</SPAN><I>.</I></p> <P STYLE="margin-left: 0.49in; margin-bottom: 0in; font-weight: normal"> </p><P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"> Many of these field marks will prove useful for separating fall birds as well.</p> <P STYLE="margin-bottom: 0in; font-style: normal; font-weight: normal"></p> <p><SPAN STYLE="font-style: normal">However, fall birds create some additional complications.  As specified in Pyle[3], the Solitary Vireo completes its prebasic molt on the summering grounds, therefore it fall birds can be at the absolute extreme of brightness.  Such a bright </SPAN><I>cassinii</I><SPAN STYLE="font-style: normal"> is displayed in the photograph by Mlodinow[4].  Note the strong contrast between the grayish head and the whitish throat, surely at the bright extreme for cassinii    However, there are several features which I believe clearly separate this individual for a vagrant </SPAN><I>solitarius.</I></p><p><SPAN STYLE="font-style: normal">The first is the yellow on the underparts.  While the coloration is bright, note that the yellow is diffuse and not confined to the immediate sides of the breast and flanks.  Again, referring to Heindel[2], </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> appears never to show diffuse yellow as shown in this photo.  The second factor is blue gray on the head.  While it approaches the coloration of </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, note that the blue gray extends onto the nape and the upper back.  On </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the nape shows a distinct greenish wash, such as in the cover photograph of Heindel[2] and back is strongly green, with no grayish wash.  Finally, the third field mark is the auriculars themselves.  Notice in Mlodinow[4] that there appears to be a bit of a yellowish wash in the auricular region.  In </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">, the auriculars are clean blue-gray with bordered by greenish on the shoulder, not the auriculars.  In conclusion, I agree with the identification of Mlodinow[4] but also believe that </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> would be clearly separable from this individual.</SPAN></p><p><SPAN STYLE="font-style: normal">Starting with Heindel[2], let\'s build a list of field marks that objectively allow us to score individuals.</SPAN></p> <p></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Cassinii</I></p> 			</TH> 			<TH WIDTH=33%> 				<p><I>Solitarius</I></p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weakly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Lacks blue; auriculars and nape greenish</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish gray with no green on the auriculars; nape washed green</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly-contrasting</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Pale greenish; occasionally white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Weak and blended</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Can be bright but diffuse across underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, how does the Lake Merced bird score?</SPAN></p><table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=171*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=67%> 				<P STYLE="font-style: normal">Lake Merced Bird</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=67%> 				<p>Very dark gray with hints of blue; no greenish wash at all</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Strong; green on the back is much different from the head 				color</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=67%> 				<p>Broad white edges</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=67%> 				<p>Auriculars solidly gray noticeably contrasting with green of 				the shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=67%> 				<p>Confined to the sides of the breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">Even if we say the cheek/throat contrast is equivocal, the rest of the field marks point rather unambiguously toward </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal">.   We can also test our scoring algorithm on other recent fall individuals such as those mentioned in Sterling[5] and Morlan[6]:</SPAN></p> <table WIDTH=100% BORDER=1 BORDERCOLOR="#000000" CELLPADDING=4 CELLSPACING=0> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<COL WIDTH=85*> 	<THEAD> 		<TR VALIGN=TOP> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Field Mark</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Sterling[5]</p> 			</TH> 			<TH WIDTH=33%> 				<P STYLE="font-style: normal">Morlan[6]</p> 			</TH> 		</TR> 	</THEAD> 	<TBODY> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Cheek/throat contrast</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly delineated</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Head color</p> 			</TD> 			<TD WIDTH=33%> 				<p>Bluish-gray</p> 			</TD> 			<TD WIDTH=33%> 				<p>Dark gray (bluish gray in the description)</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Crown/back contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 			<TD WIDTH=33%> 				<p>Unknown</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Rectrix edging</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 			<TD WIDTH=33%> 				<p>Strongly white</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Auricular/shoulder contrast  				</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars appearing to contrast with greenish 				shoulder</p> 			</TD> 			<TD WIDTH=33%> 				<p>Clean gray auriculars contrasting with greenish shoulder</p> 			</TD> 		</TR> 		<TR VALIGN=TOP> 			<TD WIDTH=33%> 				<p>Yellowish coloration on underparts</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 			<TD WIDTH=33%> 				<p>Restricted to sides of breast and flanks</p> 			</TD> 		</TR> 	</TBODY> </table> <p><SPAN STYLE="font-style: normal">So, even allowing for the equivocal check/throat contrast, both Sterling[5] and Morlan[6] fall unambiguously in the </SPAN><I>solitarius</I><SPAN STYLE="font-style: normal"> camp and I agree with the identification of these individuals.  I believe the scoring algorithm does indeed work for well-marked individuals and also believe that the Lake Merced bird is unambiguously BLUE-HEADED VIREO </SPAN><I>Vireo solitarius</I><SPAN STYLE="font-style: normal">.</SPAN></p><p><B><SPAN STYLE="font-style: normal">Literature and Photographs Cited:</SPAN></B></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[1] American Ornithologists\' Union. 1997. Forty-first supplement to the American Ornithologists\' Union Check-list of North American Birds. Auk 114:542-552.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[2] Heindel, Matt T. 1996. Field Identification of the Solitary Vireo Complex, Birding XXVIII: Number 6:458-471.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[3] Pyle, Peter. 1997. Identification Guide to North American Birds, Part I.  Slate Creek Press, Bolinas, California.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[4] Mlodinow, S. m54/2/038. Cassin\'s Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo cassinii </SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">Copyright © S. Mlodinow/VIREO, Mexico; Baja Sur: Miraflores Date: September 29 Sex Unknown.  Link at <a HREF="http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS" target="_blank">http://vireo.acnatsci.org/search.html?Form=Search&amp;SEARCHBY=Common&amp;KEYWORDS=cassin%27s+vireo&amp;showwhat=images&amp;AGE=All&amp;SEX=All&amp;ACT=All&amp;Search=Search&amp;VIEW=All&amp;ORIENTATION=All&amp;RESULTS</A>; you will need to create an account but the link is publicly accessible.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[5] Sterling, J.  Blue-headed Vireo, </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">, 13 November 2008 at Los Osos, SLO Photo © 2008 John Sterling, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/gallery.htm</A>.</SPAN></SPAN></p> <p><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal">[6] Morlan, J. Blue-headed Vireo </SPAN></SPAN><I><SPAN STYLE="font-weight: normal">Vireo solitarius</SPAN></I><SPAN STYLE="font-style: normal"><SPAN STYLE="font-weight: normal"> Mendoza Ranch, Point Reyes National Seashore, County, California, 1 October 2004, found at <A HREF="http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm" target="_blank">http://fog.ccsf.cc.ca.us/~jmorlan/bhvi100104.htm</a>.</SPAN></SPAN></p>', 'October \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200909013857, 'locallyrare', '200909013857', 'birds', 'Galleries/Locally Rare/Output/images/20090901 Empid IMG_3857.jpg', 600, 450, 'Western Flycatcher <i>Empidonax (occidentalis) difficilis/occidentalis</i>', 'Output/thumbnails/20090901 Empid IMG_3857.jpg', 132, 99, 0, 'South Lake Merced SF 9.1.09', 'OK, so what\'s the big deal here?  Isn\'t this a typical HY Western Flycatcher?  Well, that\'s what I identified in the field and I still agree, but take a look at the bill length.  The measurement I use is from the base of the (exposed) bill to the tip of the bill to the width of the head measured from that same point to the back of the head.  On this bird, that ratio is 1:2 while one more typical WEFL it is 1:1.5.  If you have any idea why this bird appears to have a bill that\'s much shorter than one would expect, please let me know.', 'September \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200909013859, 'locallyrare', '200909013859', 'birds', 'Galleries/Locally Rare/Output/images/20090901 Empid IMG_3859.jpg', 600, 450, 'Western Flycatcher <i>Empidonax (occidentalis) difficilis/occidentalis</i>', 'Output/thumbnails/20090901 Empid IMG_3859.jpg', 132, 99, 0, 'South Lake Merced SF 9.1.09', 'OK, so what\'s the big deal here?  Isn\'t this a typical HY Western Flycatcher?  Well, that\'s what I identified in the field and I still agree, but take a look at the bill length.  The measurement I use is from the base of the (exposed) bill to the tip of the bill to the width of the head measured from that same point to the back of the head.  On this bird, that ratio is 1:2 while one more typical WEFL it is 1:1.5.  If you have any idea why this bird appears to have a bill that\'s much shorter than one would expect, please let me know.', 'September \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(2009090139883881, 'locallyrare', '2009090139883881', 'birds', 'Galleries/Locally Rare/Output/images/20090901 3988 Wilson\'s Phalarope Phalaropus tricolor IMG_3881.jpg', 600, 450, 'Wilson\'s Phalarope <i>Phalaropus tricolor</i>', 'Output/thumbnails/20090901 3988 Wilson\'s Phalarope Phalaropus tricolor IMG_3881.jpg', 132, 99, 0, 'South Lake Merced SF 9.1.09', 'Very scarce along the immediate coast, this individual was one of 4 that graced the garbage-strewn south end of the Concrete Bridge', 'September \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(2009090139883888, 'locallyrare', '2009090139883888', 'birds', 'Galleries/Locally Rare/Output/images/20090901 3988 Wilson\'s Phalarope Phalaropus tricolor IMG_3888.jpg', 600, 450, 'Wilson\'s Phalarope <i>Phalaropus tricolor</i>', 'Output/thumbnails/20090901 3988 Wilson\'s Phalarope Phalaropus tricolor IMG_3888.jpg', 132, 99, 0, 'South Lake Merced SF 9.1.09', 'Very scarce along the immediate coast, this individual was one of 4 that graced the garbage-strewn south end of the Concrete Bridge', 'September \'09', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(2009083017433799, 'locallyrare', '2009083017433799', 'birds', 'Galleries/8.30.09 Monterey Bay/Output/images/200908301743 Wilson\'s Storm-Petrel Oceanites oceanicus IMG_3799.jpg', 600, 450, 'Wilson\'s Storm-Petrel <i>Oceanites oceanicus</i>', '../8.30.09 Monterey Bay/Output/thumbnails/200908301743 Wilson\'s Storm-Petrel Oceanites oceanicus IMG_3799.jpg', 132, 99, 0, 'Monterey Bay 8.16.09', 'Nice photo in difficult conditions of the only Wilson\'s Storm-Petrel on the day.  Notice the white undertail coverts and the long legs, visible even in flight projecting beyond the tip of the tail.', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(200908116613518, 'locallyrare', '200908116613518', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3518.jpg', 600, 450, 'Hawaiian Petrel <i>Pterodroma sandwichensis</i>', '../8.16.09 Cordell Bank/Output/thumbnails/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3518.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'While I didn\'t get a photo of any of the Cook\'s Petrels that were seen on the day, this bird lingered at the rear of the boat around the slick and allowed these set of photos to be taken.<p><b>Description:</b><br/>An obvious seabird bearing a superficial resemablance to a shearwater.  However, the flight style was completely different; the bird rarely moved its wings and often banked dramatically upward so that the wings were almost vertical forming large sweeping arcs.  The undersiders were generally clean white; the underwing was fairly white with a dark trailing edge and the underside of the outer primaries.  The leading edge on the underwing was bold black, continuing into a prominent black "comma" on the underwing secondary coverts.  The undertail coverts appeared to be clean white and the tail tapered noticeable almost to a point</p><p>The upperparts were brownish-gray, with a fairly distinct "M" on the upperwing, more so than is shown in photos.  The cap was black, contrasting with the gray hood that extended well below the eye.  The forehead was white, contrasting strongly with the black bill and black cap and the cap and hood were cleanly separated from the white chin and throat.  The bird was close enough that the all black was relatively short and stubby, quite unlike a shearwater bill, and the rump showed just a small amount of white at the base of the uppertail coverts.</p><p><b>Analysis:</b><br/>Most seabirders dream about ever getting to see one of these babies let alone have one fly close enough up the wake to get nearly full frame photos.  Bill shape and underwing pattern effectively eliminate all shearwaters or anything else that I can think of, so we\'re left with the genus <i>Pterodroma</i>.  Six species of <i>Pterodroma</i> have been recorded in CA.  Great-winged Petrel has dark underwings and Murphy\'s Petrel has a relatively uniform plumage.  Mottled Petrel has a gray belly.  The more common :-) Cook\'s Petrel has a stronger gray and white pattern on the upperparts and a much cleaner underwing such as the individual I saw earlier in the trip.</p><p>Stejneger\'s Petrel requires a bit of discussion and I have no field experience with this bird.  Photos I\'ve found of this bird suggest plmage that is closer to Cook\'s with a darker cap.  That would seem to be eliminated by these photos.  So, we\'re left with DARK-RUMPED PETREL <i>Pterodroma phaeopygia/sandwichensis</i>.</p><p>While the California Bird Records Committee<sup>1</sup> does not differentiate between the Galapagos and Hawaiian Petrels for review purposes, the AOU checklist<sup>2</sup> recognizes Hawaiian and Galapagos Petrels as separate species so it\'s worthwhile attempting to identify this bird to species.  Additionall, Force, Webb and Howell<sup>3</sup> have published a recent paper suggesting that all records from Calfiornia to date are indeed <i>P. sandwichensis</i>.<p></p>  The key identifying field mark from that article is:</p><p style="padding-left: 10px"><i>...the blackish-brown cap is smaller (the dark extends less below the eye), and white from the neck sides cuts up behind the cap, forming a notch between the cap and the dark sides of the neck...</i></p><p>if you carefully look at the ventral photo of the bird, you can clearly see the aforementioned notch as well as the much reduced dark area on the neck.  Thus, we can confidently identify this individual as HAWAIIAN PETREL <i>Pterodroma sandwichensis</i>.</p><p><bold>Literature cited:</bold><br/>[1] Review List of the Western Field Ornithologists\' California Bird Records Committee, 14 August 2009, http://www.californiabirds.org/review.html.<br/>[2] American Ornithologists’ union. 2009. Fitieth supplement to the American Ornithologists’ union Checklist of North American Birds. The Auk July 2009, Vol. 126, No. 3, Pages 705–714.<br/>[3]Michael P. Force, Sophie W. Webb, and Steve N. G. Howell, Featured Photo: Identification at Sea of Hawaiian and Galapagos Petrels , Western Birds 38:242–248, 2007.</p>', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(200908116613524, 'locallyrare', '200908116613524', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3524.jpg', 600, 450, 'Hawaiian Petrel <i>Pterodroma sandwichensis</i>', '../8.16.09 Cordell Bank/Output/thumbnails/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3524.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'While I didn\'t get a photo of any of the Cook\'s Petrels that were seen on the day, this bird lingered at the rear of the boat around the slick and allowed these set of photos to be taken.<p><b>Description:</b><br/>An obvious seabird bearing a superficial resemablance to a shearwater.  However, the flight style was completely different; the bird rarely moved its wings and often banked dramatically upward so that the wings were almost vertical forming large sweeping arcs.  The undersiders were generally clean white; the underwing was fairly white with a dark trailing edge and the underside of the outer primaries.  The leading edge on the underwing was bold black, continuing into a prominent black "comma" on the underwing secondary coverts.  The undertail coverts appeared to be clean white and the tail tapered noticeable almost to a point</p><p>The upperparts were brownish-gray, with a fairly distinct "M" on the upperwing, more so than is shown in photos.  The cap was black, contrasting with the gray hood that extended well below the eye.  The forehead was white, contrasting strongly with the black bill and black cap and the cap and hood were cleanly separated from the white chin and throat.  The bird was close enough that the all black was relatively short and stubby, quite unlike a shearwater bill, and the rump showed just a small amount of white at the base of the uppertail coverts.</p><p><b>Analysis:</b><br/>Most seabirders dream about ever getting to see one of these babies let alone have one fly close enough up the wake to get nearly full frame photos.  Bill shape and underwing pattern effectively eliminate all shearwaters or anything else that I can think of, so we\'re left with the genus <i>Pterodroma</i>.  Six species of <i>Pterodroma</i> have been recorded in CA.  Great-winged Petrel has dark underwings and Murphy\'s Petrel has a relatively uniform plumage.  Mottled Petrel has a gray belly.  The more common :-) Cook\'s Petrel has a stronger gray and white pattern on the upperparts and a much cleaner underwing such as the individual I saw earlier in the trip.</p><p>Stejneger\'s Petrel requires a bit of discussion and I have no field experience with this bird.  Photos I\'ve found of this bird suggest plmage that is closer to Cook\'s with a darker cap.  That would seem to be eliminated by these photos.  So, we\'re left with DARK-RUMPED PETREL <i>Pterodroma phaeopygia/sandwichensis</i>.</p><p>While the California Bird Records Committee<sup>1</sup> does not differentiate between the Galapagos and Hawaiian Petrels for review purposes, the AOU checklist<sup>2</sup> recognizes Hawaiian and Galapagos Petrels as separate species so it\'s worthwhile attempting to identify this bird to species.  Additionall, Force, Webb and Howell<sup>3</sup> have published a recent paper suggesting that all records from Calfiornia to date are indeed <i>P. sandwichensis</i>.<p></p>  The key identifying field mark from that article is:</p><p style="padding-left: 10px"><i>...the blackish-brown cap is smaller (the dark extends less below the eye), and white from the neck sides cuts up behind the cap, forming a notch between the cap and the dark sides of the neck...</i></p><p>if you carefully look at the ventral photo of the bird, you can clearly see the aforementioned notch as well as the much reduced dark area on the neck.  Thus, we can confidently identify this individual as HAWAIIAN PETREL <i>Pterodroma sandwichensis</i>.</p><p><bold>Literature cited:</bold><br/>[1] Review List of the Western Field Ornithologists\' California Bird Records Committee, 14 August 2009, http://www.californiabirds.org/review.html.<br/>[2] American Ornithologists’ union. 2009. Fitieth supplement to the American Ornithologists’ union Checklist of North American Birds. The Auk July 2009, Vol. 126, No. 3, Pages 705–714.<br/>[3]Michael P. Force, Sophie W. Webb, and Steve N. G. Howell, Featured Photo: Identification at Sea of Hawaiian and Galapagos Petrels , Western Birds 38:242–248, 2007.</p>', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(200908116613526, 'locallyrare', '200908116613526', 'birds', 'Galleries/8.16.09 Cordell Bank/Output/images/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3526.jpg', 600, 450, 'Hawaiian Petrel <i>Pterodroma sandwichensis</i>', '../8.16.09 Cordell Bank/Output/thumbnails/1661 Hawaiian Petrel Pterodroma sandwichensis IMG_3526.jpg', 132, 99, 0, 'Cordell Bank 8.16.09', 'While I didn\'t get a photo of any of the Cook\'s Petrels that were seen on the day, this bird lingered at the rear of the boat around the slick and allowed these set of photos to be taken.<p><b>Description:</b><br/>An obvious seabird bearing a superficial resemablance to a shearwater.  However, the flight style was completely different; the bird rarely moved its wings and often banked dramatically upward so that the wings were almost vertical forming large sweeping arcs.  The undersiders were generally clean white; the underwing was fairly white with a dark trailing edge and the underside of the outer primaries.  The leading edge on the underwing was bold black, continuing into a prominent black "comma" on the underwing secondary coverts.  The undertail coverts appeared to be clean white and the tail tapered noticeable almost to a point</p><p>The upperparts were brownish-gray, with a fairly distinct "M" on the upperwing, more so than is shown in photos.  The cap was black, contrasting with the gray hood that extended well below the eye.  The forehead was white, contrasting strongly with the black bill and black cap and the cap and hood were cleanly separated from the white chin and throat.  The bird was close enough that the all black was relatively short and stubby, quite unlike a shearwater bill, and the rump showed just a small amount of white at the base of the uppertail coverts.</p><p><b>Analysis:</b><br/>Most seabirders dream about ever getting to see one of these babies let alone have one fly close enough up the wake to get nearly full frame photos.  Bill shape and underwing pattern effectively eliminate all shearwaters or anything else that I can think of, so we\'re left with the genus <i>Pterodroma</i>.  Six species of <i>Pterodroma</i> have been recorded in CA.  Great-winged Petrel has dark underwings and Murphy\'s Petrel has a relatively uniform plumage.  Mottled Petrel has a gray belly.  The more common :-) Cook\'s Petrel has a stronger gray and white pattern on the upperparts and a much cleaner underwing such as the individual I saw earlier in the trip.</p><p>Stejneger\'s Petrel requires a bit of discussion and I have no field experience with this bird.  Photos I\'ve found of this bird suggest plmage that is closer to Cook\'s with a darker cap.  That would seem to be eliminated by these photos.  So, we\'re left with DARK-RUMPED PETREL <i>Pterodroma phaeopygia/sandwichensis</i>.</p><p>While the California Bird Records Committee<sup>1</sup> does not differentiate between the Galapagos and Hawaiian Petrels for review purposes, the AOU checklist<sup>2</sup> recognizes Hawaiian and Galapagos Petrels as separate species so it\'s worthwhile attempting to identify this bird to species.  Additionall, Force, Webb and Howell<sup>3</sup> have published a recent paper suggesting that all records from Calfiornia to date are indeed <i>P. sandwichensis</i>.<p></p>  The key identifying field mark from that article is:</p><p style="padding-left: 10px"><i>...the blackish-brown cap is smaller (the dark extends less below the eye), and white from the neck sides cuts up behind the cap, forming a notch between the cap and the dark sides of the neck...</i></p><p>if you carefully look at the ventral photo of the bird, you can clearly see the aforementioned notch as well as the much reduced dark area on the neck.  Thus, we can confidently identify this individual as HAWAIIAN PETREL <i>Pterodroma sandwichensis</i>.</p><p><bold>Literature cited:</bold><br/>[1] Review List of the Western Field Ornithologists\' California Bird Records Committee, 14 August 2009, http://www.californiabirds.org/review.html.<br/>[2] American Ornithologists’ union. 2009. Fitieth supplement to the American Ornithologists’ union Checklist of North American Birds. The Auk July 2009, Vol. 126, No. 3, Pages 705–714.<br/>[3]Michael P. Force, Sophie W. Webb, and Steve N. G. Howell, Featured Photo: Identification at Sea of Hawaiian and Galapagos Petrels , Western Birds 38:242–248, 2007.</p>', 'August \'09', 'Mark Eaton', 'Northern California nearshore', '', ''),
				new photo(200907152841, 'locallyrare', '200907152841', 'birds', 'Galleries/Locally Rare/Output/images/20090715 2302 White-tailed Kite Elanus leucurus IMG_2841.jpg', 600, 450, 'White-tailed Kite <i>Elanus leucurus</i>', 'Output/thumbnails/20090715 2302 White-tailed Kite Elanus leucurus IMG_2841.jpg', 132, 99, 0, 'On the mesa at Lake Merced North', 'Rob Cullison found this juvenile, presumably a post-breeding dispersant.  Relatively scarce other than in migration in San Francisco and this plumage is rarely seen.', 'July 15 2009', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200907152859, 'locallyrare', '200907152859', 'birds', 'Galleries/Locally Rare/Output/images/20090715 2302 White-tailed Kite Elanus leucurus IMG_2859.jpg', 600, 450, 'White-tailed Kite <i>Elanus leucurus</i>', 'Output/thumbnails/20090715 2302 White-tailed Kite Elanus leucurus IMG_2859.jpg', 132, 99, 0, 'On the mesa at Lake Merced North', 'Rob Cullison found this juvenile, presumably a post-breeding dispersant.  Relatively scarce other than in migration in San Francisco and this plumage is rarely seen.', 'July 15 2009', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200906212423, 'locallyrare', '200906212423', 'birds', 'Galleries/Locally Rare/Output/images/20090621 29620 Indigo Bunting Passerina cyanea IMG_2423.jpg', 600, 450, 'Indigo Bunting <i>Passerina cyanea</i>', 'Output/thumbnails/20090621 29620 Indigo Bunting Passerina cyanea IMG_2423.jpg', 132, 99, 0, 'Monte Bello OSP', 'One of two birds found this year in the same general area.  Singing its little head off.', 'June 21 2009', 'Mark Eaton', 'Walnut Grove near gate 3, Monte Bello OSP, SCL', '', ''),
				new photo(200906212442, 'locallyrare', '200906212442', 'birds', 'Galleries/Locally Rare/Output/images/20090621 29620 Indigo Bunting Passerina cyanea IMG_2442.jpg', 600, 450, 'Indigo Bunting <i>Passerina cyanea</i>', 'Output/thumbnails/20090621 29620 Indigo Bunting Passerina cyanea IMG_2442.jpg', 132, 99, 0, 'Monte Bello OSP', 'One of two birds found this year in the same general area.  Singing its little head off.', 'June 21 2009', 'Mark Eaton', 'Walnut Grove near gate 3, Monte Bello OSP, SCL', '', ''),
				new photo(200906172271, 'locallyrare', '200906172271', 'birds', 'Galleries/Locally Rare/Output/images/20090617 14590 Eastern Kingbird Tyrannus tyrannus IMG_2271.jpg', 600, 450, 'Eastern Kingbird <i>Tyrannus tyrannus</i>', 'Output/thumbnails/20090617 14590 Eastern Kingbird Tyrannus tyrannus IMG_2271.jpg', 132, 99, 0, 'Near the tennis courts at the eastern end of Golden Gate Park', 'Richard Bradus found this nice bird while walking serendipitously through the park.  Very scarce in spring, or, for that matter, just about anytime in SF.', 'June 17 2009', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200906172274, 'locallyrare', '200906172274', 'birds', 'Galleries/Locally Rare/Output/images/20090617 14590 Eastern Kingbird Tyrannus tyrannus IMG_2274.jpg', 600, 450, 'Eastern Kingbird <i>Tyrannus tyrannus</i>', 'Output/thumbnails/20090617 14590 Eastern Kingbird Tyrannus tyrannus IMG_2274.jpg', 132, 99, 0, 'Near the tennis courts at the eastern end of Golden Gate Park', 'Richard Bradus found this nice bird while walking serendipitously through the park.  Very scarce in spring, or, for that matter, just about anytime in SF.', 'June 17 2009', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200906172284, 'locallyrare', '200906172284', 'birds', 'Galleries/Locally Rare/Output/images/20090617 14590 Eastern Kingbird Tyrannus tyrannus IMG_2284.jpg', 600, 450, 'Eastern Kingbird <i>Tyrannus tyrannus</i>', 'Output/thumbnails/20090617 14590 Eastern Kingbird Tyrannus tyrannus IMG_2284.jpg', 132, 99, 0, 'Near the tennis courts at the eastern end of Golden Gate Park', 'Richard Bradus found this nice bird while walking serendipitously through the park.  Very scarce in spring, or, for that matter, just about anytime in SF.', 'June 17 2009', 'Mark Eaton', 'City of San Francisco', '', ''),
				new photo(200906102122, 'locallyrare', '200906102122', 'birds', 'Galleries/Locally Rare/Output/images/20090610 