﻿jQuery(function () {
    jQuery('.dropdown').each(function () {
        jQuery(this).parent().eq(0).hover(function () {
            jQuery('.dropdown:eq(0)', this).show();
            }, function () {
            jQuery('.dropdown:eq(0)', this).hide();
        });
    });
});
