
$(document).ready(function() {
	
	$('<div id="lightbox"></div>').appendTo('body').css({
		width: '100%',
		height: '100%',
		position: 'fixed',
		top: '0px',
		left: '0px',
		zIndex: '9000',
		backgroundColor: '#000',
		opacity:0.8,
		display: 'none'
	});
						   
	$('.open-gallery').click(function(event){
		event.preventDefault();
		$('#result').empty();
		$('#bt-prev').hide();
		$('#lightbox').fadeIn();
		$('#lightbox-cont, #result').fadeIn('slow');
	});	
	

});
