﻿// JScript File
function showhome(){
    document.navhome.src='images/rHome-Button.gif';

}
function showservices(){
    document.navservices.src='images/rServices-Button.gif';

}
function showpatients(){
    document.navpatients.src='images/rIndustries-Button.gif';

}
function showproviders(){
    document.navproviders.src='images/rAbout-Us-Button.gif';
    document.getElementById('divSubNavabout1').style.visibility='visible';

}
function showcontact(){
    document.navcontact.src='images/rContact-Us-Button.gif';

}

function showindustries(){
    document.navindustries.src='images/rIndustries-Button.gif';
    document.getElementById('divSubNavindustry1').style.visibility='visible';
    document.getElementById('divSubNavindustry2').style.visibility='visible';
    document.getElementById('divSubNavindustry3').style.visibility='visible';
  
}

function hidehome(){
    document.navhome.src='images/Home-Button.gif';

}
function hideservices(){
    document.navservices.src='images/Services-Button.gif';

}
function hidepatients(){
    document.navpatients.src='images/Industries-Button.gif';

}
function hideproviders(){
    document.navproviders.src='images/About-Us-Button.gif';
    document.getElementById('divSubNavabout1').style.visibility='hidden';

}
function hidecontact(){
    document.navcontact.src='images/Contact-Us-Button.gif';
    
}
function hideindustries(){
    document.navindustries.src='images/Industries-Button.gif';
    document.getElementById('divSubNavindustry1').style.visibility='hidden';
    document.getElementById('divSubNavindustry2').style.visibility='hidden';
    document.getElementById('divSubNavindustry3').style.visibility='hidden';
  }
