	
	function pagina_1_initCallback(carousel){
		// Disable autoscrolling if the user clicks the prev or next button.
		carousel.buttonNext.bind('click', function() {
			carousel.startAuto(0);
		});
	 
		carousel.buttonPrev.bind('click', function() {
			carousel.startAuto(0);
		});
	 
		// Pause autoscrolling if the user moves with the cursor over the clip.
		carousel.clip.hover(function() {
			carousel.stopAuto();
		}, function() {
			carousel.startAuto();
		});
	};
	function pagina_2_initCallback(carousel2){
		// Disable autoscrolling if the user clicks the prev or next button.
		carousel2.buttonNext.bind('click', function() {
			carousel2.startAuto(0);
		});
	 
		carousel2.buttonPrev.bind('click', function() {
			carousel2.startAuto(0);
		});
	 
		// Pause autoscrolling if the user moves with the cursor over the clip.
		carousel2.clip.hover(function() {
			carousel2.stopAuto();
		}, function() {
			carousel2.startAuto();
		});
	};
	
	jQuery(document).ready(function() {
	
		jQuery('#pagina-1').jcarousel({
			//auto: 10,
			wrap: 'circular',
			vertical: true,
			scroll: 2
			//vertical: true,
			//initCallback: pagina_1_initCallback
			//wrap: 'circular',
			//easing: 'BounceEaseOut', animation: 1000,
			//easing: "easeOutElastic", speed: 1000,
		});
	
		jQuery('#pagina-2').jcarousel({
			auto: 10,
			wrap: 'circular',
			initCallback: pagina_2_initCallback
			//easing: 'BounceEaseOut', animation: 1000,
			//easing: "easeOutElastic", speed: 1000,
			//easing: 'BounceEaseOut', animation: 1000		
		});
	
		jQuery('#pagina-3').jcarousel({
			wrap: 'circular',
			//easing: 'BounceEaseOut', animation: 1000		
		});
	
	});

