// Show/hide any DIV
function toggleContent(strID) {
	$('#' + strID).toggle();
}

// Show the menu if mouse is still within DIV
function showSection(strSection) {
	animatedcollapse.toggle(strSection);
}


// Initialise all hidden elements
animatedcollapse.addDiv('hidden1', 'fade=1');
animatedcollapse.init();