$(window).load(function(){
	$(function(){
		$('#box').animate({
			left: 0,
			right :0
		}, 6000)
	});
	$(function(){
		$('#left').animate({
			left: 0
		}, 2000)
	});
	$(function(){
		$('#coordonnees').animate({
			top: 0,
			right :0
		}, 3500)
	});
	$(function(){
		$('#flash').hide();
		var doIt = function() {
			$('#flash').fadeIn(2400);
		}
		setTimeout(doIt, 2000);
	});
	$(document).ready(function() {
		$('#button').click(function() {
			valid = true;
			if($("#nom").val() == "" || $("#prenom").val() == "" || $("#mail").val() == "" || $("#tel").val() == "" || $("#message").val() == ""){
				valid = false;
				alert('Veuillez compléter tous les champs du formulaire');
			}
			return valid;
		});
	});
	$(document).ready(function() {
		$("a[rel=fancybox]").fancybox({
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'titlePosition' 	: 'over',
			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});
	});
	$(document).ready(function() {
		$("a[rel=maps]").fancybox({
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'titlePosition' 	: 'over'
		});
	});
	$(document).ready(function(){
		$(".diaporama").diaporama({
			animationSpeed: "slow",
			delay:2
		});
	});
	$(document).ready(function(){
		$('#flash').flashembed(
			 {
				 src: '/flash/intro.swf',
				 width: 500,
				 height: 340,
				 wmode: 'transparent'
			  },
			  {
				  expressInstall: true,
				  version: '8'
			  }
		 ); 
	});
});
