$(document).ready(function() {
	
	var email_link = $("#email_addr");
	email_link.append('mark');
	email_link.append('@');
	email_link.append('cooperconrad.com');

	var phone_num = $("#phone_num");
	phone_num.append('(815)');
	phone_num.append('317-');
	phone_num.append('6675');
	
	// vertically align the nav
	if ($(window).width() > 720) {
		var headoff = $("header").height();
		var navoff = $("nav").height();

		$("nav").css("margin-top", (headoff - navoff) / 2);
	}
	
	// click the about link
	$("[href=#home]").click(function(event) {
		event.preventDefault();

		$("html,body").animate({scrollTop: "0px"}, 1300);
	});

	// click the services link
	$("[href=#services]").click(function(event) {
		event.preventDefault();

		$("html,body").animate(
			{scrollTop: $("#services").offset().top},
			1300
		);
	})

	// click the storyteller link
	$("[href=#storyteller_info]").click(function(event) {
		event.preventDefault();

		$("html,body").animate(
			{scrollTop: $("#storyteller_info").offset().top},
			1300
		);
	})
	
	// click the learn more link
	$("[href=#storyteller]").fancybox({
		'width': '90%',
		'height': '90%',
		'autoDimensions': false
	});
});


// when you resize the window
$(window).resize(function() {
	if ($(window).width() > 720) {
		var headoff = $("header").height();
		var navoff = $("nav").height();

		$("nav").css("margin-top", (headoff - navoff) / 2);
	}
});
