/* Smooth Scroll */
function smoothTo(t) {
	var targetOffset = $(t).offset().top;
	$('html,body').animate({scrollTop: targetOffset}, 420);
	return false;
};

/* OnReady */
$(function() {
	$("#nav-faq a").click(function() {
		$("#faq").slideToggle("fast");
		return false;
	});
	$("#twitter").hover(
		function() {
			slideTimeout = setTimeout(function(){ $("#faq").delay(210).slideUp("fast"); }, 210);
		},
		function() {}
	);
	$("#header").hover(
		function() {
			clearTimeout(slideTimeout);
		},
		function() {}
	);
	
	var e = "us";
	var d = "huffandstapes";
	$("li#nav-contact a").attr("href","mailto:" + e + "@" + d + ".com");
	$("#footer li:last-child a").attr("href","mailto:" + e + "@" + d + ".com");
});

