$(document).ready(function(){

	// vertically center the page
	function resize() {
		var ph = Math.ceil(Math.max(0, $(window).height()-600 ) / 2);
		$('#page').css('margin-top', ph+"px");
   	};
	if (!$.browser.msie) {
		$(window).bind('resize',resize);
		resize();
	}

	// deobfuscate email links
	$('a.xemail').each(function() {
		var h = $(this).html().replace('/','@');
		this.href = 'mai' + 'lto:' + h;
		$(this).html(h);
	});

	// google
	$.gaTracker( 'UA-2901438-4', { extensions: ['pdf'] } );
	
});
