$(function() {

  // secure forms
  $(".warning").remove();
  $.get('/scripts/token.php',function(txt) {
	$('.secure').append('<input type="hidden" name="ts" value="'+txt+'" />');
  });

  $("#form").validate(); 
 
});
