$(document).ready(function() {
    $('.parentLink').hover(
        function() {
            $(this).find('a:first').addClass('navTab active');
            var childBox = $(this).find('.childBox');
            $(childBox).show();
        },
        function() {
            $(this).find('a:first').removeClass('active');
            var childBox = $(this).find('.childBox');
            $(childBox).hide();
        }
    );

    $('.parent').hover(
        function() {
            $(this).find('a:first').addClass('active');
            var son = $(this).find('.son');
            $(son).show();
        },
        function() {
            $(this).find('a:first').removeClass('active');
            var son = $(this).find('.son');
            $(son).hide();
        }
    );

    $('.son li:first').addClass('first');
});
