$(document).ready(function(){

	$("DIV.ContainerPanel > DIV.collapsePanelHeader").toggle(
    function() {
        $(this).next("div.Content").show("fast");
    },
    function() {                   
        $(this).next("div.Content").hide("fast");
    });             
});           

