$(document).ready(function(){
    var menu='';
    var news_anons='';
    $('#header').load('ajax/header'); // - ??? ????????, ??? ? ??????? ? id="header" ??????????? ??, ??? ????????? ? ajax.php ? ??????? header
    $('#footer').load('ajax/footer');  // - ??? ??????????, ?????? ? ???????
    $.get('ajax/menu', function(data){
      var menu=data; // ??? ???????? ? ?????????? menu ???????? ????
    });
    $.get('ajax/news_anons', function(data){
      var news_anons=data; // ??? ? ?????????? news_anons ??????????? ????? ????????
    });
    
    $('#leftcolumn').load('ajax/leftcolumn');; // - ????? ????????
});