$(document).ready(function(){

	jQuery('#blocks li').hover(function(){
	
		jQuery(this).addClass('hovered');
		jQuery('#blocks li:not(.hovered)').stop().animate({ opacity: 0.5 }, 250);
	
	}, function(){
	
		jQuery(".hovered").removeClass('hovered');
		jQuery('#blocks li').stop().animate({ opacity: 1 }, 250);
	
	});
	
	jQuery('.employees li').hover(function(){
		jQuery(this).addClass('hovered');
		jQuery('.employees li:not(.hovered)').stop().animate({ opacity: 0.5 }, 250);
	
	}, function(){
	
		jQuery(".hovered").removeClass('hovered');
		jQuery('.employees li').stop().animate({ opacity: 1 }, 250);
	
	});
	
	
});
