diff --git a/ChangeLog b/ChangeLog
index 8fa38baa..9827acbe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -153,6 +153,8 @@ for reading.
* Fixed bug with pressing enter on file.
+* Updated jquery jQuery-contextMenu to v1.6.5.
+
2012.12.12, Version 0.1.8
diff --git a/lib/client/menu/README.md b/lib/client/menu/README.md
index 5471c487..c3551ada 100644
--- a/lib/client/menu/README.md
+++ b/lib/client/menu/README.md
@@ -69,7 +69,7 @@ You're (obviously) able to use the context menu with your mouse. Once it is open
* ⇞ (page up) captured and ignore to avoid page scrolling (for consistency with native menus)
* ⇟ (page down) captured and ignore to avoid page scrolling (for consistency with native menus)
* ↖ (home) first item in list, will skip disabled elements
-* ↘ (end) last item in, will skip disabled elements
+* ↘ (end) last item in list, will skip disabled elements
Besides the obvious, browser also react to alphanumeric key strokes. Hitting r in a context menu will make Firefox (8) reload the page immediately. Chrome selects the option to see infos on the page, Safari selects the option to print the document. Awesome, right? Until trying the same on Windows I did not realize that the browsers were using the access-key for this. I would've preferred typing the first character of something, say "s" for "save" and then iterate through all the commands beginning with s. But that's me - what do I know about UX? Anyways, $.contextMenu now also supports accesskey handling.
@@ -82,9 +82,9 @@ use [Google Closure Compiler](http://closure-compiler.appspot.com/home):
// ==ClosureCompiler==
// @compilation_level SIMPLE_OPTIMIZATIONS
// @output_file_name contextMenu.js
-// @code_url http://medialize.github.com/jQuery-contextMenu/jquery-1.7.1.min.js
-// @code_url http://medialize.github.com/jQuery-contextMenu/jquery.ui.position.js
-// @code_url http://medialize.github.com/jQuery-contextMenu/jquery.contextMenu.js
+// @code_url http://medialize.github.com/jQuery-contextMenu/jquery-1.8.2.min.js
+// @code_url http://medialize.github.com/jQuery-contextMenu/src/jquery.ui.position.js
+// @code_url http://medialize.github.com/jQuery-contextMenu/src/jquery.contextMenu.js
// ==/ClosureCompiler==
```
@@ -103,155 +103,213 @@ $.contextMenu is published under the [MIT license](http://www.opensource.org/lic
## Changelog ##
-### 1.5.22 ###
+### 1.6.5 (January 20th 2013) ###
-* Fixing issue with animation and remove on hide (Issue #64)
+* fixing "opening a second menu can break the layer" - ([Issue #105](https://github.com/medialize/jQuery-contextMenu/issues/105))
-### 1.5.21 ###
+### 1.6.4 (January 19th 2013) ###
-* Fixing backdrop would not remove on destroy (Issue #63)
+* fixing [jQuery plugin manifest](https://github.com/medialize/jQuery-contextMenu/commit/413b1ecaba0aeb4e50f97cee35f7c367435e7830#commitcomment-2465216), again. yep. I'm that kind of a guy. :(
-### 1.5.20 ###
+### 1.6.3 (January 19th 2013) ###
-* Fixing backdrop would not position properly in IE6 (Issue #59)
-* Fixing nested input elements not accessible in Chrome / Safari (Issue #58)
+* fixing [jQuery plugin manifest](https://github.com/medialize/jQuery-contextMenu/commit/413b1ecaba0aeb4e50f97cee35f7c367435e7830#commitcomment-2465216)
+
+### 1.6.2 (January 19th 2013) ###
+
+* fixing "menu won't close" regression introduced by 1.6.1
+
+### 1.6.1 (January 19th 2013) ###
+
+* fixing potential html parsing problem
+* upgrading to jQuery UI position v1.10.0
+* replaced `CRLF` by `LF` (no idea how this happened in the first place...)
+* adding `options.reposition` to dis/allow simply relocating a menu instead of rebuilding it ([Issue #104](https://github.com/medialize/jQuery-contextMenu/issues/104))
+
+### 1.6.0 (December 29th 2012) ###
+
+* adding [DOM Element bound context menus](http://medialize.github.com/jQuery-contextMenu/demo/on-dom-element.html) - ([Issue 88](https://github.com/medialize/jQuery-contextMenu/issues/88))
+* adding class `context-menu-active` to define state on active trigger element - ([Issue 92](https://github.com/medialize/jQuery-contextMenu/issues/92))
+* adding [demo for TouchSwipe](http://medialize.github.com/jQuery-contextMenu/demo/trigger-swipe.html) activation
+* adding export of internal functions and event handlers - ([Issue 101](https://github.com/medialize/jQuery-contextMenu/issues/101))
+* fixing key "watch" might translate to Object.prototype.watch in callbacks map - ([Issue 93](https://github.com/medialize/jQuery-contextMenu/issues/93))
+* fixing menu and submenu width calculation - ([Issue 18](https://github.com/medialize/jQuery-contextMenu/issues/18))
+* fixing unused variables - ([Issue 100](https://github.com/medialize/jQuery-contextMenu/issues/100))
+* fixing iOS "click" compatibility problem - ([Issue 83](https://github.com/medialize/jQuery-contextMenu/issues/83))
+* fixing separators to not be clickable - ([Issue 85](https://github.com/medialize/jQuery-contextMenu/issues/85))
+* fixing issues with fixed positioned triggers ([Issue 95](https://github.com/medialize/jQuery-contextMenu/issues/95))
+* fixing word break problem - ([Issue 80](https://github.com/medialize/jQuery-contextMenu/issues/80))
+
+### 1.5.25 (October 8th 2012) ###
+
+* upgrading to jQuery 1.8.2 ([Issue 78](https://github.com/medialize/jQuery-contextMenu/issues/78))
+* upgrading to jQuery UI position 1.9.0 RC1 ([Issue 78](https://github.com/medialize/jQuery-contextMenu/issues/78))
+
+### 1.5.24 (August 30th 2012) ###
+
+* adding context menu options to input command events ([Issue 72](https://github.com/medialize/jQuery-contextMenu/issues/72), dtex)
+* code cosmetics for JSLint
+
+### 1.5.23 (August 22nd 2012) ###
+
+* fixing reposition/close issue on scrolled documents ([Issue 69](https://github.com/medialize/jQuery-contextMenu/issues/69))
+* fixing jQuery reference ([Issue 68](https://github.com/medialize/jQuery-contextMenu/issues/68))
+
+### 1.5.22 (July 16th 2012) ###
+
+* fixing issue with animation and remove on hide (Issue #64)
+
+### 1.5.21 (July 14th 2012) ###
+
+* fixing backdrop would not remove on destroy (Issue #63)
+
+### 1.5.20 (June 26th 2012) ###
+
+Note: git tag of version is `v1.6.20`?!
+
+* fixing backdrop would not position properly in IE6 (Issue #59)
+* fixing nested input elements not accessible in Chrome / Safari (Issue #58)
### 1.5.19 ###
+Note: git tag of version is missing...?!
+
* fixing sub-menu positioning when `$.ui.position` is not available (Issue #56)
### 1.5.18 ###
+Note: git tag of version is missing...?!
+
* fixing html5 `