Add The Following Code to Your “Header Includes” Section for Each Page You want to use the expanding content option. You will find it under “Page Settings” in Top Right Drop Down…

Here is the Code:

<script type=”text/javascript”>
<!–
function expand_collapse(id) {
var e = document.getElementById(id);
var f = document.getElementById(id+”_arrows”);
if(e.style.display == ‘none’){
e.style.display = ‘block’;
f.innerHTML = ‘&#9650’;
}
else {
e.style.display = ‘none’;
f.innerHTML = ‘&#9660’;
}
}
//–>
</script>
<style type=”text/css”>
.arrows{text-decoration:none;color:silver;}
</style>