
function cargarScrollver(id){
	$("#"+id).scrollable({ 
        interval: 4000, 
        loop: true,  
        speed: 1000, 
        onBeforeSeek: function() {this.getItems().fadeTo(500, 0.2);}, 
        onSeek: function() {this.getItems().fadeTo(500, 1);},
		vertical:true,  
		circular:false, 
        size: 1
	});
};
