diff --git a/www/index.html b/www/index.html
index 73cd22e..592569f 100644
--- a/www/index.html
+++ b/www/index.html
@@ -629,6 +629,12 @@
$('.popup-trigger').click(function(){
$(this).children($('.popup')).toggleClass("show")
});
+ $('.popup-trigger').mouseenter(function(){
+ $(this).children($('.popup')).addClass("show")
+ });
+ $('.popup-trigger').mouseleave(function(){
+ $(this).children($('.popup')).removeClass("show")
+ });
});