diff --git a/README.md b/README.md
index 21ddd32..abea6c8 100644
--- a/README.md
+++ b/README.md
@@ -1,453 +1,83 @@
# Slideout.js
-
-[![NPM version][npm-image]][npm-link] [![License][lic-image]][npm-link] [![Build status][travis-image]][travis-link] [![Coverage Status][coverage-image]][coverage-link] [![Dependency status][deps-image]][deps-link] [![devDependency status][devdeps-image]][devdeps-link] [![downloads][dt-image]][npm-link]
-
-> A touch slideout navigation menu for your mobile web apps.
+This is a fork of the slideout.js project: https://github.com/Mango/slideout
## Features
+I forked this to add a feature that a company wanted: The ability to slide over instead of pushing the entire page.
-- Dependency-free.
-- Simple markup.
-- Native scrolling.
-- Easy customization.
-- CSS transforms & transitions.
-- Just 2 Kb! (min & gzip)
-
-## Demo
-
-[Check out the demo](https://mango.github.io/slideout/) to see it in action (on your mobile or emulate touches on your browser).
-
-
+I therefore made this an option when you initialize your slideout.js menu.
-## Installation
-
-Slideout is available on cdnjs
-
-```html
-
+All changes to the code is marked with:
+```js
+// Slideover fork feature
```
-Also you can use one of many package managers
-
- $ npm install slideout
-
- $ spm install slideout
-
- $ bower install slideout.js
-
- $ component install mango/slideout
-
## Usage
+See the original project page for more details. This only covers this fork's changes.
-Implementing Slideout.js into your project is easy.
-
-First of all, you'll need to create your markup. You should have a menu (`#menu`) and a main content (`#panel`) into your body.
-
+Slideout menu initialization:
```html
-
-
-
-
-
-```
-
-Add the Slideout.js styles (index.css) in your web application.
-
-```css
-body {
- width: 100%;
- height: 100%;
-}
-
-.slideout-menu {
- position: fixed;
- left: 0;
- top: 0;
- bottom: 0;
- right: 0;
- z-index: 0;
- width: 256px;
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- display: none;
-}
-
-.slideout-panel {
- position:relative;
- z-index: 1;
- will-change: transform;
-}
-
-.slideout-open,
-.slideout-open body,
-.slideout-open .slideout-panel {
- overflow: hidden;
-}
-
-.slideout-open .slideout-menu {
- display: block;
-}
-```
-
-Then you just include Slideout.js and create a new instance with some options:
-
-```html
-
```
-#### Full example
+### CSS
+I created a set of CSS classes for doing slide left, slide right, push left and push right.
-```html
-
-
-
-
- Slideout Demo
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-```
-
-## Browser Support
-
-- Chrome (IOS, Android, desktop)
-- Firefox (Android, desktop)
-- Safari (IOS, Android, desktop)
-- Opera (desktop)
-- IE 10+ (desktop)
-
-## API
-
-### Slideout(options)
-Create a new instance of `Slideout`.
-
-- `options` (Object) - Options to customize a new instance of Slideout.
-- `options.panel` (HTMLElement) - The DOM element that contains all your application content (`.slideout-panel`).
-- `options.menu` (HTMLElement) - The DOM element that contains your menu application (`.slideout-menu`).
-- `[options.duration]` (Number) - The time (milliseconds) to open/close the slideout. Default: `300`.
-- `[options.fx]` (String) - The CSS effect to use when animating the opening and closing of the slideout. Default: `ease`. Possible values:
- - `ease`
- - `linear`
- - `ease-in`
- - `ease-out`
- - `ease-in-out`
- - `step-start`
- - `step-end`
-- `[options.padding]` (Number) - Default: `256`.
-- `[options.tolerance]` (Number) - The number of `px` needed for the menu can be opened completely, otherwise it closes. Default: `70`.
-- `[options.touch]` (Boolean) - Set this option to false to disable Slideout touch events. Default: `true`.
-- `[options.side]` (String) - The side to open the slideout (`left` or `right`). Default: `left`.
-
-```js
-var slideout = new Slideout({
- 'panel': document.getElementById('main'),
- 'menu': document.getElementById('menu'),
- 'padding': 256,
- 'tolerance': 70
-});
-```
-
-### Slideout.open();
-Opens the slideout menu. It emits `beforeopen` and `open` events.
-
-```js
-slideout.open();
-```
-
-### Slideout.close();
-Closes the slideout menu. It emits `beforeclose` and `close` events.
-
-```js
-slideout.close();
-```
-
-### Slideout.toggle();
-Toggles (open/close) the slideout menu.
-
-```js
-slideout.toggle();
-```
-
-### Slideout.isOpen();
-Returns `true` if the slideout is currently open, and `false` if it is closed.
-
-```js
-slideout.isOpen(); // true or false
-```
-
-### Slideout.destroy();
-Cleans up the instance so another slideout can be created on the same area.
-
-```js
-slideout.destroy();
-```
+#### Push left
+The default configuration is push left.
-### Slideout.enableTouch();
-Enables opening the slideout via touch events.
-```js
-slideout.enableTouch();
-```
-
-### Slideout.disableTouch();
-Disables opening the slideout via touch events.
-
-```js
-slideout.disableTouch();
-```
-
-### Slideout.on(event, listener);
-```js
-slideout.on('open', function() { ... });
-```
-
-### Slideout.once(event, listener);
-```js
-slideout.once('open', function() { ... });
-```
-
-### Slideout.off(event, listener);
-```js
-slideout.off('open', listener);
-```
-
-### Slideout.emit(event, ...data);
-```js
-slideout.emit('open');
-```
-
-## Events
-
-An instance of Slideout emits the following events:
-
-- `beforeclose`
-- `close`
-- `beforeopen`
-- `open`
-- `translatestart`
-- `translate`
-- `translateend`
-
-The slideout emits `translatestart`, `translate` and `translateend` events only when it is opening/closing via touch events.
-
-```js
-slideout.on('translatestart', function() {
- console.log('Start');
-});
-
-slideout.on('translate', function(translated) {
- console.log('Translate: ' + translated); // 120 in px
-});
-
-slideout.on('translateend', function() {
- console.log('End');
-});
-
-// 'Start'
-// 'Translate 120'
-// 'End'
-```
-
-## npm-scripts
-```
-$ npm run build
-```
-
-```
-$ npm run dist
-```
-
-```
-$ npm test
-```
-
-```
-$ npm run hint
-```
-
-## FAQ
-
-### How to add a toggle button.
-
-```js
-// vanilla js
-document.querySelector('.toggle-button').addEventListener('click', function() {
- slideout.toggle();
-});
-
-// jQuery
-$('.toggle-button').on('click', function() {
- slideout.toggle();
-});
-```
-
-### How to open slideout from right side.
-
-You should define `left: auto` on the class `.slideout-menu`.
+#### Push right
```css
-.slideout-menu {
+.slideout-right-menu {
+ position: fixed;
left: auto;
+ right: 0;
}
```
-
-Then, use the `side` option with the value `right`.
-```js
-var slideout = new Slideout({
- 'panel': document.getElementById('content'),
- 'menu': document.getElementById('menu'),
- 'side': 'right'
-});
+```html
+