function expand(section_id) {

	var section = document.getElementById(section_id);

	if (section.style.display == 'none') {
		section.style.display = 'block';
		
	} else if (section.style.display == 'block') {
		section.style.display = 'none';
	}
		
}
