jQuery(document).ready(function($) {
	var selectors = '.sidepanel a, .cat-item';
	
	$(selectors).hover(function() {
		$(this).stop();
		$(this).fadeTo('fast', 0.8);
	}, function() {
		$(this).stop();
		$(this).fadeTo('def', 1);
	});
});