diff --git a/MIT.LICENSE b/MIT.LICENSE
deleted file mode 100755
index c0de17d..0000000
--- a/MIT.LICENSE
+++ /dev/null
@@ -1,17 +0,0 @@
-Open Source Initiative OSI - The MIT License (MIT):Licensing
-[OSI Approved License]
-The MIT License (MIT)
-
-Copyright (c) 2014 CynthiaSanchez - Parallax Image Scroll
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
-documentation files (the "Software"), to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
-and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
-IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
deleted file mode 100644
index a25d80f..0000000
--- a/README.md
+++ /dev/null
@@ -1,112 +0,0 @@
-Parallax-img-scroll
-===================
-IMPORTANT: The use of Parallax-img-scroll is free for both personal and commmercial use.
-
-DEMO: Parallax Image Scroll
-
-Other pages using it:
-TriviaLine
-
-
Whats new in version 1.2.5
-* Page reload fix. Scroll to top on page load.
-* Page Loader added: adds a "Loading Page" which fades out after all images have been loaded. Simply set "pageLoader: true" in your configuration.
-
-
- In your HTML wrap you only need to add the class parallax-img-container to the wraper containing the information itself (e.g. it can have a video, images, text, etc. every element that will remain static) and the floating elements you want to give life when scrolling your site.
- To make the elements in this container move, you only need to add the class parallax-move to them. You can make any kind of element move: images, divs, titles, etc. etc.
-
Example
-
- <div class="parallax-img-container">
- <h1>The day Internet was the future</h1>
- <p>Some static text that will not move</p>
-
- <!-- here I put the elements that will move.. they dont
- have to necessarily be at the bottom of the container -->
-
- <img class="parallax-move"src="01.png" />
- <div class="parallax-move">something here</div>
- <p class="parallax-move">text that will move</p>
- </div>
-
-
Important!
-
-
The container with class="parallax-img-container" can have multiple classes.
-
There must be a parent container with a fixed height in order for you to be able to whether give the fixed position to your floating elements, or for Parallax-img-scroll to give a random position inside the container.
-
-
-
-
Options
-
-
-
Global Parameters
-When initiating Parallax-img-scroll you can pass an object with two parameters as stated below:
-
- $(document).on("ready", function() {
- var parallaxSettings = {
- initialOpacity: 1, //from 0 to 1, e.g. 0.34 is a valid value. 0 = transparent, 1 = Opaque
- opacitySpeed: 0.1, //values from 0.01 to 1 -> 0.01: slowly appears on screen; 1: appears as soon as the user scrolls 1px
- pageLoader: true //creates a page loader. It is set "false" by default.
- };
-
- parallaxImgScroll(parallaxSettings);
- });
-
-
initialOpacity
-Is the initial opacity for all the elements with class="parallax-move".
-Can have a decimal value from 0 to 1 (e.g.: 0, 0.4, 0.9, etc), where 0 means the elements will start transparent and 1 meaning they will appear opaque on screen.
-
-
opacitySpeed
-Is the speed in which the element will become opaque as the user scrolls down your page.
-Can have a decimal value from 0.01 to 1, where 0.01 means it will veryyyy slowly appear on screen, and 1 means it will become opaque as soon as the user touches the scroll of the mouse ;).
-ATTENTION: 0 is also a valid value, but it means the elements WONT become visible...ever.
-
-
pageLoader
-This option of type Boolean (true/false) will add a "loading page" div while the page is being loaded. The div will disappear once all the images and elements have been loaded and your page will fade into the screen.
-It is set to False by default by I recommend you setting it as True when you initialize ParallaxImgScroll as it will avoid the user from seing any imperfection of the screen being rendered para Parallax.
-
-
-
-
Individual Parameters
-Calling ParallaxImgScroll will assing random positions to the elements containing the class "parallax-move" as well as random scrolling speed.
-This is very useful if you have a design where you need stars, lights, bugs, etc. appearing randomly on the container (with class="parallax-img-container").
-However, in most of the cases you may need to set a fixed initial position for your elements. For that, you can play with the role attribute as stated in the following lines:
-
-
data-ps-z-index: will set the position of the element as a layer. For example, in the demo you can see when you scroll down and see the people appearing, they have been distributed in layers so then one is on top of the other to create this sort of 3D effect that Parallax defines. In order to do so you can give a value of 1 to the element that goes below, then "2" to the element that goes on top of this and "3" to the next element, etc.
-
data-ps-speed: This attribute will set the scrolling speed. The value here starts from 0.01 as a veryyyyy slow movement on scroll down, and a number 10 is a very fast element passing by when the user scrolls. (give it a try until you find the speed you need for each of your elements)
-
-
data-ps-vertical-position: This is where you can set up the initial Vertical position. Please notice that this vertical position will add the property "bottom: xxx" to your element at the beginning, and then of course update it every time the user scrolls down/up calculating the speed you have declared (or the random one assigned if you didnt declare one). Therefor, if you set a value like data-ps-vertical-position="100" it means the element will start 100px from the bottom of the container, that means, it will have a CSS property of bottom: 100px;
-
-
-data-ps-horizontal-position: This is where you set up the horizontal position (yes, the name says it). In this case the behaviour is similar to the one stated above but the property added in this case in CSS is Left, which means if you declare this attribute for your element as data-ps-horizontal-position="50" this will have a distance of 50px between the left side of the window and the actual element.
-
-In this case you can see this image is the lowest one in the layer data-ps-z-index="1", it has a scrolling speed of 1 data-ps-speed="1", and it has a vertical position of 700px from the bottom and 420px from the left side of the window data-ps-vertical-position="700" data-ps-horizontal-position="420"
-
-
-
Dependencies:
-Make sure to previously include the JQuery script:
-http://jquery.com/download/
-
-To get a better behaviour of your scroll I recommend also adding "jquery.nicescroll.min.js" which will give your page an smooth scrolling like mobiles and ipads/tablets have.
-(more info: http://nicescroll.areaaperta.com/).
-
-For more information do not hesitate contacting me on twitter as @cyntss
-
-Licensed under the MIT License, http://www.opensource.org/licenses/mit-license.php
diff --git a/demo/img/assassins/001.png b/assassins/001.png
similarity index 100%
rename from demo/img/assassins/001.png
rename to assassins/001.png
diff --git a/demo/img/assassins/002.png b/assassins/002.png
similarity index 100%
rename from demo/img/assassins/002.png
rename to assassins/002.png
diff --git a/demo/img/assassins/003.png b/assassins/003.png
similarity index 100%
rename from demo/img/assassins/003.png
rename to assassins/003.png
diff --git a/demo/img/assassins/Thumbs.db b/assassins/Thumbs.db
similarity index 100%
rename from demo/img/assassins/Thumbs.db
rename to assassins/Thumbs.db
diff --git a/demo/img/assassins/bg-assassins.jpg b/assassins/bg-assassins.jpg
similarity index 100%
rename from demo/img/assassins/bg-assassins.jpg
rename to assassins/bg-assassins.jpg
diff --git a/demo/img/assassins/bg.jpg b/assassins/bg.jpg
similarity index 100%
rename from demo/img/assassins/bg.jpg
rename to assassins/bg.jpg
diff --git a/demo/img/assassins/birds.png b/assassins/birds.png
similarity index 100%
rename from demo/img/assassins/birds.png
rename to assassins/birds.png
diff --git a/demo/img/assassins/black-cloud.png b/assassins/black-cloud.png
similarity index 100%
rename from demo/img/assassins/black-cloud.png
rename to assassins/black-cloud.png
diff --git a/demo/img/assassins/smoke-01.png b/assassins/smoke-01.png
similarity index 100%
rename from demo/img/assassins/smoke-01.png
rename to assassins/smoke-01.png
diff --git a/demo/img/assassins/smoke-02.png b/assassins/smoke-02.png
similarity index 100%
rename from demo/img/assassins/smoke-02.png
rename to assassins/smoke-02.png
diff --git a/demo/img/assassins/smoke-03.png b/assassins/smoke-03.png
similarity index 100%
rename from demo/img/assassins/smoke-03.png
rename to assassins/smoke-03.png
diff --git a/demo/img/assassins/smoke-04.png b/assassins/smoke-04.png
similarity index 100%
rename from demo/img/assassins/smoke-04.png
rename to assassins/smoke-04.png
diff --git a/demo/img/assassins/smoke-05.png b/assassins/smoke-05.png
similarity index 100%
rename from demo/img/assassins/smoke-05.png
rename to assassins/smoke-05.png
diff --git a/demo/img/assassins/smoke-06.png b/assassins/smoke-06.png
similarity index 100%
rename from demo/img/assassins/smoke-06.png
rename to assassins/smoke-06.png
diff --git a/demo/img/assassins/smoke-07.png b/assassins/smoke-07.png
similarity index 100%
rename from demo/img/assassins/smoke-07.png
rename to assassins/smoke-07.png
diff --git a/demo/img/assassins/stick.png b/assassins/stick.png
similarity index 100%
rename from demo/img/assassins/stick.png
rename to assassins/stick.png
diff --git a/demo/img/circle.png b/circle.png
similarity index 100%
rename from demo/img/circle.png
rename to circle.png
diff --git a/demo/.DS_Store b/demo/.DS_Store
deleted file mode 100644
index dee0e3e..0000000
Binary files a/demo/.DS_Store and /dev/null differ
diff --git a/demo/MIT.LICENSE b/demo/MIT.LICENSE
deleted file mode 100755
index c0de17d..0000000
--- a/demo/MIT.LICENSE
+++ /dev/null
@@ -1,17 +0,0 @@
-Open Source Initiative OSI - The MIT License (MIT):Licensing
-[OSI Approved License]
-The MIT License (MIT)
-
-Copyright (c) 2014 CynthiaSanchez - Parallax Image Scroll
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
-documentation files (the "Software"), to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
-and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
-IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/demo/index.html b/demo/index.html
deleted file mode 100644
index 7a72331..0000000
--- a/demo/index.html
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
- Parallax Images Scroll
-
-
-
-
-
-
-
-
-
-
-
-
-
-