/*
 * Управление верхним выпадающим меню
 */
$(function(){
    $('#top_menu li.level_1 > a').each(function(){
        $(this)
            .mouseenter(function(){
                $(this).next('div').stop().show();
            })
            .mouseleave(function(){
                $(this).next('div').hide();
            });
    });

    $('div.top_submenu').each(function(){
        $(this)
            .css('left', $(this).prev().position().left - 20)
            .hide()
            .mouseenter(function(){
                $(this).stop().show();
            })
            .mouseleave(function(){
                $(this).stop().hide();
            });
    });
});
