
$(document).ready(function() {

	$('.single_work').hover(
	function(){
		$(this).find('.dark').fadeTo('fast', 0.6);				
		$(this).find('.work_overlay').fadeIn("fast");
	},
	function(){
		$(this).find('.dark').fadeTo('fast', 0);
		$(this).find('.work_overlay').fadeOut("fast");					 
	});
	
	
	$('.i_port').hover(
	function(){			
		$(this).find('.work_overlay').fadeTo('fast', 0.7);	
	},
	function(){
		$(this).find('.work_overlay').fadeOut("fast");					 
	});
	
	
	
	$('.p-i_port').mouseenter(function() {
		$(this).find('.work_overlay').fadeTo('fast', 0.7);	
	});
	
	$('.p-i_port').mouseleave(function() {
		$(this).find('.work_overlay').fadeTo('fast', 0);	
	});

	
});
