/**
 * reset
 * @param	void
 * @return 	HTML View
 * @desc	Start Reset Functions 
*/
(function($) {
	jQuery.fn.reset = function () {
	  	$(this).each (function() { this.reset(); });
	  };// Fin de reset
})(jQuery);

