$(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);
			});
	});
	
	
	
	

	/*.append('<span class="hover" />').each(function () {
            var $span = $('> span.hover', this).css('opacity', 0);
            $(this).hover(function () {
            $span.stop().fadeTo(500, 1);
            }, function () {
             $span.stop().fadeTo(500, 0);
     });
	*/
	
	
	
	
	