$(document).bind('ready', function (){
// if ($.browser.opera){$('.paginator .bottom').css("display","none");};
if($(".catPages1 a:last span").html()=="»"){$(".catPages1 a:last").remove();};
var pages = parseInt($(".catPages1 a:last span").html());
var curpage = parseInt($(".catPages1 .swchItemA span").html());
if(curpage>pages){pages = curpage;}
$(".catPages1").hide();
$('.paginator').paginator({pagesTotal:pages, pagesSpan:10, pageCurrent:curpage, baseUrl: '/blog/',
	lang : {next : "Следующая",
	last : "Последняя",
	prior : "Предыдущая",
	first : "Первая",
	arrowRight : "",
	arrowLeft  : ""}
});
})