
$(function() {

	$('.diaporama').photoSlider({
            nextButton : 'nextPhoto',
            prevButton : 'previousPhoto'
	});

    $('.diaporama a[rel=photosAccueil]').colorbox({
		onOpen : function () {
			$('#flash').css ('display', 'none');
		},
		onClosed : function () {
			$('#flash').css ('display', 'block');
		},
		current : '{current} sur {total} photos'
	});


	$('.nouvelle').colorbox({
		innerWidth : 400,
		innerHeight : 620,
		onOpen : function () {
			$('#flash').css ('display', 'none');
		},
		onClosed : function () {
			$('#flash').css ('display', 'block');
		}
	});



	function car (DOM, date) {

		var now = new Date();
		t = now.getTime() / 1000;
		var delta = Math.floor(date.getTime() / 1000 - t);

		var d = Math.floor(delta / (3600 * 24));
		delta -= d * 3600 * 24;
		var h = Math.floor(delta / 3600);
		delta -= h * 3600;
		var m = Math.floor(delta / 60);
		delta -= m * 60;
		var s = delta;

		$(DOM).html(d+' jour'+(d > 1 ? 's': '')+' '+h+':'+m+':'+s+'s');
	}

	window.setInterval(function (){
		var dateBoutique = new Date(2011, 3, 11, 16, 0, 0);
		car ($('#carBoutique'), dateBoutique);
	}, 1000);

});
