// External links open in new window (yuk)
$(document).ready(function(){
	$("a[rel='extlink']").attr('title','Opens in a new window').click(function(){
		window.open($(this).attr('href')); // opens the link in a new window
		return false; // stops the normal link behaviour firing
	});
})
