function externalLinks() {
	$("#mainarticle p a").attr('target','_blank');
	$("a[rel='external']").attr('target','_blank');
}

function makeemails(person) {
	theemail = person + '@outputmagazine.com';
	thehtml = '<a href="mailto:' + theemail + '">' + theemail +'</a>';
	document.write (thehtml);
}
function makecommentemail(person, thelink) {
	theemail = person + '@outputmagazine.com';
	thehtml = '<a href="mailto:' + theemail + '?subject=Comment...&body=' + thelink + '">' + theemail +'</a>';
	document.write (thehtml);
}
function goosearch() {
	$('#search .box').blur(function() {
  		//alert('Handler for .blur() called.');
		$('#search .box').addClass('emptybox');
		
	});	
}
// Do these functions when DOM has loaded
$(document).ready(function() {
	externalLinks();
	goosearch();
});
