function expand(button,section){var div=$("#"+section);if($(button).attr("class")=="i add fr"){$(button).attr("class","i del fr").text("Collapse Section");div.toggle(true);}else{$(button).attr("class","i add fr").text("Expand Section");div.toggle(false);}}