$(document).ready(function() {

	
	// modele
		// Fancybox
		$("a.lightbox").fancybox({
			padding: 20,
			frameWidth: 314,
			frameHeight: 305
		});
		
		$("#videobis").click(function() {
			$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		: 960,
			'height'		: 750,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
});
			
	// Youtube Player
	// $('.youtube_video').each(function() {
		// var width, height;
		// var this_id = $(this).attr('id');
		// if($(this).hasClass('small')) {
			// width = 224;
			// height = 200;
		// } else {
			// width = 582;
			// height = 470;
		// }
		// swfobject.embedSWF('http://www.youtube.com/v/'+this_id+'&hl=fr&fs=1&rel=0&color1=0xB28C5E&color2=0xFAD19C', this_id, width, height, '7.0.0', '', {}, {allowFullScreen: 'true', allowscriptaccess: 'always'});
	// });

});

// Slideshow accueil
$(document).ready(function() {
		$('#galerie').show();
		$('#galerie').cycle({ 
			fx: 'fade',
			random:  1 
		});
} );

// Slideshow texte
$(document).ready(function() {
		$('#crepissage_texte').show();
		$('#crepissage_texte').cycle({ 
			fx:     'fade', 
			timeout: 0, 
			next:   '#next2', 
			prev:   '#prev2' 
		});
		
		$('#bienvenue_texte').show();
		$('#bienvenue_texte').cycle({ 
			fx:     'fade', 
			timeout: 0, 
			next:   '#next1', 
			prev:   '#prev1' 
		});
		
		$('#experience_texte').show();
		$('#experience_texte').cycle({ 
			fx:     'fade', 
			timeout: 0, 
			next:   '#next2', 
			prev:   '#prev2' 
		});
		
		$('#references_texte').show();
		$('#references_texte').cycle({ 
			fx:     'fade', 
			timeout: 0, 
			next:   '#next3', 
			prev:   '#prev3' 
		});
		
		$('#chaux_texte').show();
		$('#chaux_texte').cycle({ 
			fx:     'fade', 
			timeout: 0, 
			next:   '#next3', 
			prev:   '#prev3' 
		});
		
		$('#beton_texte').show();
		$('#beton_texte').cycle({ 
			fx:     'fade', 
			timeout: 0, 
			next:   '#next2', 
			prev:   '#prev2' 
		});
		
		$('#peinture_texte').show();
		$('#peinture_texte').cycle({ 
			fx:     'fade', 
			timeout: 0, 
			next:   '#next3', 
			prev:   '#prev3' 
		});
		
		$('#pierre_texte').show();
		$('#pierre_texte').cycle({ 
			fx:     'fade', 
			timeout: 0, 
			next:   '#next1', 
			prev:   '#prev1' 
		});
		
		$('#carrel_texte').show();
		$('#carrel_texte').cycle({ 
			fx:     'fade', 
			timeout: 0, 
			next:   '#next1', 
			prev:   '#prev1' 
		});
} );


