jQuery(document).ready(function($) {

// Carousel   
	$(function() {
    		$(".carousel").jCarouselLite({
        		btnNext: ".nextImage",
        		btnPrev: ".previous",
        		visible: 4,
       			auto: 3000,
        		speed: 400
    		});
	});
	
// Gallery
	$("#galleria").galleria({
		autoplay: 4000,
		transition: 'fade',
		transitionSpeed: 1500,
		thumbnails: false,
		showCounter: false,
		showInfo: false
	});
	
});
