$(document).ready(function() {

  $(".show_gallery").click(function() {
    openGallery($(this).attr('data-gallery'));
  });
  

  function openGallery(gallery) {
    //gallery = encodeURIComponent(gallery);
    console.log(gallery);
    
    $.getJSON("/gallery/index?gallery="+gallery,
                function(data){
                        $('div#imgs').remove();
                        $div = $('<div/>').attr('id', 'imgs').appendTo('body');
                        $.each(data, function(i,item){
                            console.log(item);
                                $("<a/>").attr("rel", "group").addClass("json-im").appendTo($div).attr("href", item);
                        });
                        $("#imgs a").fancybox();
                        // Load the first element
                        $("#imgs a:first").trigger('click');

                });

  }

});
