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

		thumbmaior: function(e){
			var me = this;
			//
			$(".thumbmaior .foto").hover(function(e) {
				$(this).find('.desc:not(:animated)').stop().animate({opacity:.5});																				
			}, function(e) {
				$(this).find('.desc').stop().animate({opacity:0});
			});
			
		},
		
		initConfig: function() {
			$(".thumbmaior .desc").css("opacity",0);
		}
			
	}
})(jQuery);
