diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/deckBuild.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/deckBuild.html
index ae4ca23a9..129ff3d83 100644
--- a/gemp-lotr/gemp-lotr-web/src/main/webapp/deckBuild.html
+++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/deckBuild.html
@@ -58,7 +58,6 @@
-
diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/game.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/game.html
index f41943c7d..2050f1c7f 100644
--- a/gemp-lotr/gemp-lotr-web/src/main/webapp/game.html
+++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/game.html
@@ -135,7 +135,6 @@
-
diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/hall.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/hall.html
index 2b9123549..7830027b3 100644
--- a/gemp-lotr/gemp-lotr-web/src/main/webapp/hall.html
+++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/hall.html
@@ -88,7 +88,6 @@
-
diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/index.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/index.html
index 921d9002c..097c69cd3 100644
--- a/gemp-lotr/gemp-lotr-web/src/main/webapp/index.html
+++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/index.html
@@ -20,7 +20,6 @@
-
diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/js/jquery/jquery.ajaxq-0.0.1.js b/gemp-lotr/gemp-lotr-web/src/main/webapp/js/jquery/jquery.ajaxq-0.0.1.js
deleted file mode 100644
index 1dcad7326..000000000
--- a/gemp-lotr/gemp-lotr-web/src/main/webapp/js/jquery/jquery.ajaxq-0.0.1.js
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * jQuery AjaxQ - AJAX request queueing for jQuery
- *
- * Version: 0.0.1
- * Date: July 22, 2008
- *
- * Copyright (c) 2008 Oleg Podolsky (oleg.podolsky@gmail.com)
- * Licensed under the MIT (MIT-LICENSE.txt) license.
- *
- * http://plugins.jquery.com/project/ajaxq
- * http://code.google.com/p/jquery-ajaxq/
- */
-
-jQuery.ajaxq = function (queue, options)
-{
- // Initialize storage for request queues if it's not initialized yet
- if (typeof document.ajaxq == "undefined") document.ajaxq = {q:{}, r:null};
-
- // Initialize current queue if it's not initialized yet
- if (typeof document.ajaxq.q[queue] == "undefined") document.ajaxq.q[queue] = [];
-
- if (typeof options != "undefined") // Request settings are given, enqueue the new request
- {
- // Copy the original options, because options.complete is going to be overridden
-
- var optionsCopy = {};
- for (var o in options) optionsCopy[o] = options[o];
- options = optionsCopy;
-
- // Override the original callback
-
- var originalCompleteCallback = options.complete;
-
- options.complete = function (request, status)
- {
- // Dequeue the current request
- document.ajaxq.q[queue].shift();
- document.ajaxq.r = null;
-
- // Run the original callback
- if (originalCompleteCallback) originalCompleteCallback(request, status);
-
- // Run the next request from the queue
- if (document.ajaxq.q[queue].length > 0) document.ajaxq.r = jQuery.ajax(document.ajaxq.q[queue][0]);
- };
-
- // Enqueue the request
- document.ajaxq.q[queue].push(options);
-
- // Also, if no request is currently running, start it
- if (document.ajaxq.q[queue].length == 1) document.ajaxq.r = jQuery.ajax(options);
- }
- else // No request settings are given, stop current request and clear the queue
- {
- if (document.ajaxq.r)
- {
- document.ajaxq.r.abort();
- document.ajaxq.r = null;
- }
-
- document.ajaxq.q[queue] = [];
- }
-}
\ No newline at end of file