$(function(){
	// forces all links to external sites (ie. those with href starting 'http')
	// to open in a new window.
	$("a[@href^='http']").attr('target','_blank');
});
