";
$("#more-gallery").append(gallery).html();
}
function removeGallery(id) {
$("#" + id).remove();
}
function getRandomInt() {
min = Math.ceil(0);
max = Math.floor(9999999999);
return Math.floor(Math.random() * (max - min) + min); //The maximum is exclusive and the minimum is inclusive
}
})(jQuery);