var menu = document.getElementById("nav").getElementsByTagName("a");
var list = document.getElementById("nav").getElementsByTagName("li");
//creates an array out of each "a" element
for(var i=0; i<menu.length; i++) {
    if(menu[i].href == "http://"+window.location.hostname+window.location.pathname) {
        list[i].className="selected";
    }
}

var menutwo = document.getElementById("navtwo").getElementsByTagName("a");
var listtwo = document.getElementById("navtwo").getElementsByTagName("li");
//creates an array out of each "a" element
for(var i=0; i<menutwo.length; i++) {
    if(menutwo[i].href == "http://"+window.location.hostname+window.location.pathname) {
        listtwo[i].className="selected";
    }
}

