$(function() {
	$('.linkbox').hover(
		function(){
			$(this).fadeTo(220, 0.8);
		},
		function(){
			$(this).fadeTo(220, 1);
		}
	);
});
