﻿
$(function () {

    $(".subnav").each(function () {
        $(this).parent().eq(0).hover(function () {
            $(".subnav:eq(0)", this).stop().slideDown(0);
        }, function () {
            $(".subnav:eq(0)", this).fadeOut(100);
        });
    });


});
