diff --git a/MIT-LICENCE.txt b/MIT-LICENCE.txt
new file mode 100644
index 0000000..8668d02
--- /dev/null
+++ b/MIT-LICENCE.txt
@@ -0,0 +1,7 @@
+Copyright (c) 2013 Fabrice ECAILLE aka Febbweiss
+
+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 b/README
index 762b2f4..d8708c7 100644
--- a/README
+++ b/README
@@ -1 +1,10 @@
-gq-pacman is a jQuery implementation of the famous Namco's Pacman
+gq-pacman is a jQuery implementation of the famous Namco's Pacman.
+
+Credits :
+
+Graphics : Fabrice Ecaille aka Febbweiss
+Code : Fabrice Ecaille aka Febbweiss
+Algorithm : Based on the "Pacman Dossier" (http://home.comcast.net/~jpittman2/pacman/pacmandossier.html)
+Tools : gameQuery (http://gamequeryjs.com/)
+Sounds : Sound FX Center (http://soundfxcenter.com/sound_effect/search.php?sfx=Pacman)
+
diff --git a/css/hack/csshover3.htc b/css/hack/csshover3.htc
new file mode 100644
index 0000000..4fa021f
--- /dev/null
+++ b/css/hack/csshover3.htc
@@ -0,0 +1,12 @@
+
+
\ No newline at end of file
diff --git a/css/pacman.css b/css/pacman.css
new file mode 100644
index 0000000..f4c0b9e
--- /dev/null
+++ b/css/pacman.css
@@ -0,0 +1,267 @@
+#playgroundContainer {
+ width: 448px;
+ height: 512px;
+ background-color: black;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.actor {
+ width: 32px;
+ height: 32px;
+ position: relative;
+ margin-top: -16px;
+ margin-left: -16px;
+}
+
+/** TILES **/
+
+.tile {
+ width: 16px;
+ height: 16px;
+ float: left;
+ margin: 0px;
+ padding: 0px;
+}
+
+.corner1 {
+ background-image: url('../img/sprite.png');
+ background-position: -0px -0px;
+}
+
+.corner2 {
+ background-image: url('../img/sprite.png');
+ background-position: -16px -0px;
+}
+
+.corner3 {
+ background-image: url('../img/sprite.png');
+ background-position: -32px 0px;
+}
+
+.corner4 {
+ background-image: url('../img/sprite.png');
+ background-position: -48px 0px;
+}
+
+.horizontalMidUp {
+ background-image: url('../img/sprite.png');
+ background-position: -96px -0px;
+}
+
+.horizontalMidDown {
+ background-image: url('../img/sprite.png');
+ background-position: -112px -0px;
+}
+
+.verticalMidLeft {
+ background-image: url('../img/sprite.png');
+ background-position: -64px -0px;
+}
+
+.verticalMidRight {
+ background-image: url('../img/sprite.png');
+ background-position: -80px -0px;
+}
+
+.squareCornerTopLeft {
+ background-image: url('../img/sprite.png');
+ background-position: -128px -0px;
+}
+
+.squareCornerTopRight {
+ background-image: url('../img/sprite.png');
+ background-position: -144px -0px;
+}
+
+.squareCornerBottomLeft {
+ background-image: url('../img/sprite.png');
+ background-position: -160px -0px;
+}
+
+.squareCornerBottomRight {
+ background-image: url('../img/sprite.png');
+ background-position: -176px -0px;
+}
+
+.gate {
+ background-image: url('../img/sprite.png');
+ background-position: -192px -0px;
+}
+
+.dot {
+ background-image: url('../img/sprite.png');
+ background-position: -208px -0px;
+}
+
+.bigDot {
+ background-image: url('../img/sprite.png');
+ background-position: -208px -16px;
+}
+
+.ghost {
+ width: 32px;
+ height: 32px;
+ float: left;
+}
+
+.blinky {
+ background-image: url('../img/sprite.png');
+ background-position: -160px -48px;
+}
+.pinky {
+ background-image: url('../img/sprite.png');
+ background-position: -160px -80px;
+}
+.inky {
+ background-image: url('../img/sprite.png');
+ background-position: -160px -112px;
+}
+.clyde {
+ background-image: url('../img/sprite.png');
+ background-position: -160px -144px;
+}
+
+.cherries {
+ background-image: url('../img/sprite.png');
+ background-position: -208px -32px;
+}
+
+.strawberry {
+ background-image: url('../img/sprite.png');
+ background-position: -208px -48px;
+}
+
+.peach {
+ background-image: url('../img/sprite.png');
+ background-position: -208px -64px;
+}
+
+.apple {
+ background-image: url('../img/sprite.png');
+ background-position: -208px -80px;
+}
+
+.grapes {
+ background-image: url('../img/sprite.png');
+ background-position: -208px -96px;
+}
+
+.galaxian {
+ background-image: url('../img/sprite.png');
+ background-position: -208px -112px;
+}
+
+.bell {
+ background-image: url('../img/sprite.png');
+ background-position: -208px -128px;
+}
+
+.key {
+ background-image: url('../img/sprite.png');
+ background-position: -208px -144px;
+}
+
+.description {
+ padding-left: 40px;
+ line-height: 3em;
+ vertical-align: middle;
+}
+/** HUD **/
+
+#message {
+ position : absolute;
+ left : 50%;
+ top : 50%;
+}
+
+#level {
+ position : relative;
+ top: -10px;
+ left: 5px;
+}
+
+#levelNumber {
+ position : relative;
+ top: -14px;
+ float: left;
+ margin-left: 100px;
+}
+
+#lives {
+ position: absolute;
+ top: -1px;
+ right: 10px;
+}
+
+#scoreMessage {
+ position: absolute;
+ right: 0px;
+}
+
+.life {
+ width: 32px;
+ height: 32px;
+ float: left;
+ background-image: url('../img/sprite.png');
+ background-position: 0px -16px;
+}
+
+/** SCOREBOARD**/
+
+.clock {
+ background : transparent url("../img/font.png") no-repeat top left;
+ height:32px;
+ width:32px;
+ float:left;
+}
+
+.clock.red {
+ background : transparent url("../img/font-red.png") no-repeat top left;
+}
+
+.clock.yellow {
+ background : transparent url("../img/font-yellow.png") no-repeat top left;
+}
+
+.clock.small {
+ position: relative;
+ top: 45%;
+ height: 16px;
+ width: 16px;
+}
+
+.n0 {
+ background-position : 0px 0px;
+}
+.n1 {
+ background-position : -32px 0px;
+}
+.n2 {
+ background-position : -64px 0px;
+}
+.n3 {
+ background-position : -96px 0px;
+}
+.n4 {
+ background-position : -128px 0px;
+}
+.n5 {
+ background-position : -160px 0px;
+}
+.n6 {
+ background-position : -192px 0px;
+}
+.n7 {
+ background-position : -224px 0px;
+}
+.n8 {
+ background-position : -256px 0px;
+}
+.n9 {
+ background-position : -288px 0px;
+}
+
+.hiddenDot {
+ visibility: hidden;
+}
diff --git a/img/banner.png b/img/banner.png
new file mode 100644
index 0000000..2cabdb7
Binary files /dev/null and b/img/banner.png differ
diff --git a/img/font-red.png b/img/font-red.png
new file mode 100644
index 0000000..65d6f9c
Binary files /dev/null and b/img/font-red.png differ
diff --git a/img/font-yellow.png b/img/font-yellow.png
new file mode 100644
index 0000000..718446e
Binary files /dev/null and b/img/font-yellow.png differ
diff --git a/img/font.png b/img/font.png
new file mode 100644
index 0000000..d22022b
Binary files /dev/null and b/img/font.png differ
diff --git a/img/sprite.png b/img/sprite.png
new file mode 100644
index 0000000..fe94a65
Binary files /dev/null and b/img/sprite.png differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..0c974b6
--- /dev/null
+++ b/index.html
@@ -0,0 +1,82 @@
+
+
+
+
+ Pacman
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Famous Namco©'s Pacman© is now available !!!
+
+
+ Use your keyboard arrows to move Pacman to eat all energizer to complete the level.
+ Ghosts become frightened when Pacman eats a big energizer. Eat them !!!
+
+
+ Beware of ghost who haunt the maze !!! Each one has his own personality :
+
+
Blinky tracks Pacman as his shadow.
+
+
Pinky perfoms ambushes to Pacman.
+
+
Inky is the least predictable.
+
+
Clyde pretends ignorance and is one who lags behind.
+
+
+
+
+
+
+
+
+
+
+
+
+