$(document).ready(function() {
    //Включение обрамления текста в шапке сайта
    if (!$.browser.msie) {
        $('.green').FontEffect({ shadow:true, shadowColor:"#fff", shadowOffsetTop:0, shadowOffsetLeft:0, shadowOpacity:1});
        $('.phones').FontEffect({ shadow:true, shadowColor:"#f28520", shadowOffsetTop:0, shadowOffsetLeft:0, shadowOpacity:1});
    }
    // Анимация меню
    $('.back-menu').hover(function(){
        $(this).attr('style', 'background: url("images/menu-active.png") no-repeat;');
        $('a', this).css('color', 'white');
    }, function(){
        $(this).attr('style', 'background: url("images/menu.png") no-repeat;');
        $('a', this).css('color', 'black');
    });
});
