(function($){
	$.Geral = {
		__constructor : function(){
			var me = this;
			//plugins
			$.Prorrogacao.__constructor();
			$.Podcasts.__constructor();

			//metodos
			me.others.f1();
		},
		
		others : {
			f1 : function(){
				
			}
		}
	}
})(jQuery);

$(function(){
	$.Geral.__constructor();
})