$(document).ready(function(){
  $("#js_enabled").hide();
  $("input").focus(function(){
    $(this).next("label").addClass("labelon");
  });
  $("input").blur(function(){
    $(this).next("label").removeClass("labelon");
  });

  $("label").click(function(){
    var myCheck = $(this).prev(":input").focus();
    if( myCheck[0] ){
      myCheck[0].checked = ( myCheck[0].checked ) ? false : true;
      myCheck.change();
    }
  });

});
