$(function () {
	$('#sidebar a').hover(function() {
		$(this).fadeTo("1000", 0.5);
	}, function() {
		$(this).fadeTo("1500", 1);
	});
});

