$(document).ready(function(){
			
	//	Logo link
	$('#header h1').css('cursor', 'pointer').click( function(){window.location = './';});

	// Open links in new window when rel="external" is applyed to a tag										 
	$('a[@rel$="external"]').click(function(){this.target="_blank";});

});