function LoadAlbum(id, container) {
	jQuery.get("/controllers/gallery.php?id="+id, function(data) {
		jQuery(container).html(data);
	});
}
