/**
 * by Dieter Orens for GPMD
 * changes the click behaviour of the photogallery link so it initiates the lightbox...
 */

var PhotoGal = 
{
	init:function()
	{
		if(!$('PhotoGallery') || !$('GalleryLinks')) return;
		$('PhotoGallery').addEvent('click', this.clickHandler);
	},
	clickHandler:function(event)
	{
		event = new Event(event);
		event.preventDefault();
		var firstPic = $('GalleryLinks').getElement('a');
		Lightbox.click(firstPic);
	}
}

window.addEvent('domready', PhotoGal.init.bind(PhotoGal));