window.onload=function ()
{
var atags=document.getElementsByTagName("a");
for(i in atags)
        {
                if(atags[i].className=="main_menu2_nonactive")
                {
                        if(document.location.href==atags[i].href)
                        {
                                atags[i].className = "main_menu2_active";
                        }
                }

                else if (atags[i].className=="main_menu4_nonactive")

                {
                        if(document.location.href==atags[i].href)
                        {
                                atags[i].className = "left_menu_active";
                        }
                }

                else if (atags[i].className=="left_menu_nonactive")

                {
                        if(document.location.href==atags[i].href)
                        {
                                atags[i].className = "left_menu_active";
                        }
                }
				
        }
}


