$(document).ready(function(){ $('.menu li').hover(function(){ $(this).children(':last').slideDown('slow'); }, function(){ $(this).children(':last').slideUp('slow'); }); });
Jump To Top of Thread