$(document).ready(function() {
	$("a[rel^='lightbox']").prettyPhoto({
		padding: 20, /* padding for each side of the picture */
		opacity: 0.8, /* Value betwee 0 and 1 */
		showTitle: false, /* true/false */
		allowresize: false, /* true for images? */
		theme: 'dark_square', /* light_rounded / dark_rounded / light_square / dark_square */
		modal: false, /* If set to true, only the close button will close the window */
		callback: function(){
			$('#gallery').cycle('resume', true); 
		} /* Called when prettyPhoto is closed */
	});
});

