Fix position of image tooltip

Change-Id: I81de6405ecc185f857b04be9900618c83cdaf41c
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
diff --git a/src/main/resources/static/imagare.js b/src/main/resources/static/imagare.js
index 322d889..244350b 100644
--- a/src/main/resources/static/imagare.js
+++ b/src/main/resources/static/imagare.js
@@ -45,7 +45,7 @@
           l[i].onmouseover = function (evt) {
             var img = document.createElement('img');
             img.setAttribute('src', this.href);
-            img.setAttribute('style', 'border: 1px solid #B3B2B2; position: absolute; bottom: ' + (this.offsetHeight + 3) + 'px');
+            img.setAttribute('style', 'border: 1px solid #B3B2B2; position: absolute; top: ' + (this.offsetTop + this.offsetHeight) + 'px');
             this.parentNode.insertBefore(img, this);
             this.onmouseout = function (evt) {
               this.parentNode.removeChild(this.previousSibling);