<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>GPL-LICENSE.txt</filename>
    </added>
    <added>
      <filename>MIT-LICENSE.txt</filename>
    </added>
    <added>
      <filename>examples/basic.html</filename>
    </added>
    <added>
      <filename>examples/doc.css</filename>
    </added>
    <added>
      <filename>examples/example.html</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -5,42 +5,11 @@
     &lt;script src=&quot;lib/jquery-1.2.6.js&quot; type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;&lt;/script&gt;
     &lt;script src=&quot;lib/jquery.carousel.js&quot; type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;&lt;/script&gt;
     &lt;link rel=&quot;stylesheet&quot; href=&quot;lib/reset.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; title=&quot;no title&quot; charset=&quot;utf-8&quot;&gt;
-    &lt;link rel=&quot;stylesheet&quot; href=&quot;doc/doc.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; title=&quot;no title&quot; charset=&quot;utf-8&quot;&gt;
+    &lt;link rel=&quot;stylesheet&quot; href=&quot;examples/doc.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; title=&quot;no title&quot; charset=&quot;utf-8&quot;&gt;
     &lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
-      .disabled, .locked {
-        cursor: default;
-        color: #bbb;
-      }
-      
-      ul#simple {
-        position: relative;
-      }
-      ul#simple li {
-        float: left;
-        width: 200px;
-        background: #eee;
-
-      }
-      .button {
-        cursor: pointer;
-      }
-      
-      .example {
-        clear: both;
-      }
-      
-      .example .carousel {
-        border: 1px solid #aaa;
-        float: left;
-        display: inline;
-      }
-      
-      .example span {
-        float: left;
-      }
-      
-      #next, #prev {
-        margin: 0 1em;
+      ul {
+        list-style: disc inside;
+        margin: 1em;
       }
     &lt;/style&gt;
     
@@ -64,15 +33,17 @@
     &lt;h2&gt;Contents&lt;/h2&gt;
     &lt;ol id=&quot;contents&quot;&gt;
       &lt;li&gt;&lt;a href=&quot;#introduction&quot;&gt;Introduction&lt;/a&gt;&lt;/li&gt;
-      &lt;li&gt;&lt;a href=&quot;#introduction&quot;&gt;Basic Examples&lt;/a&gt;&lt;/li&gt;
-      &lt;li&gt;&lt;a href=&quot;doc/example.html&quot;&gt;Extended Example&lt;/a&gt;&lt;/li&gt;
+      &lt;li&gt;&lt;a href=&quot;#requirements&quot;&gt;Requirements&lt;/a&gt;&lt;/li&gt;
+      &lt;li&gt;&lt;a href=&quot;#requirements&quot;&gt;Configurations&lt;/a&gt;&lt;/li&gt;
+      &lt;li&gt;&lt;a href=&quot;examples/basic.html&quot;&gt;Basic Examples&lt;/a&gt;&lt;/li&gt;
+      &lt;li&gt;&lt;a href=&quot;examples/example.html&quot;&gt;Extended Example&lt;/a&gt;&lt;/li&gt;
     &lt;/ol&gt;
     
     &lt;h2 id=&quot;introduction&quot;&gt;Introduction&lt;/h2&gt;
     &lt;p&gt;
       Carousel is a very simple &lt;a href=&quot;http://jquery.com/&quot;&gt;jQuery&lt;/a&gt; plugin that will modify any list of items into a horizontal scrolling carousel. There are a few configuration options, but it has purposely been kept feature light to provide a easily adaptable plugin that you can tailer to your specific requirements. 
     &lt;/p&gt;
-    &lt;h2&gt;Requirements&lt;/h2&gt;
+    &lt;h2 id=&quot;requirements&quot;&gt;Requirements&lt;/h2&gt;
     &lt;p&gt;
       The dependencies needed to run use it have also kept to a minimum. All you need to do to create a carousel is the following:
     &lt;/p&gt;
@@ -81,17 +52,18 @@
       &lt;li&gt;Include the jquery.carousel plugin&lt;/li&gt;
       &lt;li&gt;Explicitly give the list items a width and set their margin and padding to 0&lt;/li&gt;
     &lt;/ul&gt;
