jQuery(function($) {
    $('.gnb').mouseover(function() {
        $(this).find('.dp').show();
        $(this).find('.a_on').addClass('on');
    })
    .mouseleave(function() {
        $(this).find('.dp').hide();
        $(this).find('.a_on').removeClass('on');
    });
});
