$(function(){

// Calendrier
	if($("#date_depart").is("input")){
		$("#date_depart").datepicker({
			showOn: "both", 
			buttonImage: "/Style Library/Renault/images/fr-fr/design/picto_calendrier.gif", 
			buttonImageOnly: true 
		});
	}
	if($("#date_arrivee").is("input")){
		$("#date_arrivee").datepicker({
			showOn: "both", 
			buttonImage: "/Style Library/Renault/images/fr-fr/design/picto_calendrier.gif", 
			buttonImageOnly: true 
		});
	}
	
	// Ajouté par Fatna le 27/10/2008
	// Pour gérer les id des input's générés par VS
	if($("#ctl00_PlaceHolderMain_DateDebutRecherche").is("input")){
		$("#ctl00_PlaceHolderMain_DateDebutRecherche").datepicker({
			showOn: "both", 
			buttonImage: "/Style Library/Renault/images/fr-fr/design/picto_calendrier.gif", 
			buttonImageOnly: true 
		});
	}
	if($("#ctl00_PlaceHolderMain_DateFinRecherche").is("input")){
		$("#ctl00_PlaceHolderMain_DateFinRecherche").datepicker({
			showOn: "both", 
			buttonImage: "/Style Library/Renault/images/fr-fr/design/picto_calendrier.gif", 
			buttonImageOnly: true 
		});
	}
});
