jQuery(document).ready(function() {
	jQuery('.cdstores li a').mouseover(function() {
		jQuery('.cdstores li a').not(this).stop().animate({opacity: '0.4'}, 'slow');
	});
	jQuery('.cdstores li a').mouseout(function() {
		jQuery('.cdstores li a').not(this).stop().animate({ opacity: '1'}, 'slow');
	});
});
