var photoGallery = {

	open: function( gallery_id ){

		alert( gallery_id );
	}
}

$(document).ready(function()
	{
		$("a.photoGallery").fancybox(
			{
				onStart: function(){
					var height = $( '.flashmovie' ).height();
					$( '.flashmovie :first-child' ).hide();
					$( '.flashmovie' ).height( height );
				},
				onClosed: function(){
					$( '.flashmovie :first-child' ).show();
				},
				onComplete: function(){
					slideshow.add( '#fancybox-inner .slideshow_container' );
					$.fancybox.resize();
                   
				},
				scrolling: 'no',
				overlayColor: '#000000',
				overlayOpacity: 0.8,
				showCloseButton: true,
				padding: 0,
				margin: 0,
				autoScale: true
			}
		);
	}
);
