$(document).ready(function() {
	$('#page_num').find('li.article_page').find('a').css('color','#fff');
	$('#page_num').find('li').click(function() {
		$('#page_num').find('li').each(function() {
			$(this).removeClass('article_page').find('a').css('color','#000');
		});
		var page = $(this).find('a').html();
		$(this).addClass('article_page').find('a').css('color','#fff');
		$('#main_news_container').height(getHeight).html('<div style="width:32px; height:32px; margin:0 auto;padding:35px 0 0 0;"><img src="/images/ajax/ajax-loader.gif" /></div>');
		$('.news').fadeOut();
		$.get('/', {article:page, valid:"TrUE"}, function(response) {
			$('#main_news_container').html(response);
			$('.news').fadeIn(function() {
				$('#main_news_container').animate({
					height:getHeight()
				});
			});
		});
		return false;
	});
});

function getHeight() {
	var height = 0;
	$('.news').each(function() {
		height += $(this).height() + parseInt($(this).css("marginBottom"),10);
	});	
	return height;
}

