$(function() {
	//init calendars
	$("#open_date").click(function() {
		$("#open_date_calendar").html("");
		var val = $("#open_date").val();
		$("#open_date_calendar").setCalendar("en", val ? val : null, "#open_date");
	});
	$("#close_date").click(function() {
		$("#close_date_calendar").html("");
		var val = $("#close_date").val();
		$("#close_date_calendar").setCalendar("en", val ? val : null, "#close_date");
	});
});
function linkToFunc(obj, target) {
	target.val(obj.title);
	//hide calendars
	$("#open_date_calendar").html("");
	$("#close_date_calendar").html("");
};
