// JavaScript Document jQuery(document).ready(function($) { $(".menu>li").hover( function () { $(".menu ul").hide(); $(this).children("ul").fadeIn("fast"); }, function () { $(this).children("ul").fadeOut("fast"); } ); $(".menu>li>ul").hover( function () { $(this).parent().addClass("hover"); }, function () { $(this).parent().removeClass("hover"); } ); });