	$(document).ready(function(){
	$("#content-wrapper a img").fadeTo("fast", 1.0);
	$("#content-wrapper a img").hover(function(){
	$(this).fadeTo("fast", 0.5);
	},function(){
	$(this).fadeTo("fast", 1.0);
	});
	});