summaryrefslogtreecommitdiff
path: root/js/scilab.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/scilab.js')
-rwxr-xr-xjs/scilab.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/js/scilab.js b/js/scilab.js
new file mode 100755
index 0000000..ad33d8f
--- /dev/null
+++ b/js/scilab.js
@@ -0,0 +1,7 @@
+$(document).ready(function(){
+$('#main-menu ul li').hover(function(){
+ $(this).addClass('hover');
+ }, function(){
+ $(this).removeClass('hover');
+ });
+});