<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -2,8 +2,8 @@
 var weekdays = [&quot;Sun&quot;, &quot;Mon&quot;, &quot;Tue&quot;, &quot;Wed&quot;, &quot;Thu&quot;, &quot;Fri&quot;, &quot;Sat&quot;];
 var months = [&quot;Jan&quot;, &quot;Feb&quot;, &quot;Mar&quot;, &quot;Apr&quot;, &quot;May&quot;, &quot;Jun&quot;, &quot;Jul&quot;, &quot;Aug&quot;, &quot;Sep&quot;, &quot;Oct&quot;, &quot;Nov&quot;, &quot;Dec&quot;];
 
-function fdt(y,m,d,hr,mn) {
-  gmtDate = new Date(Date.UTC(y,m-1,d,hr,mn));
+function fdts(y,m,d,hr,mn,s) {
+  gmtDate = new Date(Date.UTC(y,m-1,d,hr,mn,s));
 	text = months[gmtDate.getMonth()];
   text += ' '+gmtDate.getDate();
   ampm = 'AM';
@@ -12,14 +12,33 @@ function fdt(y,m,d,hr,mn) {
   if (hours == 0) { hours = 12; }
   if (hours &gt; 12) { hours -= 12; }
   text += ' '+hours;
-  minutes = gmtDate.getMinutes()
+  minutes = gmtDate.getMinutes();
   if (minutes &lt; 10) { minutes = '0'+minutes; }
   text += ':'+minutes;
+  seconds = gmtDate.getSeconds();
+  if (seconds &lt; 10) { seconds = '0'+seconds; }
+  text += ':'+seconds;
   text += ' '+ampm;
   document.write(text);
 }
-function fd(y,m,d,hr,mn) {
-  gmtDate = new Date(Date.UTC(y,m-1,d,hr,mn));
+function fdt(y,m,d,hr,mn,s) {
+  gmtDate = new Date(Date.UTC(y,m-1,d,hr,mn,s));
+	text = months[gmtDate.getMonth()];
+  text += ' '+gmtDate.getDate();
+  ampm = 'AM';
+  hours = gmtDate.getHours();
+  if (hours &gt; 11) { ampm = 'PM'; }
+  if (hours == 0) { hours = 12; }
+  if (hours &gt; 12) { hours -= 12; }
+  text += ' '+hours;
+  minutes = gmtDate.getMinutes();
+  if (minutes &lt; 10) { minutes = '0'+minutes; }
+  text += ':'+minutes;
+  text += ' '+ampm;
+  document.write(text);
+}
+function fd(y,m,d,hr,mn,s) {
+  gmtDate = new Date(Date.UTC(y,m-1,d,hr,mn,s));
   text = months[gmtDate.getMonth()];
   text += ' '+gmtDate.getDate();
   document.write(text);</diff>
      <filename>public/javascripts/client_date.js</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>563baa6706c227b985914b7b4b3011d1f517bab3</id>
    </parent>
  </parents>
  <author>
    <name>Ryan Lowe</name>
    <email>ryanlowe@gmail.com</email>
  </author>
  <url>http://github.com/ryanlowe/client_date/commit/ea782f9a1ea2563481fb5e26d8e4cab690538b73</url>
  <id>ea782f9a1ea2563481fb5e26d8e4cab690538b73</id>
  <committed-date>2008-05-13T14:20:55-07:00</committed-date>
  <authored-date>2008-05-13T14:20:55-07:00</authored-date>
  <message>add support for seconds</message>
  <tree>7b487c1d3e0ba1275c490cee9bcc3f5545a51ff4</tree>
  <committer>
    <name>Ryan Lowe</name>
    <email>ryanlowe@gmail.com</email>
  </committer>
</commit>
