// resume.js

$(function() {
	$(".email").each(function() {
		var email;
		email = $(this).text();
		email = email.replace(/\[at\]/, "@")
		email = email.replace(/\[dot\]/, ".");
		$(this).html(email).attr("href", "mailto:" + email);
	});
	
	$(".hover li").hover(
		function() {
			$(this).addClass("hover");
		},
		function() {
			$(this).removeClass("hover");
		}
	);
});