		var galleryId;
		$(document).ready(function() { 	if(galleryId) { showGallery(galleryId); } 	});
		
		function showGallery(selToken) {
			$.post("show-gallery.php",{ id: selToken} , function(data) {
					$(".gallery-container").html(data);
				});
		}

