﻿$(document).ready(function () {

    $('.sub-nav').each(function () {
        $(this).parent().eq(0).hoverIntent(function () {
            $('.sub-nav:eq(0)', this).show();
            }, function () {
                $('.sub-nav:eq(0)', this).hide();
        });
    });

});
