$(document).ready(function() 
    {

    $('#menu > li').hover(
        function() { $(this).next().addClass('nob'); }, 
        function() { $(this).next().removeClass('nob'); }
        );
    
    });