

$().ready(function() {
// validate the comment form when it is submitted
$("#meter").validate();

$("input.num").keypress(function(event) {
      if (event.charCode && (event.charCode < 48 || event.charCode > 57)) {
        event.preventDefault();
      }      
      });
});
