function switchBlogPage(page) {
	if ($('.blogs .blogPage:eq('+page+')').length == 0) return;
	$('.blogs .blogPage').hide();
	$('.blogs .blogPage:eq('+page+')').show();
	$('.blogs .pager a').attr('class', '');
	$('.blogs .pager a:eq('+page+')').attr('class', 'active');
}