﻿ $(document).ready(function(){
    $(".AspNet-Menu-WC > a").css("color", "white");
    $(".AspNet-Menu-WC-Selected > a").css("color", "white");
    
    $(".Depth0.AspNet-Menu-WC > a").hover(
        function() {
            //hover over the link
        },
        
        function() {
            //out of the link but displaying a menu
            $(this).css("color", "fc0");
        }
    )
    
    $(".Depth0.AspNet-Menu-WC").hover(
        function() {
        
        },
        
        function() {
            //out of the menu and the childs
            $(this).css("border", "0px solid transparent");
            $(this).find("a").css("color", "white");
        }
    )
    
 });
