$(window).bind( 'load', function(){
	$('.jqLightBox').each( function( i, e ) {
		$( e ).find('a').lightBox( {
			fixedNavigation: true
		} );
	} );
	$('.prodGallery').bind( 'click', function(e) {
		$( e.target ).next( '.jqLightBox:first' ).find( 'a:first' ).trigger( 'click' );
	} ).css( 'cursor', 'pointer' );
} );

function showLightBoxGallery( )
{
	$('.prodGallery').trigger( 'click' );
}

function showLBGallery( )
{
	$('.jqLightBox:first').find('a:first').trigger('click');
}

