function expand_collection(coll_id) {
    var box = $("#expand_coll_"+coll_id);
    box.removeClass("highlight");
    box.html("Loading...");
    box.load("expand/"+coll_id+"/", null, function() { box.hide().slideDown("slow"); });
    return false;
}

