﻿$(document).ready(function () {

    var url = window.location.pathname.toLowerCase();
    var Business = (url.indexOf("/mpro-business-unlock-revenue-through-mobile-handsets-securely-efficiently-environmentally-safe.php"));
	var Home = (url.indexOf("/index.php"));
	var Terms = (url.indexOf("/terms.php"));
    var Links = (url.indexOf("/links.php"));
    var News = (url.indexOf("/news.php"));
	var Contact = (url.indexOf("/contact-mpro.php"));
    var classSet = false;

    
    if (Business > -1) {
        $(".navigation ul li a.business").removeClass("business").addClass("business2");
        classSet = true;
    }
	if (Home > -1) {
        $(".navigation ul li a.home").removeClass("home").addClass("home2");
        classSet = true;
    }
	 if (Terms > -1) {
        $(".navigation ul li a.terms").removeClass("terms").addClass("terms2");
        classSet = true;
    }
         if (Links > -1) {
        $(".navigation ul li a.links").removeClass("links").addClass("links2");
        classSet = true;
    }
        if (News > -1) {
        $(".navigation ul li a.news").removeClass("news").addClass("news2");
        classSet = true;
    }
		if (Contact > -1) {
        $(".navigation ul li a.contact").removeClass("contact").addClass("contact2");
        classSet = true;
    }

    if (!classSet && window.location.pathname == "/")
        $(".navigation ul li a.home").removeClass("home").addClass("home2");
});


    


