/*
 * Управление выпадающим меню
 */

$(function(){
    $('.podmenu_top').hide();
    $('.topmenu_link').mouseenter(function(){
        $(this).children('.podmenu_top').show();
    }).mouseleave(function(){
        $(this).children('.podmenu_top').hide();
    });
    
    $('.podmenu').hide();
    $('div.dropdown').mouseenter(function(){
        $(this).children('.podmenu').show();
    }).mouseleave(function(){
        $(this).children('.podmenu').hide();
    });
});
