diff --git a/script.js b/script.js
deleted file mode 100644
index 001241a..0000000
--- a/script.js
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * For Filelist Plugin
- *
- * @author joachimmueller
- */
-
-/*
- * run on document load, setup everything we need
- */
-jQuery(function () {
- "use strict";
-
- // CONFIG
-
- // these 2 variable determine popup's distance from the cursor
- // you might want to adjust to get the right result
- var xOffset = 10;
- var yOffset = 30;
-
- // END CONFIG
-
- jQuery("img.filelist_preview").hover(function (e) {
- this.t = this.title;
- this.title = "";
-
- var c;
- if (this.t !== "") {
- c = "
" + this.t;
- } else {
- c = "";
- }
- jQuery("body").append("
" + c + "