// jQuery

var allImages = [];

function openLightbox() {

   $.prettyPhoto.open(allImages);

}

$(function() {
	$('head').append('<script type="text/javascript" src="prettyPhoto/js/jquery.prettyPhoto.js"></script><link rel="stylesheet" href="prettyPhoto/css/prettyPhoto.css" type="text/css" media="screen">');
	
	
	jQuery.getJSON( '/get_images.php', function(images) {
	   
	    allImages = images;
	   
	
		
		$('#gallery-images a').prettyPhoto({ wmode: 'opaque', hideflash: 'true' });
		
		
	});
	

});