(function(window, document) {

    document.observe("dom:loaded", function() {
        $$("li.department").each(function(l, index) {
            if(index % 2 == 1) {
                l.addClassName("alt");
            }
        });
    });

})(window, document);