function cargarBlogs(cantidadBlogs) {
	if(cantidadBlogs <= 2){
		$('#carouselh').jsCarousel({scrollspeed: 2000, autoscroll: false, circular: false, masked: false, itemstodisplay: 2, orientation: 'h' });	
		$('.jscarousal-horizontal-back').css('background-image', 'none');
		$('.jscarousal-horizontal-forward').css('background-image', 'none');
	}
	else {
		$('#carouselh').jsCarousel({scrollspeed: 2000, autoscroll: true, circular: true, masked: false, itemstodisplay: 2, orientation: 'h' });
	}
}
