(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']").resetDefaultValue();
			$("input[type='text']").addClass('text');
		}
			
	}
})(jQuery);