jQuery(document).ready(function($){
	$(".portfolio-item .portfolio-thumbnail").hide();
	$(".portfolio-item").hover(function(){
		$(this).find(".portfolio-thumbnail").stop(true, true).animate({ opacity: 'show' }, 'fast');
	}, function() {
		$(this).find(".portfolio-thumbnail").stop(true, true).animate({ opacity: 'hide' }, 'fast');		
	});
});

