$(document).ready(function(){

	$(".thumbview-box").each(function(index, box){
	
		$(box).hover(
			function(){
				//in
				$(".thumbview-box").clearQueue();
				$(".thumbview-box:not( .thumbview-box:eq(" + index + ") )").fadeTo(200, 0.2);
			}, 
			function(){
				//out
				$(".thumbview-box").fadeTo(200, 1);
			}
		);
	
	});


});