virtual keyboard - enabled - disabled it

virtual keyboard - enabled - disabled it

Hi.
I'm using a virtual keyboard (http://mottie.github.com/Keyboard/). 
I have a checkbox that sould control if the virtual keyboard show be displayed or not. 
the thing is that i'm not understand on how to disabled it. 
i try to unbind it but doesn't work... 
any help? 

  1. <script type="text/javascript">
  2.     $(function () {
  3.         //show login
  4.         $("#showLogin").on({
  5.             click: function () {
  6.                 $("#loginFormDiv").toggle("slow");
  7.             }
  8.         });

  9.         $("#cb_showVKey").on('click', CheckIsToShowKey);
  10.     });

  11.     function CheckIsToShowKey(event) {
  12.         //var isCheck = $("#cb_showVKey").is(':checked');

  13.         //alert("ischecked? " + isCheck);
  14.         if ($("#cb_showVKey").is(':checked')) {
  15.             //if checked
  16.             BindKeyboards();
  17.         }
  18.         else {
  19.         //not checked
  20.             UnBindKeyboards();
  21.         }
  22.     }

  23.     function bindVirtualKeyboards() {
  24.         $("#loginForm").delegate(".virtualKeyboardField", "click", BindKeyboards);
  25.     }

  26.     function UnBindKeyboards() {
  27.         $("#loginForm").undelegate(".virtualKeyboardField", "click", BindKeyboards);
  28.     }

  29.     function BindKeyboards() {
  30.         // alert(event.currentTarget.id);
  31.         //alert("xpto");

  32.         $("#loginUserName").keyboard(
  33.                     { layout: 'qwerty',
  34.                         lockInput: true,
  35.                         preventPaste: true
  36.                     });

  37.         $("#loginUserPassword").keyboard(
  38.                     { layout: 'qwerty',
  39.                         lockInput: true,
  40.                         preventPaste: true
  41.                     });

  42.     }

  43.     $(document).ready(function () {
  44.         $("#loginForm").validate();
  45.         BindKeyboards();
  46.     });

  47.     
  48. </script>