diff --git a/js/jquery.bgiframe.js b/js/jquery.bgiframe.js
index d2b1475..b0f7ac9 100644
--- a/js/jquery.bgiframe.js
+++ b/js/jquery.bgiframe.js
@@ -66,4 +66,4 @@
         return n && n.constructor === Number ? n + 'px' : n;
     }
 
-}));
+}));
\ No newline at end of file
diff --git a/js/nice_menus.js b/js/nice_menus.js
index 64cc51d..3ab804d 100644
--- a/js/nice_menus.js
+++ b/js/nice_menus.js
@@ -34,5 +34,18 @@
       });
     }
   };
+  
+  /**
+   * The $.browser method has been removed as of jQuery 1.9. So create a workaround. http://jquery.com/upgrade-guide/1.9/#jquery-browser-removed
+   */
+  jQuery.browser = {};
+  (function () {
+      jQuery.browser.msie = false;
+      jQuery.browser.version = 0;
+      if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
+        jQuery.browser.msie = true;
+        jQuery.browser.version = RegExp.$1;
+      }
+  })();
 
 })(jQuery);
