﻿var CalendarInput =
{
    OnDocumentReady: function(e) {
       
        $("#"+e.data.id).datepicker
		(
			{
			    duration: 0,
			    numberOfMonths: 1,
			    onClose: CalendarInput.OnClose
			}
		);
    }
};
