jQuery(document).ready(function(){
        jQuery(".carr_textos").scrollable({
            size: '4',
            items: ".items_txt",
            prev: ".btn_prev_txt" ,
            next: ".btn_next_txt",
            clickable: false,
            speed:200
        });
		
		var scroll = jQuery(".carr_textos").data("scrollable");
		
		scroll.onSeek(function() {
			var posicion = this.getIndex();
			jQuery(".btn_paginacion").removeClass('btn_paginacion_hover');
			jQuery("#btn_paginacion"+posicion).addClass('btn_paginacion_hover');
		});
		
		jQuery(".btn_prev_txt").click(function(e){
			e.preventDefault();
		});
		
		jQuery(".btn_next_txt").click(function(e){
			e.preventDefault();
		});
		
		jQuery(".btn_paginacion").click(function(e){
			e.preventDefault();
			var boton = jQuery(this).attr("id");
			var id = boton.replace("btn_paginacion","");
			var scroll = jQuery(".carr_textos").data("scrollable");
			scroll.seekTo(id);
		});
});
