(function($){
	$.Forms = {

		__constructor : function(){
			var me = this;
			me.initConfig();

			// targets (bind em elementos passando o evento)
		},

		f1 : function(e){
			var me = this;
			//
		},

		initConfig: function() {
			$("input[type='text'], input[type='password']").addClass('text');
			$("input[type='text'], textarea").resetDefaultValue();
		}

	}
})(jQuery);
