// There are two section to this collapsable menu. Section 1 is for the head. Section 2 is the menu.


// This is the Section 1

var myvar;
function menuinit() {
        document.getElementById('m1').style.display = 'none';
        document.getElementById('m2').style.display = 'none';
        document.getElementById('m3').style.display = 'none';
        document.getElementById('m4').style.display = 'none';
        document.getElementById('m5').style.display = 'none';
        // To add menus add this code here (modify the number 'm5' for each additional menu):
        // document.getElementById('m4').style.display = 'none';
	document.getElementById('pm1').src = 'http://www.calgaryhealthregion.ca/images/menu/plus1.png';
	document.getElementById('pm2').src = 'http://www.calgaryhealthregion.ca/images/menu/plus1.png';
	document.getElementById('pm3').src = 'http://www.calgaryhealthregion.ca/images/menu/plus1.png';
	document.getElementById('pm4').src = 'http://www.calgaryhealthregion.ca/images/menu/plus1.png';
	document.getElementById('pm5').src = 'http://www.calgaryhealthregion.ca/images/menu/plus1.png';
	// To add menus add this code here (modify the number 'm5' for each additional menu):
	// document.getElementById('pm4').src = 'http://iweb/images/plus1.png';
}
function menuexpand (i) {
        menuinit();
        if (myvar == i) {
		document.getElementById('p' + i).src = 'http://www.calgaryhealthregion.ca/images/menu/plus1.png';
		document.getElementById(i).style.display = 'none';
		myvar = '';
	}
        else {
		document.getElementById('p' + i).src = 'http://www.calgaryhealthregion.ca/images/menu/minus1.png';
		document.getElementById(i).style.display = 'block';
		myvar = i;
	}
}
