$(function() {
    $(".carosello").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		auto: 1000,
	    speed: 2000
    });
});
	$(document).ready(function() {
			/*
			*   Examples - images
			*/
		$("a[rel=slide]").fancybox({
					'transitionIn'	: 'elastic',
					'transitionOut'	: 'elastic',
					'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				//	return '<span id="fancybox-title-over">Foto ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				return '<span style="background:#efefef; color:#000;" id="fancybox-title-over">' +  (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
		});
