(function($){
	$.Tooltips = {
		
		__constructor : function(){
			var me = this;
			me.initConfig();
			
			// targets (bind em elementos passando o evento)
			me.dadosbanners();
			
		},

		dadosbanners : function(e){
			var me = this;
			//
			$(".dadosbanners li a").hover(
				function() {
					$(this).next().show();																	 
				},
				function() {
					$(this).next().hide();																	 
				}
			)
		},
		
		initConfig: function() {
			//
		}
			
	}
})(jQuery);
