$().ready(function(){
	
	var flashvars = {
		xmlPath: "data.xml"
	};
	swfobject.embedSWF("gallery.swf", "container_banniere", "870", "300", "9.0.0", "expressInstall.swf",flashvars,{menu:"false",loop:"false", wmode:"transparent"});
	
	
	$('#scroller_galerie').animatedinnerfade({
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: '300px',
		//containerheight: '480px',
		containerwidth: '300px',
		animationSpeed: 8000,
		animationtype: 'fade',
		bgFrame: 'none',
		controlBox: 'none',
		displayTitle: 'none'
	});
	
	$('#bt_send_form_contact').bind('click',function(){
		
		var trouve = false;
		$("#f_contact .obligatoire").each(function(){
			$(this).removeClass('required');
			if ($(this).val().replace(/ /gi,'') == '') {
				$(this).addClass('required');
				trouve = true;
			}
		});
		
		if ($('#date_sel').val() == '') {
			trouve = true;
			$('#f_contact .jCalMo').addClass('required');
		}
		else {
			$('#f_contact .jCalMo').removeClass('required');
		}
		
		if (trouve) {
			return false;
		}
		$("#f_contact").submit();
		
		
	});
	
});

function formatZero(dd) {
	if (dd.length<2) return new String('0'+dd);
	return dd;
}
