jQuery(document).ready(function() {
	jQuery('#header').css('cursor','pointer').click(function(){
		window.location = '/';
	});
	jQuery(function() {
	jQuery('a[rel*=external]').click( function() {
		alert('Your link will open in a new window.'); 																				 
		window.open(this.href);
		return false;
	});
});
});