﻿/* Start the Javascript to control the navigation for the RMH website */

function startNavigation ()
{
    var nav = document.getElementById('navigation');

    if (nav) {
        var items = nav.getElementsByTagName('li');
    
        for (var i = 0; i != items.length; i++) {
            if (items[i].className.indexOf('AspNet-Menu-WithChildren') >= 0) {
                items[i].onmouseover = function () { this.className += ' mouseover'; };
                items[i].onmouseout = function () { this.className = this.className.replace(' mouseover', ''); };
            }
        }
    }
}
