$(document).ready(function()
{	
	$('.boxlink').hover(function(){
		$(this).attr('rel','hover');
		$('.boxlink[rel!=hover]').stop().animate({opacity:0.5});
	},function(){
		$(this).attr('rel','');
		$('.boxlink[rel!=hover]').stop().animate({opacity:1});		
	});
	
})
