$(function() {
	$('a.link_h').hover(function() {
		$(this).stop().fadeTo(300, 0.6);
	}, function() {
		$(this).stop().fadeTo(300, 1);
	});
});

