/***************************************************************/
/*
/*
/*
/*
/***************************************************************/
$(document).ready(function(){
	$('.clic').hover(function() {
		$(this).css({
			'cursor':'pointer'
		});
		if(!jQuery.support.opacity) {		
			$(this).css({
					'overflow':'visible'
			});
			$(this).fadeTo(200,0.6);
		}else{
			$(this).stop().animate({'opacity':0.6},200);
		}
	
	},function(){
		if(!jQuery.support.opacity) {
			$(this).fadeTo(200,1);
		}else{
			$(this).stop().animate({'opacity':1}, 200);
		}
	});
	
	/*APPARTION / DISPARITION FORMULAIRE*/
	var apparition=0;
	$(".reserver").click(function(){
		if(apparition==0){
			$('#devis').animate({'left':'0px'},250,function(){
				$("#encart").css("overflow","visible");											
			});
			apparition=1;
		}else{
			$(".erreur").each(function(){
				if($(this).is("p")){
					$(this).removeClass("erreur");	
				}else{
					$(this).remove();
				}
			});
			
			$(".validation").each(function(){
				$(this).remove();						   
			});
			$("#encart").css("overflow","hidden");
			$('#devis').animate({'left':'513px'},250);
			apparition=0;
		}
	});
});




