// JavaScript Document
$(document).ready(function() {
	var delay = 0;
	var offset = 50;
	
	$('h1, h2').each(function() {
		$(this).css('top',offset);
		offset = offset * -1;
	});
	
	$('body > *').hide();
	$('body > *').each(function() {
		$(this).delay(delay).fadeIn(1000);
		$('h1, h2').animate({
			'top':0,
		},1500);
		delay += 2500;
	});
	
	$('nav ul li').hover(function() {
		$(this).siblings().toggleClass('fade');
	});
	
	
	$('.contact').click(function() {
		var user, uname;
		var emails = [
			"kflagg@stcassociates.com",
			"lucy@stcassociates.com",
			"emohanty@stcassociates.com",
			"rdinesen@stcassociates.com"
		];
		
		user = $(this).parent().index();
		window.location.href = 'mailto:'+emails[user]+'?subject=I would like more information about STC Associates '+$(this).siblings('.location').html();
	});
});


