$(document).ready(function() {
	
	 $('.gallery_container').jCarouselLite({
        btnNext: '.gallery_next',
        btnPrev: '.gallery_prev',
		mouseWheel: true,
		easing: 'easeinout'
    });
	 
	$("a[rel=example_group]").fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'overlayShow'		: true,
		'titlePosition' 	: 'over',
		'zoomSpeedIn': 300, 
		'zoomSpeedOut': 300,
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' +  title + '</span>';
		}

	});

	
});

