$(document).ready(function(){ $(".hr_bottom").children("li").hover(function(){ $(this).children(".two").slidedown(); },function(){ $(this).children(".two").css("display","none"); }); $(".hr_bottom li .two").children("li").hover(function(){ $(this).children(".three").slidedown(); },function(){ $(this).children(".three").css("display","none"); }); });