var footer = 0;
function resize(){
	$(".right_column").width(
		$(".head").width() - $(".left_column").width() - 50
	);
	$(".top_menu").width($(".head").width() - $(".left_column").width()+110);	
	if($(".top_menu").width()<775) $(".top_menu").width(775);
	
	if($(".left_column").height()>$(".right_column").height()){
		$(".right_column").height($(".left_column").height());
	}		
	
	$("#space").height(
		$(".right_column").height()+25
	);
    
    footer += 1;
    if (footer > 3) {
        $(".footer").show(0);
    }
    
	setTimeout("resize();",1000);
}

$(document).ready(function(){
	

   /*Работа с сылками (изображения) подменяя и прочее, подсветка выделенной ссылки */
   $("a[@href$=" + document.location.pathname + "]").attr({"id":"active"});
   $("a[@href$=" + document.location.pathname + "] > h3").css({"color":"#1292d4"});
   $("a[@href$=" + document.location.pathname + "] > b").css({"color":"white","background-color":"red"});	
	
  
});