$(function(){ $("ul.sub li:has(ul)").each(function(){ $(this).hover(function(){ $(this).css("height",""); $(this).children('ul').slideToggle(); $(this).siblings('li').children('ul').hide(); $(this).siblings('li').css("height","60px"); }) }) })