colonna = {

    ultimi_annunci: function(par) {
        var offerte = document.getElementById('last_offerte');
        var richieste = document.getElementById('last_richieste');
        var h3_off = document.getElementById('af_dxOff');
        var h3_ric = document.getElementById('af_dxRic');
        if (!h3_off || !h3_ric) {
            return;
        }
        if (!offerte || !richieste) {
            return;
        }
        if (par == '1') {
            offerte.style.display = '';
            richieste.style.display = 'none';
            h3_off.className = 'af_dxOff_sel';
            h3_ric.className = '';
        } else {
            offerte.style.display = 'none';
            richieste.style.display = '';
            h3_off.className = '';
            h3_ric.className = 'af_dxRic_sel';
        }
    }
}
