// JavaScript Document animatedcollapse.addDiv('stageOne', 'fade=1,height=270px'); animatedcollapse.addDiv('stageTwo', 'fade=1,height=278px'); animatedcollapse.addDiv('stageThree', 'fade=1,height=413px'); 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); } }