$(document).ready(function(){

$(".section-content").hide();
$(".section-header").addClass("dyn-box-plus");
$(".section-header").hover(
  function () {
        $(this).css("background-color", "#d52b1e");
      },
        function () {
        $(this).css("background-color", "#727272");
      }
);
$(".section-header").click(function () {
   var hdr=$(this);
      $(this).next(".section-content").slideToggle(
         function(){
          if( $(this).css("display") == "block" ) {
             hdr.removeClass("dyn-box-plus");
             hdr.addClass("dyn-box-minus");
            } else {
             hdr.removeClass("dyn-box-minus");
             hdr.addClass("dyn-box-plus");
            }
         }
      );
});

});