// Initial Setup ____________________________________________________________________
$(document).ready(function() {
	
	var overlay = $('.overlay');
	
	
	$('.hotspot').mouseenter(function() {
		overlay
			.stop()
			.css({ display: 'block', opacity: 0 })
			.animate({ opacity: 1 }, 150, 'easeOutQuad');
		$('.sep', overlay)
			.stop()
			.css({ width: '20px' })
			.delay(150)
			.animate({ width: '474px' }, 400, 'easeOutQuad');
		$('li', overlay).each(function(i) {
			$(this)
				.stop()
				.css({ display: 'block', opacity: 0 })
				.delay(100 + (i * 75))
				.animate({ opacity: 1 }, 400, 'easeOutQuad');
		});
	});
	$('.hotspot').mouseleave(function() {
		overlay
			.stop()
			.animate({ opacity: 0 }, 800, 'easeOutExpo');
	});
	
});
