jQuery(document).ready(function($) { $(function () { $('.submenu').each(function () { $(this).parent().eq(0).hoverIntent(function () { $('.submenu:eq(0)', this).slideDown(); }, function () { $('.submenu:eq(0)', this).slideUp(); }); }); }); });