﻿<!--

    $(document).ready(function ()
    {
        // This function adds the class over to the drop down navigation.
        // This is to fix the issue that IE6 does not support the sudo class hover
        // on any item that is not an anchor.
        
        // Is this browser IE6?
        if ($.browser.msie && $.browser.version == "6.0")
        {
            // Yes. - Do we have any drop down navigation?
            if ($("#DropDownNav").length > 0)
            {
                // Yes. - Loop all the root level list items.
                $("#DropDownNav").children("LI").each(function(row) 
                {
                    $(this).bind('mouseover', function(e) { $(this).addClass("over"); } );
                    $(this).bind('mouseout', function(e) { $(this).removeClass("over"); });
                });
            }
        }
    });

// -->

