$(document).ready(function(){
	iconFade('.b');
	iconFade('.d');
	iconFade('.f'); 	
});

function iconFade(_first){
	$(_first).hover(function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
	},function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
	});
}
