$(document).ready(function(){
    $("#galeria").jqGalScroll({speed:300, width: 656, height: 276});
    gal_interval = setInterval(function(){
        s = $('.jqGSPagination a.selected').get(0).href;
        n = s.substr(s.lastIndexOf('#')+1);
        n = new Number(n);
        n++;
        el = $('.jqGSPagination').find('[href$=#'+n+']');
        if (el.length) el.click();
        else {
            clearInterval(gal_interval);
        }
    },5000);
});

