/* $Id: photo_gallery.js,v 1.1 2011/10/04 17:59:02 sap Exp $ */

$(document).ready(function () {

    Galleria.loadTheme('/js/galleria/themes/classic/galleria.classic.js');
    
    $('#closer').click(function(){
        $('#bg').hide();
        return false;
    });
    
    $('.thumb').click(function(){
        var idx = $(this).attr('imgidx');
        var ps = $(this).attr('setref');
        $('#bg').show();
        $('#galleria').galleria({
            show: idx,
            width: 700,
            height: 600,
            flickr: 'set:' + ps
        });
        return false;
    });

});


