(function($){
  $(function(){
  
    var warningText = "Внимание! Сайт работает в аварийном режиме. Ведутся работы по восстановлению и переходу сайта в рабочий режим. Все будет хорошо!";
  
    $('<div id="attention">'+warningText+' <a href="#">Закрыть</a></div>')
      .css({
        position: 'absolute',
        top: '0',
        left: '0',
        width: '70%',
        textAlign: 'center',
        padding: '10px 15%',
        backgroundColor: '#000',
        opacity: '0.5',
        color: '#fff',
        zIndex: '1000'
      }).appendTo($('body')).find('a').css({
        color: '#fff',
        position: 'absolute',
        top: '10px',
        right: '15px'
      })
      .click(function() {
        $(this).parents('div#attention').hide();
        return false;
      });

  });
})(jQuery);
