<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,7 +1,11 @@
 #Mamoo
 The Motionbox Advanced Model Observer Observer
 
-A light-weight MVC framework for separating concerns (Data model, views, related actions).  It's built on top of [Prototype](http://prototypejs.org) and the [Motionbox EventHandler](http://github.com/tobowers/motionbox-eventhandler). Minimized it's about 13k.
+A light-weight MVC framework for separating concerns (Data model, views, related actions). It also provides a javscript queue system which lines functions up in an array and will execute them at an interval.
+
+Full documentation can be found here: [http://tobowers.github.com/mamoo/](http://tobowers.github.com/mamoo/)
+
+It's built on top of [Prototype](http://prototypejs.org) and the [Motionbox EventHandler](http://github.com/tobowers/motionbox-eventhandler). Minimized it's about 13k.
 
 #introduction
 
@@ -135,7 +139,24 @@ If you want something more complicated, updatesOn will give you that too:
     });
     // this will update the width of &quot;anElement&quot; when instance changes &quot;key&quot; - so... instance.set(&quot;key&quot;, 20) would change the width of that element to 20%
     
+# Queue
+
+MBX.Queue is a queue system with some simple options
+
+    var queue = MBX.Queue.create({
+        interval: 1000, // the number of miliseconds between fires
+        singleItem: true, // defaults to false - but if it's true, only the latest function added will be kept in the queue.
+    });
+    
+    queue.add(function () {
+        alert(&quot;first function!&quot;);
+    });
+    queue.add(function () {
+        alert('second func');
+    });
+    queue.start();
 
+Because we specified &quot;singleItem: true&quot; above, *only* 'second func' would get alerted.
 
 # A simple setup
 </diff>
      <filename>README.markdown</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c7d4d2c03557182bff6973b99dbc96af03d695ec</id>
    </parent>
  </parents>
  <author>
    <name>topper</name>
    <email>topper@toppingdesign.com</email>
  </author>
  <url>http://github.com/tobowers/mamoo/commit/2803cd4f50c0ff6e7f4d44705af7da46df0724b2</url>
  <id>2803cd4f50c0ff6e7f4d44705af7da46df0724b2</id>
  <committed-date>2009-03-15T10:18:27-07:00</committed-date>
  <authored-date>2009-03-15T10:18:27-07:00</authored-date>
  <message>document MBX.Queue a little</message>
  <tree>5f421422e1600f48360e1cb91d19ece356c1040f</tree>
  <committer>
    <name>topper</name>
    <email>topper@toppingdesign.com</email>
  </committer>
</commit>
