﻿var elementID = "#result1";
var svcPrefix = "http://galerije.dostop.si/"; // set this to where the service is, like http://gallery.dostop.si/Gws/"
function LoadAlbums() {

    $.getJSON(svcPrefix + "GallerySvc.ashx?action=albums&jsoncallback=?",
        function(data) {
            $(elementID).setTemplateElement("galleryTemplate");
            $(elementID).processTemplate(data);
        });
}

function LoadAlbum(albumID, userID) {
    $.getJSON(svcPrefix + "GallerySvc.ashx?action=photos&aid=" + albumID + "&uid=" + userID + "&jsoncallback=?",
        function(data) {
            $(elementID).setTemplateElement("albumTemplate");
            $(elementID).processTemplate(data);
            $("a[@rel*=lightbox]").lightBox();
        });
}

/*
*/
