/**
 * photos.js - photos specific javascript
 *
*/

/**
 * resizes the tabs on-screen
 *
 * @return void
 * @author Tim Cromwell
 **/
$(document).ready(function () 
{
    resizeTabs("#photo_tabs");

	// initialise the photo thumbnails
	$('li#pane_2009 ul.photo_thumbnails li a').lightBox(); // Select all links in object with gallery ID
	$('li#pane_2008 ul.photo_thumbnails li a').lightBox(); // Select all links in object with gallery ID
	$('li#pane_2007 ul.photo_thumbnails li a').lightBox(); // Select all links in object with gallery ID
});