-    &lt;code&gt;
     &lt;p&gt;
       Once these requirements are met you can call the carousel function (specifying a next and previous button) 
     &lt;/p&gt;
-      $(&quot;#calendar&quot;).carousel({ 
-        nextButton: &quot;#next_week_link&quot;, 
-        prevButton: &quot;#previous_week_link&quot;, 
-        index: 1,
-        animateDuration: 1000
-      });
-    &lt;/code&gt;
+    &lt;code&gt;
+&lt;pre&gt;
+$(&quot;#calendar&quot;).carousel({ 
+  nextButton: &quot;#next_week_link&quot;, 
+  prevButton: &quot;#previous_week_link&quot;, 
+  index: 1,
+  animateDuration: 1000
+});
+&lt;/pre&gt;&lt;/code&gt;
     
     &lt;h2&gt;Configuration&lt;/h2&gt;
     &lt;p&gt;
@@ -125,26 +97,5 @@
       &lt;/tr&gt;
       
     &lt;/table&gt;
-    
-    &lt;h2&gt;Basic Examples&lt;/h2&gt;
-    &lt;div class=&quot;example&quot;&gt;
-      &lt;h3&gt;A Simple Example&lt;/h3&gt;
-      &lt;span id=&quot;prev&quot; class=&quot;button&quot;&gt;prev&lt;/span&gt;
-      &lt;ul id=&quot;simple&quot;&gt;
-        &lt;li&gt;one.0&lt;/li&gt;
-        &lt;li&gt;one.1&lt;/li&gt;
-        &lt;li&gt;one.2&lt;/li&gt;
-      &lt;/ul&gt;
-      &lt;span id=&quot;next&quot; class=&quot;button&quot;&gt;next&lt;/span&gt;
-    &lt;/div&gt;
-    &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;
-      $(function() {
-        $(&quot;#simple&quot;).carousel({ 
-          nextButton: &quot;#next&quot;, 
-          prevButton: &quot;#prev&quot;,
-          index: 1
-        });
-      });
-    &lt;/script&gt;
   &lt;/body&gt;
 &lt;/html&gt;
\ No newline at end of file</diff>
      <filename>index.html</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
  * and GPL (GPL-LICENSE.txt) licenses.
  *
  * A jQuery plugn
- *   http://jquery.com
+ *   http://neophiliac.net
  */
 (function($){
   $.fn.carousel = function(options) {
@@ -28,7 +28,7 @@
       list.css(&quot;position&quot;, &quot;relative&quot;);
       list.css(&quot;width&quot;, list.children().length * listItemWidth);
       list.css(&quot;left&quot;, &quot;-&quot; + (listItemWidth * options.index) +&quot;px&quot;);
-      container.css(&quot;width&quot;, listItemWidth).css(&quot;overflow&quot;, &quot;hidden&quot;);;
+      container.addClass(&quot;carousel&quot;).css(&quot;width&quot;, listItemWidth).css(&quot;overflow&quot;, &quot;hidden&quot;);;
       
       nextButton.bind(&quot;click&quot;, nextButtonClick);
       prevButton.bind(&quot;click&quot;, previousButtonClick);</diff>
      <filename>lib/jquery.carousel.js</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>doc/doc.css</filename>
    </removed>
    <removed>
      <filename>doc/example.html</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>b3ff84ca16ea65b3c0d3607f8fb1e1d05fa8f0f0</id>
    </parent>
  </parents>
  <author>
    <name>Michael Jones</name>
    <email>michael.daniel.jones@gmail.com</email>
  </author>
  <url>http://github.com/mikejones/carousel/commit/ff7aa915adbdd579dbd7419c3f0487eaa4421113</url>
  <id>ff7aa915adbdd579dbd7419c3f0487eaa4421113</id>
  <committed-date>2008-11-11T01:01:05-08:00</committed-date>
  <authored-date>2008-11-11T01:01:05-08:00</authored-date>
  <message>tidied up documentation a bit more</message>
  <tree>3aab42c0bcc2c674c8403dffaea2993a3deec850</tree>
  <committer>
    <name>Michael Jones</name>
    <email>michael.daniel.jones@gmail.com</email>
  </committer>
</commit>
