
$(document).ready(function(){
		
	Calendar.setup({
		inputField     :    "day_appoint",     // id of the input field
		ifFormat       :    "%d/%m/%Y",      // format of the input field
		button         :    "pickup_date",  // trigger for the calendar (button ID)
		align          :    "Tl",           // alignment (defaults to "Bl")
		singleClick    :    true
	});
	
	/*Calendar.setup({
		inputField     :    "_start_date",     // id of the input field
		ifFormat       :    "%d/%m/%Y",      // format of the input field
		button         :    "_btn_start_date",  // trigger for the calendar (button ID)
		align          :    "Tl",           // alignment (defaults to "Bl")
		singleClick    :    true
	});
	
	Calendar.setup({
		inputField     :    "_end_date",     // id of the input field
		ifFormat       :    "%d/%m/%Y",      // format of the input field
		button         :    "_btn_end_date",  // trigger for the calendar (button ID)
		align          :    "Tl",           // alignment (defaults to "Bl")
		singleClick    :    true
	});*/
	
});