var addthis_config = {
    ui_click: true /* normally would disable mouseover behavior */
}

$(document).ready(function(){
	$("#content #grid-content a img").fadeTo("normal", 1.0); // This is what happen when the page loads
	$("#content #grid-content a img").hover(function(){
		$(this).fadeTo("fast", 0.4); // This is what happen on hover
	},function(){
   		$(this).fadeTo("normal", 1.0); // This is what happen on mouseout
	});
});

$(document).ready(function(){
	$("#social a img").fadeTo("normal", 0.2); // This is what happen when the page loads
	$("#social a img").hover(function(){
		$(this).fadeTo("fast", 1.0); // This is what happen on hover
	},function(){
   		$(this).fadeTo("normal", 0.2); // This is what happen on mouseout
	});
});

$(document).ready(function(){
	$("#navigation").fadeTo("normal", 0.4); // This is what happen when the page loads
	$("#navigation").hover(function(){
		$(this).fadeTo("fast", 1.0); // This is what happen on hover
	},function(){
   		$(this).fadeTo("normal", 0.4); // This is what happen on mouseout
	});
});

