$(document).ready(function() {
    
    // Анимация меню
    $('#active-menu1').hover(function(){
        $(this).css('background', "url(/skin_dvacom/images/active-menu1.png) no-repeat");
        $('a',this).css('color','#f5c500');
    }, function(){
        $(this).css('background', "none");
        $('a',this).css('color','#361a01');
    });
    $('#active-menu2').hover(function(){
        $(this).css('background', "url(/skin_dvacom/images/menu-active2.jpg) no-repeat");
        $('a',this).css('color','#f5c500');
    }, function(){
        $(this).css('background', "none");
        $('a',this).css('color','#361a01');
    });
    $('#active-menu3').hover(function(){
        $(this).css('background', "url(/skin_dvacom/images/menu-active3.jpg) no-repeat");
        $('a',this).css('color','#f5c500');
    }, function(){
        $(this).css('background', "none");
        $('a',this).css('color','#361a01');
    });
    $('#active-menu4').hover(function(){
        $(this).css('background', "url(/skin_dvacom/images/menu-active4.jpg) no-repeat");
        $('a',this).css('color','#f5c500');
    }, function(){
        $(this).css('background', "none");
        $('a',this).css('color','#361a01');
    });
    
    $('.left-menu div').click(function(){
        window.location = $('a',this).attr('href');
    });
});
