$(document).ready(function() {
                $("DIV.ContainerPanel > DIV.collapsePanelHead > DIV.ArrowExpand").toggle(
                function() {
                $(this).parent().next("div.Content").show("slow");
                 $(this).attr("class", "ArrowClose");
                },
                function() {
                $(this).parent().next("div.Content").hide("slow");
                $(this).attr("class", "ArrowExpand");
                });


            });          
