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

			// targets (bind em elementos passando o evento)
				
		},
		
		f1: function() {

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