///***
$(document).ready(function(){
///***
	// Create overlay on hover for other portfolio items
	$('div.fpOtherWorkColumn').hoverIntent(function(){		
		$(this).children('div.fpThumbOverlay').fadeIn(500);
	},function(){
		$(this).children('div.fpThumbOverlay').fadeOut(500);
	});
	
	// Create overlay on hover for other portfolio items
	$('div.otherThumbBlock').hoverIntent(function(){		
		$(this).children('div.thumbOverlay').fadeIn(500);
	},function(){
		$(this).children('div.thumbOverlay').fadeOut(500);
	});
	
	$('a#overlay1, a#overlay2, a#overlay3, a#overlay4').fancybox({
		'frameWidth': 800,
		'frameHeight': 600,
		'centerOnScroll': false,
		'zoomSpeedOut': 400
		//'callbackOnStart': function(){$f().unload();}
	});

	
///***	
});
///***
