	    var agencies = document.getElementById('agencies-table');
        var rows = agencies.getElementsByTagName('tr');
        for (var i = 0; i < rows.length; i++) {
            if (i % 2 == 0) {
                rows[i].className = 'alt';
            }
        }
