$(document).ready(function() {
$(".port").fancybox({
	'zoomOpacity'			: true,
	'padding'				:	2,
	'overlayShow'			: true,
	'zoomSpeedIn'			: 200,
	'zoomSpeedOut'			: 200,
	'overlayColor'		    : '#000',
	'overlayOpacity'		: 0.8
});
});
$(document).ready(function(){  

    $('.cover').hide();
    $('.blockp').hover(function(){  
        $('.cover', this).stop(true, true).fadeIn(300);
	}, function() {  
        $('.cover', this).stop(true, true).fadeOut(300);
    });  
   
});

