function setLinks() {
// Check to see what folder in and set active links accordingly
  docURL=top.document.URL;
  if (docURL.indexOf('.com/index') > -1 || docURL.indexOf('/home/') > -1 || docURL.slice(-4) == '.com' || docURL.slice(-5) == '.com/') {
    myElement = document.getElementById('ahHome');
    myElement.style.color = "#FFCC00";
    myElement = document.getElementById('afHome');
    myElement.style.color = "#333333";
  }

  if (docURL.indexOf('/about_us/') > -1) {
    myElement = document.getElementById('ahAboutUs');
    myElement.style.color = "#FFCC00";
    myElement = document.getElementById('afAboutUs');
    myElement.style.color = "#333333";
  }

  if (docURL.indexOf('/apply_for_loan/') > -1) {
    myElement = document.getElementById('ahApplyForLoan');
    myElement.style.color = "#FFCC00";
    myElement = document.getElementById('afApplyForLoan');
    myElement.style.color = "#333333";
  }

  if (docURL.indexOf('/faqs/') > -1) {
    myElement = document.getElementById('ahFAQs');
    myElement.style.color = "#FFCC00";
    myElement = document.getElementById('afFAQs');
    myElement.style.color = "#333333";
  }

  if (docURL.indexOf('/links/') > -1) {
    myElement = document.getElementById('ahLinks');
    myElement.style.color = "#FFCC00";
    myElement = document.getElementById('afLinks');
    myElement.style.color = "#333333";
  }

  if (docURL.indexOf('/careers/') > -1) {
    myElement = document.getElementById('ahCareers');
    myElement.style.color = "#FFCC00";
    myElement = document.getElementById('afCareers');
    myElement.style.color = "#333333";
  }

  if (docURL.indexOf('/feedback/') > -1) {
    myElement = document.getElementById('ahFeedback');
    myElement.style.color = "#FFCC00";
    myElement = document.getElementById('afFeedback');
    myElement.style.color = "#333333";
  }
}
