$(document).ready(function() {
				$('#carouselChallenger').carouFredSel({
					visibleItems	: 7,
					autoPlay		: false,
					next : {
						button		: $('#fanClubChallenger_next'),
						key			: 'right'
					},
					prev : {
						button		: $('#fanClubChallenger_prev'),
						key			: 'left'
					},
					scroll : {
						items			: 3,
						effect			: 'easeOutBounce',
						speed			: 1250,							
						pauseOnHover	: true
					}
				});
				$('#carouselChallenger li').click(function() {
					$('#carouselChallenger').trigger('slideTo', [$(this), -2]);
				});		   
						   
						   
						   
				$('#carouselFotos').carouFredSel({
					visibleItems	: 5,
					autoPlay		: false,
					next : {
						button		: $('#carFotos_next'),
						key			: 'right'
					},
					prev : {
						button		: $('#carFotos_prev'),
						key			: 'left'
					},
					scroll : {
						items			: 3,
						effect			: 'easeOutBounce',
						speed			: 1250,							
						pauseOnHover	: true
					}
				});
				$('#carouselFotos li').click(function() {
					$('#carouselFotos').trigger('slideTo', [$(this), -2]);
				});
				
				
				
				
				$('#thumbs').carouFredSel({			
					direction			: "down",
					
					autoPlay		: false,
					next : {
						button		: $('#foo3_next'),
						key			: 'right'
					},
					prev : {
						button		: $('#foo3_prev'),
						key			: 'left'
					},
					scroll : {
						items			: 4,
						effect			: 'easeOutBounce',
						speed			: 1250,							
						pauseOnHover	: true
					}
					
				});
				$('#thumbs li').click(function() {
					$('#thumbs').trigger('slideTo', [$(this), -2]);
				});
			});
