var hidhighlight = document.getElementById("hidleftnav")
var imageName = "";
var imageId = "";
var anchorId = ""; 
if (hidhighlight != null)
{
  switch (hidhighlight.value)
  {
    case "1":
      imageName = "/PublishingImages/Patient/time_for_a_change_on.gif";
      imageId = "time_for_a_change";
      anchorId = "a_time_for_a_change";
      break;
    case "2":
      imageName = "/PublishingImages/Patient/how_ORENCIA_is_different_on.gif";
      imageId = "how_ORENCIA_is_different";
      anchorId = "a_how_ORENCIA_is_different";
      break;
    case "3":
      imageName = "/PublishingImages/Patient/who_can_take_on.gif";
      imageId = "health_related";
      anchorId = "a_health_related";
      break;
    case "4":
      imageName = "/PublishingImages/Patient/clinical_trials_on.gif";
      imageId = "clinical_trials";
      anchorId = "a_clinical_trials";
      break;
    case "5":
      imageName = "/PublishingImages/Patient/talking_to_rheumatologist_on.gif";
      imageId = "talking_to_rheumatologist";
      anchorId = "a_talking_to_rheumatologist";
      break;
    case "6":
      imageName = "/PublishingImages/Patient/getting_started_on.gif";
      imageId = "getting_started";
      anchorId = "a_getting_started";
      break;
    case "7":
      imageName = "/PublishingImages/Patient/financial_options_on.gif";
      imageId = "financial_options";
      anchorId = "a_financial_options";
      break;
    case "8":
      imageName = "/PublishingImages/Patient/faq_on.gif";
      imageId = "faq";
      anchorId = "a_faq";
      break;
    case "9":
      imageName = "/PublishingImages/Patient/patient_support_on.gif";
      imageId = "patient_support";
      anchorId = "a_patient_support";
      break;
    case "10":
      imageName = "/PublishingImages/Patient/sign_up_button_on.gif";
      imageId = "sign_up_button";
      anchorId = "a_sign_up_button";
      break;
    default:
      break;
    
  }
  if (imageId != "" && imageName != "" && anchorId != "")
  {
    document.getElementById(imageId).src = imageName;
    document.getElementById(anchorId).href="javascript:void(0)";
    document.getElementById(anchorId).style.cursor="default";
    document.getElementById(anchorId).style.textDecoration="none"; 
    document.getElementById(anchorId).onmouseover = function(){
      return false;
    }
    document.getElementById(anchorId).onmouseout = function(){
      return false;
    } 
  }
}