﻿var listobjects = new Array();
function SetSelectedMenu() {
    pagepath = document.location;
    var ulobject = document.getElementById("listmenu");
    listobjects = ulobject.getElementsByTagName('Li');
    if (pagepath.toString().indexOf("/home") != -1) {
        SetMenu('Home');
    }
    else if (pagepath.toString().indexOf("/buyers") != -1) {
        SetMenu('Buyers');
    }
    else if (pagepath.toString().indexOf("/agent") != -1) {
        SetMenu('Agents');
    }
}
function SetMenu(uristring) {
    for (i = 0; i < listobjects.length; i++) {
        var anchorobjects = listobjects[i].getElementsByTagName('a');
        if (anchorobjects != null) {
            if (anchorobjects[0].innerHTML == uristring) {
                listobjects[i].setAttribute('id','current'); 
               break;
            }
            else {
                listobjects[i].removeAttribute('id');
            }
        }
    }
}