$(document).ready(function() {
	var a = $("a[href='#contact']");
	var c = $('#contact');
	c.css({ position: 'absolute', top: a.offset().top + a.outerHeight(), left: a.offset().left });

	// Hopefully creating this via javascript will trick the spammers, at least a little:
	// (all the "\x61"s are "a"s)
	$('#contact .e-mail').append('<a href="mailto:j\x61germ\x61n@j\x61germ\x61n.com">j\x61germ\x61n@j\x61germ\x61n.com</a>');

	a.click(function(event) {
	  event.preventDefault();
	  c.toggle('slow');
	  return false;
	});

	// If accessing #contact, bring up the Contact menu immediately:
	if (window.location.hash == '#contact') {
	  c.show();
	}
});
