function toggleAndChangeMedical() {
     $('#divMedical').toggle();
     if ($('#divMedical').css('display') == 'none') {
          $('#aMedical').html('&#9658 Medical');
     }
     else {
          $('#aMedical').html('&#9660 Medical');
     }
}
function toggleAndChangeNursing() {
     $('#divNursing').toggle();
     if ($('#divNursing').css('display') == 'none') {
          $('#aNursing').html('&#9658 Nursing &amp; Allied Health');
     }
     else {
          $('#aNursing').html('&#9660 Nursing &amp; Allied Health');
     }
}
function toggleAndChangePharmacy() {
     $('#divPharmacy').toggle();
     if ($('#divPharmacy').css('display') == 'none') {
          $('#aPharmacy').html('&#9658 Pharmacy');
     }
     else {
          $('#aPharmacy').html('&#9660 Pharmacy');
     }
}
function toggleAndChangePatient() {
     $('#divPatient').toggle();
     if ($('#divPatient').css('display') == 'none') {
          $('#aPatient').html('&#9658 Patient Education');
     }
     else {
          $('#aPatient').html('&#9660 Patient Education');
     }
}
function toggleAndChangeHealthAdmin() {
     $('#divHealthAdmin').toggle();
     if ($('#divHealthAdmin').css('display') == 'none') {
          $('#aHealthAdmin').html('&#9658 Health Administration');
     }
     else {
          $('#aHealthAdmin').html('&#9660 Health Administration');
     }
}
function toggleAndChangeAltMed() {
     $('#divAltMed').toggle();
     if ($('#divAltMed').css('display') == 'none') {
          $('#aAltMed').html('&#9658 Alternative Medicine');
     }
     else {
          $('#aAltMed').html('&#9660 Alternative Medicine');
     }
}
