function blogSwitchPage(url, catId, currentPage, pageSize, templatePath, scroll_items) 
{
	jQuery('.blog_cat_wrap_' + catId ).fadeOut(1000);

	jQuery.post(url, { id: catId, page: currentPage, ps: pageSize, template: templatePath, scroll: scroll_items },
	function(data)
	{
		//var theHeight = jQuery('.blog_cat_wrap_' + catId + ' .itemWrap').height();
		jQuery('.blog_cat_wrap_' + catId)
			.replaceWith(data);
		jQuery('.blog_cat_wrap_' + catId)
			.hide()
			.fadeIn(1000);

		Cufon.replace('.right' , {hover: true});
		Cufon.replace('.left' , {hover: true});
		Cufon.replace('h2' , {hover: true});
	});
}
