diff --git a/jquery-cookie/README.rdoc b/jquery-cookie/README.rdoc
deleted file mode 100644
index 610cf47f791586dfb6d9e9ac69898958031cd9b2..0000000000000000000000000000000000000000
--- a/jquery-cookie/README.rdoc
+++ /dev/null
@@ -1,71 +0,0 @@
-= jquery.cookie
-
-A simple, lightweight jQuery plugin for reading, writing and deleting cookies.
-
-== Installation
-
-Include script *after* the jQuery library (unless you are packaging scripts somehow else):
-
-    <script src="/path/to/jquery.cookie.js"></script>
-
-== Usage
-
-Create session cookie:
-
-    $.cookie('the_cookie', 'the_value');
-
-Create expiring cookie, 7 days from then:
-
-    $.cookie('the_cookie', 'the_value', { expires: 7 });
-
-Create expiring cookie, valid across entire page:
-
-    $.cookie('the_cookie', 'the_value', { expires: 7, path: '/' });
-
-Read cookie:
-
-    $.cookie('the_cookie'); // => 'the_value'
-    $.cookie('not_existing'); // => null
-
-Delete cookie by passing null as value:
-
-    $.cookie('the_cookie', null);
-
-== Options
-
-    expires: 365
-
-Define lifetime of the cookie. Value can be a +Number+ (which will be interpreted as days from time of creation) or a +Date+ object. If omitted, the cookie is a session cookie.
-
-    path: '/'
-
-Default: path of page where the cookie was created.
-
-Define the path where cookie is valid. <b>By default the path of the cookie is the path of the page where the cookie was created (standard browser behavior).</b> If you want to make it available for instance across the entire page use <code>path: '/'</code>. If you want to delete a cookie with a particular path, you need to include that path in the call.
-
-    domain: 'example.com'
-
-Default: domain of page where the cookie was created.
-
-    secure: true
-
-Default: +false+. If true, the cookie transmission requires a secure protocol (https).
-
-    raw: true
-
-Default: +false+.
-
-By default the cookie is encoded/decoded when creating/reading, using +encodeURIComponent+/+decodeURIComponent+. Turn off by setting <code>raw: true</code>.
-
-== Changelog
-
-== Development
-
-- Source hosted at {GitHub}[https://github.com/carhartl/jquery-cookie]
-- Report issues, questions, feature requests on {GitHub Issues}[https://github.com/carhartl/jquery-cookie/issues]
-
-Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change you make.
-
-== Authors
-
-{Klaus Hartl}[https://github.com/carhartl]
diff --git a/jquery-cookie/jquery.cookie.js b/jquery-cookie/jquery.cookie.js
deleted file mode 100644
index 6a3e394b403d5084b70b8ed7ccdc0d566f2fcbdb..0000000000000000000000000000000000000000
--- a/jquery-cookie/jquery.cookie.js
+++ /dev/null
@@ -1,41 +0,0 @@
-/**
- * jQuery Cookie plugin
- *
- * Copyright (c) 2010 Klaus Hartl (stilbuero.de)
- * Dual licensed under the MIT and GPL licenses:
- * http://www.opensource.org/licenses/mit-license.php
- * http://www.gnu.org/licenses/gpl.html
- *
- */
-jQuery.cookie = function (key, value, options) {
-
-    // key and at least value given, set cookie...
-    if (arguments.length > 1 && String(value) !== "[object Object]") {
-        options = jQuery.extend({}, options);
-
-        if (value === null || value === undefined) {
-            options.expires = -1;
-        }
-
-        if (typeof options.expires === 'number') {
-            var days = options.expires, t = options.expires = new Date();
-            t.setDate(t.getDate() + days);
-        }
-
-        value = String(value);
-
-        return (document.cookie = [
-            encodeURIComponent(key), '=',
-            options.raw ? value : encodeURIComponent(value),
-            options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
-            options.path ? '; path=' + options.path : '',
-            options.domain ? '; domain=' + options.domain : '',
-            options.secure ? '; secure' : ''
-        ].join(''));
-    }
-
-    // key and possibly options given, get cookie...
-    options = value || {};
-    var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
-    return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
-};
diff --git a/jquery-cookie/server.js b/jquery-cookie/server.js
deleted file mode 100644
index 9a911739091cd2b7a43ae1b69fc912a6fbcde142..0000000000000000000000000000000000000000
--- a/jquery-cookie/server.js
+++ /dev/null
@@ -1,24 +0,0 @@
-var http = require('http'),
-    url  = require('url'),
-    path = require('path'),
-    fs   = require('fs');
-
-http.createServer(function (request, response) {
-    var uri      = url.parse(request.url).pathname,
-        filename = path.join(process.cwd(), uri);
-
-    fs.readFile(filename, 'binary', function (err, file) {
-        if (err) {
-            response.writeHead(500, { 'Content-Type': 'text/plain' });
-            response.write(err + '\n');
-            response.end();
-            return;
-        }
-
-        response.writeHead(200);
-        response.write(file, 'utf-8');
-        response.end();
-    });
-}).listen(8124, '127.0.0.1');
-
-console.log('Server running at http://127.0.0.1:8124/');
diff --git a/jquery-cookie/test.html b/jquery-cookie/test.html
deleted file mode 100644
index cc477f83264a15d098d2936feef222484b143c47..0000000000000000000000000000000000000000
--- a/jquery-cookie/test.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!doctype html>
-<html>
-    <head>
-        <meta charset="utf-8">
-        <link rel="stylesheet" href="http://code.jquery.com/qunit/git/qunit.css">
-        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
-        <script src="http://code.jquery.com/qunit/git/qunit.js"></script>
-        <script src="jquery.cookie.js"></script>
-        <script src="test.js"></script>
-        <title>jquery.cookie Test Suite</title>
-    </head>
-    <body>
-        <h1 id="qunit-header">jquery.cookie Test Suite</h1>
-        <h2 id="qunit-banner"></h2>
-        <div id="qunit-testrunner-toolbar"></div>
-        <h2 id="qunit-userAgent"></h2>
-        <ol id="qunit-tests"></ol>
-    </body>
-</html>
diff --git a/jquery-cookie/test.js b/jquery-cookie/test.js
deleted file mode 100644
index 16cb0f3415709ecaa4569051f4e7ef3bd5121cc9..0000000000000000000000000000000000000000
--- a/jquery-cookie/test.js
+++ /dev/null
@@ -1,65 +0,0 @@
-var before = {
-    setup: function () {
-        cookies = document.cookie.split('; ')
-        for (var i = 0, c; (c = (cookies)[i]) && (c = c.split('=')[0]); i++) {
-            document.cookie = c + '=; expires=' + new Date(0).toUTCString();
-        }
-    }
-};
-
-
-module('read', before);
-
-test('simple value', 1, function () {
-    document.cookie = 'c=v';
-    equals($.cookie('c'), 'v', 'should return value');
-});
-
-test('not existing', 1, function () {
-    equals($.cookie('whatever'), null, 'should return null');
-});
-
-test('decode', 1, function () {
-    document.cookie = encodeURIComponent(' c') + '=' + encodeURIComponent(' v');
-    equals($.cookie(' c'), ' v', 'should decode key and value');
-});
-
-test('raw: true', 1, function () {
-    document.cookie = 'c=%20v';
-    equals($.cookie('c', { raw: true }), '%20v', 'should not decode');
-});
-
-
-module('write', before);
-
-test('String primitive', 1, function () {
-    $.cookie('c', 'v');
-    equals(document.cookie, 'c=v', 'should write value');
-});
-
-test('String object', 1, function () {
-    $.cookie('c', new String('v'));
-    equals(document.cookie, 'c=v', 'should write value');
-});
-
-test('return', 1, function () {
-    equals($.cookie('c', 'v'), 'c=v', 'should return written cookie string');
-});
-
-test('raw: true', 1, function () {
-    equals($.cookie('c', ' v', { raw: true }).split('=')[1],
-        ' v', 'should not encode');
-});
-
-
-module('delete', before);
-
-test('delete', 2, function () {
-    document.cookie = 'c=v';
-    $.cookie('c', null);
-    equals(document.cookie, '', 'should delete with null as value');
-
-    document.cookie = 'c=v';
-    $.cookie('c', undefined);
-    equals(document.cookie, '', 'should delete with undefined as value');
-});
