$(document).ready(function() {

	
	// modele
		// Fancybox
		$("a.lightbox").fancybox({
			padding: 20,
			frameWidth: 314,
			frameHeight: 305
		});
		

	return false;
});


// Slideshow accueil
$(document).ready(function() {
		$('#galerie').show();
		$('#galerie').cycle({ 
			fx: 'fade',
			random:  1 
		});
} );

// Slideshow texte
$(document).ready(function() {
		$('#content').show();
		$('#content').cycle({ 
			fx:     'fade', 
			timeout: 0, 
			next:   '#next1', 
			prev:   '#prev1',
			after : function(currSlideElement, nextSlideElement, options, forwardFlag) {
				$('.slideshows').trigger( 'goto', [ 0 ] );
			}
		});
} );

jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};

jQuery(function( $ ){
	$('.slideshows').serialScroll({
		items:'li',
		prev:'.categorie a.slideprev',
		next:'.categorie a.slidenext',
		offset:-0, //when scrolling to photo, stop 230 before reaching it (from the left)
		start:0, //as we are centering it, start at the 2nd
		duration:800,
		force:true,
		stop:true,
		lock:false,
		cycle:true, //don't pull back once you reach the end
		easing:'easeOutQuart', //use this easing equation for a funny effect
		jump: false //click on the images to scroll to them
	});
});
