$( document ).ready( function() { $(".menu").hover( function(){ $(this).addClass("on"); $(this).children('.subMenu').slideDown(200); }, function(){ $(this).removeClass("on"); $(this).children('.subMenu').slideUp(200); } ); });