﻿Ext.onReady(function() {

    var query = document.location.search.substring(9);

    if (query.indexOf('&') >= 0)
        query = query.substr(0, query.indexOf('&'));
        
    if (null != query && !isNaN(query) && query.trim() != "") {
        this.getLinks(query);
    }
});

function list(query) {
    var serviceAbraz = new ServiceAbraz();
    return serviceAbraz.paginarPorLoja(query);
};

function getLinks(query) {
    var list = this.list(query);
    var container = $('fotos');
        
    for (var i = 0; i < list.length; i++) {
    
        var img = new Element('IMG');
        var div = new Element('DIV');
        var link = new Element('A');
        div.className = 'foto';

        if (query == 29) {
            link.setAttribute('href', 'aquintal_area.html?loja_id=' + query + '&areaId=' + list[i].id);
            $('tl').setAttribute('href', 'timeline_quintal.html?id_loja=' + query);
        }
        else {
            link.setAttribute('href', 'abraz_area.html?loja_id=' + query + '&areaId=' + list[i].id);
            $('tl').setAttribute('href', 'timeline.html?id_loja=' + query);
        }

        img.setAttribute('src', '/media/' + list[i].foto_principal);

        img.injectInside(link);
        link.injectInside(div);
        div.injectTop(container);
        
    };
    
    
};