$(document).ready(function() {
	jQuery(".projects").delegate(".item", "mouseover mouseout", function(fade) {
		if (fade.type == 'mouseover') {
		jQuery(".projects .item").not(this).dequeue().animate({opacity: "0.4"}, 200);
    	} else {
		jQuery(".projects .item").not(this).dequeue().animate({opacity: "1"}, 200);
   		}
	});
});	
