$(document).ready(function(){
	$(".front-post-mu")
		.fadeTo("slow", 0.4);
	$(".front-post-mu")
		.hover(function(){
			$(this).fadeTo("slow", 1.0);
			},function(){
			$(this).fadeTo("slow", 0.4);
			});
	});
	
$(document).ready(function(){
	$("#network-icons")
		.fadeTo("slow", 0.4);
	$("#network-icons")
		.hover(function(){
			$(this).fadeTo("slow", 1.0);
			},function(){
			$(this).fadeTo("slow", 0.4);
			});
	});
	
	
	
	
	

