$(document).ready(function(){ $('.nav li').hover( function(){ $(this).stop().find(".web_lihide").show(); }, function(){ $(this).stop().find(".web_lihide").hide(); }); $('.web_lihide span').hover( function(){ $(this).stop().find(".web_lihide2").show(); }, function(){ $(this).stop().find(".web_lihide2").hide(); }); $('.web_lihide2 div').hover( function(){ $(this).stop().find(".web_lihide3").show(); }, function(){ $(this).stop().find(".web_lihide3").hide(); }); })