$(document).ready(function() {
    
    $('#header .wrapper .mainMenu .main LI').hover( function() {
        $(this).find('.underMenu').fadeIn(100);
    }, function() {
        $(this).find('.underMenu').fadeOut(100);
        setTimeout('', 300);
    });

        
}); // Конец ready


