$(document).ready(function(){ 
    $('menu li').hover(function() {
        var mwidth = $(this).width();
        $(this).find('ul.menu2').stop(true,true).css('min-width',mwidth).slideDown().end().find('a.prvy').css('backgroundPosition','bottom center');
        var width = $(this).find('ul.menu2').css("width");
        $(this).find('ul.menu2 li ul.menu3').css("left",width);
        $(this).find('ul.menu2>li').hover(function() {
            $(this).find('ul.menu3').stop(true,true).fadeIn().end().find('div.text').addClass('activ');
        }, function() {
            $(this).find('ul.menu3').stop(true,true).fadeOut().end().find('div.text').removeClass('activ');
        });
        
    }, function() {
        $(this).find('ul.menu2').stop(true,true).slideUp(300).end().find('a.prvy').css('backgroundPosition','top center');
    });
});  
