(function($){
	$.Geral = {
		__constructor : function(){
			var me = this;
			//plugins
			$.Imagens.__constructor();
			$.showHide.__constructor();

			//metodos
			me.others();
		},

		others : function(){
			
		}
	}
})(jQuery);

$(function(){
	$.Geral.__constructor();
})
