/**
 * File: apme.gallery.js
 * Author: João Fonseca (j.fonseca@netcabo.pt)
 */
var apme = apme || {};

apme.gallery = {
    init : function () {
    //		$(".gallery_link").live('click', function(e) {
    //		e.preventDefault();
    //
    //apme.gallery.show($(this).attr('data-id'));

    //return false;
    //	});

    },
    show : function () {
        $(".gallery:not(.gallery-inited)").each(function (idx, ele) {
            $(ele).addClass('gallery-inited').load("/gallery.php?id=" + $(this).attr("data-id"));
        });
    }
};

