$(document).ready(function() { // $(".nav-li").mouseenter(function() { // $(this).children(".nav-ul2-bg").stop().fadeIn(200) // $(this).children(".nav-triangle").stop().fadeIn(200) // }) // $(".nav-li").mouseleave(function() { // $(this).children(".nav-ul2-bg").stop().fadeOut(200) // $(this).children(".nav-triangle").stop().fadeOut(200) // }) $(".top-nav").children("li").mouseenter(function() { $(this).children(".top-ul2").stop().slideDown(300) }) $(".top-nav").children("li").mouseleave(function() { $(this).children(".top-ul2").stop().slideUp(300) }) })