diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..fd98d34
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*~$
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..63179e7
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,20 @@
+Copyright (c) 2009 Nick Spacek
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README b/README
deleted file mode 100644
index e69de29..0000000
diff --git a/README.txt b/README.txt
new file mode 100644
index 0000000..7a7f610
--- /dev/null
+++ b/README.txt
@@ -0,0 +1,51 @@
+jQuery DateSpanPicker
+=====================
+
+This plugin is meant to offer a date span widget similar to the widget used in
+Google's Calendar application.
+
+Requirements
+---------------
+jQuery 1.3.2 (maybe not, but haven't tested with other versions)
+jQuery.date_input.js: http://jonathanleighton.com/projects/date-input
+
+Features
+---------------
+* Calendar widget using jQuery.date_input.js for selecting a date.
+* Select time in 30 minute intervals
+* End date/time automatically adjusted when the start date/time adjusted to
+ maintain a consistent interval.
+** End date/time not adjusted if less than start date/time
+* If end date and start date are the same (day), end time selector requires the
+ end time to be greater than the start time, and displays the difference.
+* "All day" checkbox hides the start/end time.
+
+Usage
+---------------
+Note: The included stylesheet pretties it up, but shouldn't be strictly
+required. That said, it will look like junk if you don't use any. ;D
+
+Given this HTML (style and script tags not shown):
+
+
+
+
+
diff --git a/example/jquery.date_input.js b/example/jquery.date_input.js
new file mode 100644
index 0000000..7323441
--- /dev/null
+++ b/example/jquery.date_input.js
@@ -0,0 +1,344 @@
+/*
+Date Input 1.2.1
+Requires jQuery version: >= 1.2.6
+
+Copyright (c) 2007-2008 Jonathan Leighton & Torchbox Ltd
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+*/
+
+DateInput = (function($) {
+
+function DateInput(el, opts) {
+ if (typeof(opts) != "object") opts = {};
+ $.extend(this, DateInput.DEFAULT_OPTS, opts);
+
+ this.input = $(el);
+ this.bindMethodsToObj("show", "hide", "hideIfClickOutside", "keydownHandler", "selectDate");
+
+ this.build();
+ this.selectDate();
+ this.hide();
+};
+DateInput.DEFAULT_OPTS = {
+ month_names: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
+ short_month_names: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
+ short_day_names: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
+ start_of_week: 1
+};
+DateInput.prototype = {
+ build: function() {
+ var monthNav = $('