diff --git a/commentary.org b/commentary.org
index 7f110a20b0cb71b0107ceb941f1d2aaedfb6c23a..376ee8f84357747bcd1b496cdda24fda4063be7b 100644
--- a/commentary.org
+++ b/commentary.org
@@ -5,8 +5,9 @@
 ** DONE Toggle floating
    Somehow client.tiling_floating stays the same across acesses
 ** DONE Floating layout/disable script
-** TODO Make floating windows be _above_ tilers
+** DONE Make floating windows be _above_ tilers
    Somehow accessing client.keepAbove doesn't work
+   Make configurable?
 * TODO EDGECASES, EDGECASES, EDGECASES!
 ** TODO Doesn't tile properly when screen disappears
 ** TODO Don't tile fullscreen windows on workspace change
diff --git a/contents/code/tile.js b/contents/code/tile.js
index 29c630c1f35cc5fb707d78fc52a309dc62d594cb..7ebcef07503fe4a3fdd8af088acb10e49dc80950 100644
--- a/contents/code/tile.js
+++ b/contents/code/tile.js
@@ -177,6 +177,15 @@ Tile.prototype._computeForcedFloating = function() {
     return forcedFloating;
 };
 
+Tile.prototype._recomputeForcedFloating = function(client) {
+	var forcedFloating = false;
+    if (client.shade || client.minimized || client.keepAbove
+        || client.fullScreen || !client.resizeable) {
+        forcedFloating = true;
+	}
+	return forcedFloating;
+}
+
 Tile.prototype._updateForcedFloating = function() {
     var forcedFloating = this._computeForcedFloating();
     if (forcedFloating == this.forcedFloating) {
@@ -187,7 +196,7 @@ Tile.prototype._updateForcedFloating = function() {
 };
 
 Tile.prototype.onClientShadeChanged = function(client) {
-    this._recomputeForcedFloating();
+    this._recomputeForcedFloating(client);
 };
 
 Tile.prototype.onClientGeometryChanged = function(client) {
@@ -208,7 +217,7 @@ Tile.prototype.onClientGeometryChanged = function(client) {
 };
 
 Tile.prototype.onClientKeepAboveChanged = function(client) {
-    this._recomputeForcedFloating();
+    this._recomputeForcedFloating(client);
 };
 
 Tile.prototype.onClientKeepBelowChanged = function(client) {
@@ -216,11 +225,11 @@ Tile.prototype.onClientKeepBelowChanged = function(client) {
 };
 
 Tile.prototype.onClientFullScreenChanged = function(client) {
-    this._recomputeForcedFloating();
+    this._recomputeForcedFloating(client);
 };
 
 Tile.prototype.onClientMinimizedChanged = function(client) {
-    this._recomputeForcedFloating();
+    this._recomputeForcedFloating(client);
 };
 
 Tile.prototype.onClientMaximizedStateChanged = function(client) {
diff --git a/contents/code/tilelist.js b/contents/code/tilelist.js
index 5696e417e206bbc1f3f0e2b57632f1cc6d0e3c5a..e4cfe853e9d06780ee71f66cc4d8693ddfa19d46 100644
--- a/contents/code/tilelist.js
+++ b/contents/code/tilelist.js
@@ -126,6 +126,7 @@ TileList.prototype.addClient = function(client) {
         // If not, create a new tile
         this._addTile(client);
     }
+	client.keepAbove = false;
 };
 
 TileList.prototype.retile = function() {
diff --git a/contents/code/tilingmanager.js b/contents/code/tilingmanager.js
index 3f9c541fa32083a731134fbefa913ab555b20e79..60c4b79d3e81464b92cfc88111bb8f0e01c7deb9 100644
--- a/contents/code/tilingmanager.js
+++ b/contents/code/tilingmanager.js
@@ -173,12 +173,11 @@ function TilingManager() {
 						 client.tiling_floating = !client.tiling_floating;
 						 print(client.tiling_floating);
 						 if (client.tiling_floating == true) {
-							 //client.keepAbove = true;
 							 self.tiles._onClientRemoved(client);
+							 client.keepAbove = true;
 						 } else {
 							 //self.tiles._onClientAdded(client);
 							 self.tiles.addClient(client);
-							 //client.keepAbove = false;
 						 }
 						 self.tiles.retile();
 					 });