﻿function MenuActive() {
    var url = document.location.href;
    //var sitehost = 'http://localhost/vvc_v3/';
    var sitehost = 'http://www.villaruz.com.ph/';

    if (url == sitehost || url == sitehost + 'index.php?pg=home' || url == sitehost + 'index.php') {

        document.getElementById("menu1").style.color = "#ffcc00";
        document.title = "Home | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'index.php?pg=terms') {

        document.getElementById("menu1").style.color = "#ffcc00";        
        document.title = "Terms of Use | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'index.php?pg=privacy') {

        document.getElementById("menu1").style.color = "#ffcc00";
        document.title = "Privacy Statement | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'about/' || url == sitehost + 'about/index.php?pg=home' || url == sitehost + 'about/index.php') {

        document.getElementById("menu2").style.color = "#ffcc00";
        document.getElementById("vmenu1").style.color = "#ed4e00";
        document.title = "About Us | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'about/index.php?pg=growing_years') {

        document.getElementById("menu2").style.color = "#ffcc00";
        document.getElementById("vmenu2").style.color = "#ed4e00";
        document.title = "Growing Years | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'about/index.php?pg=mission_vision') {

        document.getElementById("menu2").style.color = "#ffcc00";
        document.getElementById("vmenu3").style.color = "#ed4e00";
        document.title = "Vision and Mission | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'about/index.php?pg=core') {

        document.getElementById("menu2").style.color = "#ffcc00";
        document.getElementById("vmenu4").style.color = "#ed4e00";
        document.title = "Core Values | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'about/index.php?pg=managing_partner') {

        document.getElementById("menu2").style.color = "#ffcc00";
        document.getElementById("vmenu5").style.color = "#ed4e00";
        document.title = "Managing Partner | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'about/index.php?pg=senior_partner') {

        document.getElementById("menu2").style.color = "#ffcc00";
        document.getElementById("vmenu6").style.color = "#ed4e00";
        document.title = "Senior Partner | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'about/index.php?pg=mi') {

        document.getElementById("menu2").style.color = "#ffcc00";
        document.getElementById("vmenu7").style.color = "#ed4e00";
        document.title = "Morison International | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'index.php?pg=services') {

        document.getElementById("menu3").style.color = "#ffcc00";
        document.title = "Services | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'index.php?pg=news') {

        document.getElementById("menu4").style.color = "#ffcc00";
        document.title = "News & Updates | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'index.php?pg=career') {

        document.getElementById("menu5").style.color = "#ffcc00";
        document.title = "Career | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'index.php?pg=gallery') {

        document.getElementById("menu6").style.color = "#ffcc00";
        document.title = "Gallery | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'index.php?pg=contact') {

        document.getElementById("menu7").style.color = "#ffcc00";
        document.title = "Contact Us | Villaruz, Villaruz & Co., CPAs";

    } else if (url == sitehost + 'index.php?pg=links') {

        document.getElementById("menu8").style.color = "#ffcc00";
        document.title = "Links | Villaruz, Villaruz & Co., CPAs";

    } else {

        return false;

    }
}
