﻿function Menu(){
    var childnodes;
    try{
        childnodes = $('mainnav').immediateDescendants();
    }
    catch (e){
        //alert(childnodes);
        //alert(e);
    }
    for(var i=0; i<childnodes.length; i++){
        var ulList = childnodes[i].getElementsByTagName('ul');
        if (ulList.length > 0){
            var ul = ulList[0];
            
            ul.onmouseover = function(){HighLight(this)};
            ul.onmouseout = function(){RemoveHighLight(this)};
        }
    }
}

function HighLight(ul){
    try{
        var a = $(ul).previous();
        a.style.backgroundImage = "url('SiteFiles/500007/images/Starr_ActiveLinkRight_BG.gif')"
        a.style.color = "#ffffff";
        a.style.backgroundRepeat = "no-repeat";
        a.style.backgroundPosition = "right top";
    }
    catch (e) {
        alert(e);
    }
}

function RemoveHighLight(ul){
    try{
        var a = ul.previous();
        a.style.backgroundImage = "";
        a.style.color = "";
    }
    catch (e) {
        //alert(e);
    }
}
