$(document).ready(function() {
    $('#navmenu > li').each( function() {
        $(this).hover(
            function() { $(this).children('div.menu-dropdown-smartpage').show(); $(this).css('zIndex', 1000); },
            function() { $(this).children('div.menu-dropdown-smartpage').hide();  }
        );
        $(this).children('a').click( function() {return false;});
    });
});
