	
	$(document).ready(function(){
	
		$('#icons li').hover(function() {
		
			time = setTimeout($.proxy(function() {
			
				$('#icons li').not(this).fadeTo(200,0.1);
				$(this).fadeTo(200,1);
				
				text = $(this).find('.legenda').html();
				$('.tooltip').html(text).fadeIn(200);
							
			},this),150);
				
		
		},function() {
			
			//$(this).fadeTo(300,0.1);
			clearTimeout(time);
			
		});
		
		$('#icons').live('mouseleave',function() {
			
			$('#icons li').fadeTo(300,1);
			$('.tooltip').html('').fadeOut(300);
			
		});
		
	});
