﻿
function SetActiveMenu()
{
var ul_id = document.getElementById('menu');
var count_a = ul_id.getElementsByTagName('a');
var url = document.location.href;


  for (i=0; i < count_a.length; i++ )
  {
    href = count_a[i].href;
 
    if (url.indexOf(href) >= 0) {
      count_a[i].style.color = "white";
      newImage = "url(/images/btnhoverbg.png)";
      count_a[i].style.backgroundImage = newImage;
      break;
    }
   
  }

}


