/**
 * template.js
 */

jQuery.fn.reset = function ($) {
  $(this).each (function() { this.reset(); });
};

jQuery('#reset').click(function($) {
	$(this).reset();
});

