
$(document).ready(function(){  
    $(".About").hover(  
        function(){
            $(".Services > ul").css("display", "none");
            $("ul", this).css("display", "inline");
        },
        function(){
            $(".About > ul").css("display", "none");
            $("li.parent > ul").css("display", "block");
        }
    ); 
  
});  
$(document).ready(function(){  
    $(".Services").hover(  
        function(){
            $(".About > ul").css("display", "none");
            $("ul", this).css("display", "inline");
        },
        function(){
            $(".Services > ul").css("display", "none");
            $("li.parent > ul").css("display", "block");
        }
    ); 
  
});