$(document).ready(function(){
	$('.panel, .team-member').hover(function(){
		$(this).find('.zoo-overlay').fadeIn('fast',function(){});
		$(this).find('.strapline').fadeIn('slow',function(){});
	},function(){
		$(this).find('.zoo-overlay').fadeOut('fast',function(){});
		$(this).find('.strapline').fadeOut('slow',function(){});
	});

	$('.banner li').hover(function(){
		$(this).find('.strapline').show();
	},function(){
		$(this).find('.strapline').hide();
	});
});

$(document).ready(function(){
	$('.panel-inside').hover(function(){
		$(this).find('.strapline').show();
	},function(){
		$(this).find('.strapline').hide();
	});

	$('.banner').hover(function(){
		$(this).find('.strapline').show();
	},function(){
		$(this).find('.strapline').hide();
	});
});
