$(document).ready(function() {
	$("DIV.ContainerPanel > DIV.collapsePanelHeader > DIV.ArrowExpand").toggle(
		function() {
			$(this).parent().next("div.Content").show();
			$(this).parent().children("div.HeaderSubject").hide();
			$(this).attr("class", "ArrowClose");
	},
		function() {                    
			$(this).parent().next("div.Content").hide();
			$(this).parent().children("div.HeaderSubject").show();
			$(this).attr("class", "ArrowExpand");
	});  
            
	$("#colExAllButton").click(function(){
		if($("#colExAllButton").html() == "Expand All")
			{
				$("div.Content").show();
				$("div.HeaderSubject").hide();
				$("div.ArrowExpand").attr("class", "ArrowClose");
				$("#colExAllButton").html("Collapse All");
			}
		else
			{
				$("div.Content").hide();
				$("div.HeaderSubject").show();
				$("div.ArrowClose").attr("class", "ArrowExpand");
				$("#colExAllButton").html("Expand All");
			}
	});       
});      