// JavaScript Document

// Center vertically

	$(document).ready(function() {
							   
		var doc_height = $(document).height();
		var el_height = $('.verticalcenter').height();
		
		$('.verticalcenter').css({'position' : 'relative' , 'top' : doc_height/2 - el_height/2
								 
		});
		
	});

// New window 

	$(function() {
		$('a[rel*=external]').click( function() {
			window.open(this.href);
			return false;
		});
	});
	
// Obfuscate email address - remove span

	$(document).ready(function(){
	
		$(".hide").empty();
	
	});
