$(function() {
	$('.linkbox').hover(
		function(){
			$(this).fadeTo(250, 0.7);
		},
		function(){
			$(this).fadeTo(250, 1);
		}
	);
});
