// JavaScript Document

$(document).ready(function(){
	$(".expand").click(function(){
		$(this).next(".collapse").toggle("slow");
	});

      $(".expandAll").click(function(){
            //$(this).next(".accordion").toggle("slow");

            if($(this).html()=="[Collapse All]")
            {
                  $(".collapse").show.hide("slow");
                  $(this).html("[Collapse All]");
            }
            else
            {
                  $(".collapse").hide("slow");
                  $(this).html("[Expand All]");
            }
});

}); 
