jQuery(document).ready(function(){ jQuery('.cat_link').hover(function(){ jQuery('.child_cat',this).fadeIn(); return false; }, function(){ jQuery('.child_cat',this).hide(); return false; }); })