/* /scripts/nav-custom-2009.js */

$(document).ready( function () {
	$('#main-content #description .description-images a').click(function () { 
		var thumb = $('img', this).attr('src');
		var splash = thumb.replace(/_tn/, '');
		//alert("thumb: " + thumb + ", splash: " + splash);
		$('#main-content #splash img').attr('src', splash);
		return false; 
	} );
} );

