// JavaScript Document

  Date.dayNames = ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'];
  Date.abbrDayNames = ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'];
  Date.monthNames = ['janvier', 'fevrier', 'mars', 'avril', 'mai', 'juin', 'juillet', 'aout', 'septembre', 'octobre', 'novembre', 'decembre'];
  Date.abbrMonthNames = ['janv.', 'fevr.', 'mars', 'avr.', 'mai', 'juin', 'juil.', 'aout', 'sept.', 'oct.', 'nov.', 'dec.'];

      $(document).ready(function() {
		  $('.date-pick').datePicker({clickInput:true})
		  
		  
		  $("form#formrental").submit(function(){
											   
                $('form#formrental input[type=submit]').attr("disabled", "disabled"); 		
					$.ajax({
					  type: "POST",
					  url: 'functions.asp',
					  cache: false,
					  data: $("form#formrental").serialize(),
					  success: function(msg){

                          if (msg.indexOf("demand") > 2 ) { 
						  
						  
						  $("form#formrental").before(msg).show('slow',function(){$("form#formrental").hide('slow')});
						   
							   
							  } else {
								    var spl = new Array();
									 spl = msg.split("|");
									 var new_msg = '';
										  
										  for (i=0; i<spl.length; ++i) {
											new_msg += spl[i] + '\n';
										  } ;
										  										
								    alert(new_msg);
								  
								  $('form#formrental input[type=submit]').attr("disabled", ""); 
							 }
						
					  }
					});				   
			
		   return false
		  })
  
		  
		  
        });