$(document).ready(function() {
	$('.thumb').fadeTo("fast", 0.23);
	$('.thumb-title').fadeTo("fast", 0.5).hide();
	$('.thumb').css('opacity', .23).bind('mouseover',function(){ 
			$(this).find('.thumb-title').show();
			$(this).fadeTo("slow", 1);
		})
		.bind('mouseout',function(){ 
			$(this).find('.thumb-title').hide();
			$(this).fadeTo("slow", 0.23);
		});
	$('.port .item a').fadeTo("fast", 0.23).bind('mouseover',function(){ 
			$(this).fadeTo("slow", 1);
		})
		.bind('mouseout',function(){ 
			$(this).fadeTo("slow", 0.23);
		});
});

