// JavaScript Document
jQuery(function(){
	//forcing users to open new windows with target="_blank" is a terrible idea. Heres why: http://www.trilithium.com/johan/2005/03/target-blank/
	$('a[rel=external]').attr('target', '_blank');
});
