$(document).ready(function() {
	
	$('a.opaque').hover(function() {
		$(this).stop().animate({
			opacity: 0.5
			}, 100);
		},
		
		function() {
		$(this).stop().animate({
			opacity: 1
			}, 100);
		});
	
});

