$(document).ready(function() {

	
	// modele
		// Fancybox
		$("a.lightbox").fancybox({
			padding: 20,
			frameWidth: 314,
			frameHeight: 305
		});

});

// Slideshow accueil
$(document).ready(function() {
		$('#galerie').show();
		$('#galerie').cycle({ 
			fx: 'fade',
			random:  1 
		});
} );

// Slideshow texte
$(document).ready(function() {
		
		$('#bienvenue_texte').show();
		$('#bienvenue_texte').cycle({ 
			fx:     'fade', 
			timeout: 0, 
			next:   '#next1', 
			prev:   '#prev1' 
		});
} );


