(function($) {
	
	$.fn.pictureOverlay = function () {
       
		return this.each(function(){
	   
			var self = $(this);
			
			self.find(".column").each(function(){
				$(this).hover(function(){
					$(this).find(".overlay").delay(100).hide(); 
				}, function(){
					$(this).find(".overlay").clearQueue();
					$(this).find(".overlay").delay(100).show();
				});
			}); 		
		});
	} 
	
})(jQuery);
