function hsSM() {     
  if ($('specialists_div').style.display == 'none') {
    $('specialists_div').style.display = '';
  } else {
    $('specialists_div').style.display = 'none';
  }
}

function showSM() {
  $('specialists_div').style.display = '';
}

function hideSM() {
  $('specialists_div').style.display = 'none';
}