;(function($) {
	$(function() {

		$('#projects a[href*=#]').click(function(e) {
			e.preventDefault();
			$(this.hash)
				.show()
				.siblings()
				.hide();
		});
		$('#projects .project').hide();
		if(window.location.hash) {
			$(window.location.hash).show();
		}

		$('a[href^=mailto:]').each(function() {
			var user = $(this).attr('title').replace(/\s/, '.').toLowerCase(), host = $(this).text().split('@')[1];
			$(this)
				.attr('href', 'mailto:' + user + '@' + host)
				.text(user + '@' + host);
		});
	});
})(jQuery);

