
$().ready(function() {
// validate the comment form when it is submitted
$("#meter").validate();
$("#date-pick").datepicker({ dateFormat: 'dd-mm-yy' });
$("input.num").keypress(function(event) {
      if (event.charCode && (event.charCode < 48 || event.charCode > 57)) {
        event.preventDefault();
      }      
      });
      
   
    $('a[@class*=thickbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
 
      
      
      var meter_read;
      var meter_read_html;
      
      meter_read = $('#readings');      
      meter_read_html = meter_read.html();
      
          
      $('#add_machine').click(function(event){        
          meter_read.append(meter_read_html);   
          
           $('a[@class*=thickbox]').lightBox(); // Select all links that contains lightbox in the attribute rel                      
          event.preventDefault();                       
      });
      
      
      
      
     
      
});
