$(document).ready(function(){

// Форматировка текстовых блоков

$('.block_a').each(function() {	  
	var a = $(this).children('h3').html();
	$(this).children('h3').remove('');
	var b = $(this).html(); 

	$(this).html('<div class="block_b"><div>' + a + '</div></div><div class="block_c">' + b + '</div><div class="block_d"><div></div></div>');
});

$('.a1').each(function() {
	$(this).append('<a href="#" class="but_more" title="Нажмите, чтобы вернуться в список вопросов!">Вернуться в список вопросов...</a>')
});

$('.block_a.main_news').children('.block_c').each(function() {
	$(this).css('font-size','8pt');
	$(this).css('padding','10px');
});

$('.block_a.main_news').children('.block_c').each(function() {
	$(this).css('height','170px');
	$(this).css('overflow','hidden');
	$(this).css('margin-bottom','15px');
});

$('.block_a.main_news').each(function() {
	$(this).css('margin','0');
	$(this).css('background-color','#dbe7e1');
});

months = new Array('','Январь','Февраль','Март','Апрель','Май','Июнь','Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь');

$('.post-date').each(function() {
	post_date = $(this).text().split('.'); post_date[1]*=1;
	$(this).html("<span class='post-month'>" + months[post_date[1]] + "</span><span class='post-year'>" + post_date[2] + "</span><span class='post-day'>" + post_date[0] + "</span>");
});

  
});
