window.onload = function() {
	Calendar.setup({
		inputField  : "form_salida",       // ID of the input field
		ifFormat    : "%d/%m/%Y",    // the date format
		//ifFormat    : "%Y-%m-%d",    // the date format
		singleClick : false,
		showsTime   : false,
		timeFormat  : '24',
		electric    : true,
		showOthers  : true,
		button      : "calendar_salida"       // ID of the button
	});
	
	Calendar.setup({
		inputField  : "form_llegada",      // ID of the input field
		ifFormat    : "%d/%m/%Y",    // the date format
		//ifFormat    : "%Y-%m-%d",    // the date format
		singleClick : false,
		showsTime   : false,
		timeFormat  : '24',
		electric    : true,
		showOthers  : true,
		button      : "calendar_llegada"       // ID of the button
	});
}
