animatedcollapse.addDiv('firstexpand')
animatedcollapse.addDiv('secondexpand')
animatedcollapse.addDiv('thirdexpand')
animatedcollapse.addDiv('fourthexpand')
animatedcollapse.addDiv('fithexpand')
animatedcollapse.addDiv('sixthexpand')
animatedcollapse.addDiv('seventhexpand')
animatedcollapse.addDiv('eigthexpand')
//additional addDiv() call...
//additional addDiv() call...
animatedcollapse.init()

function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "block";
}
function ReverseContentDisplay(d) {
if(d.length < 1) { return; }
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}
