$(window).load(function (){
	$('div.button').mouseenter(function(){
		$(this).clearQueue().animate({width:'110px'},200);
	}).mouseleave(function(){
		$(this).clearQueue().animate({width:'95px'},200);
	});
});
$(document).ready(function(){
	$('.widget').hide();
});
function validate(str){
	error = false;
	$('.error').removeClass('error');
	if($('#'+str+'_nom').val().match(/^[a-zA-Z\s-]{3,}$/) == null) {
		$('#'+str+'_nom').addClass('error');
		error = true;
	}
	if($('#'+str+'_tel').val().match(/^([0-9]{1,4}.?){3,5}$/) == null) {
		if($('#'+str+'_mail').val().match(/^[a-zA-Z0-9._-]{3,}@[a-zA-Z0-9._-]{3,}\.[a-zA-Z]{2,3}$/) == null) {
			$('#'+str+'_tel').addClass('error');
			$('#'+str+'_mail').addClass('error');
			error = true;
		}
	}
	if(error == false) $('#'+str).submit();
}

function itineraire(){
	window.open("http://maps.google.fr/maps?f=d&source=s_d&saddr="+$("#itiadd").val().replace(/\s/g,"+")+"&daddr="+$("#itidest").val()+"&hl=fr", "_blank");
}

