// JavaScript Document animatedcollapse.addDiv('stageOne', 'fade=1,height=324px') animatedcollapse.addDiv('stageTwo', 'fade=1,height=365px') animatedcollapse.addDiv('stageThree', 'fade=1,height=322px') animatedcollapse.addDiv('stageFour', 'fade=1,height=248px') animatedcollapse.init() function toggleDiv(name, anchor) { var a = $("#" + anchor); if (a.text() == "Show More") { a.text("Hide"); animatedcollapse.show(name); } else { a.text("Show More"); animatedcollapse.hide(name); } }