$(document).ready(function() {
    var pages = {
        "cursuri-inot-pitesti.html": null,
        "cursuri-inot-tenis-pitesti.html": null,
        "curusri-tenis-pitesti.html": null,
        "echipa.html" : "echipa",
        "grupa_perfectionare.html": null,
        "index.html": "home",
        "initiere.html": null,
        "intrebari.html": "intrebari",
        "larisa_lacusta.html": null,
        "larisa-lacusta.html": null,
        "perfectionare.html": null,
        "performanta.html": null,
        "postinfo.html": null,
        "tarife_inot.html": null,
        "contact-cursuri-inot-tenis-pitesti.php": "contact",
        "tenis_locatie.htm": "tenis"
    };

    var url = document.URL;
    var pagename=url.split(/\//);
    pagename = pagename[pagename.length - 1];
    for(var page in pages) {
        if(typeof pages[pagename] != 'undefined' && pages[pagename]) {
            $("#nav ul li").each(function(idx) {
                //console.log($(this).$("a").html());
                if($(this).find("a").html() === pages[pagename]) {
                    $(this).attr("id", "active");
                }else {
                    $(this).removeAttr("id");
                }
            });
        }
    }
});
