$(document).ready(function() {

	$("#projects .initiative").hoverIntent(
	function() {		
		$(this).toggleClass("hover");
		$("#projects .initiative:not(.hover)").fadeTo("fast", 0.8);
	},
	function() {
		$(this).toggleClass("hover");
		$("#projects .initiative:not(.hover)").fadeTo("fast", 1);
	});
	
	$("#research .initiative").hoverIntent(
	function() {		
		$(this).toggleClass("hover");
		$("#research .initiative:not(.hover)").fadeTo("fast", 0.8);
	},
	function() {
		$(this).toggleClass("hover");
		$("#research .initiative:not(.hover)").fadeTo("fast", 1);
	});
});
