/************************
* file: main.js
* author: jrw
*******************/
$(function(){

	// make external links open in new tab or window
	// Note: HTML5 makes semantic use of "rel" attribute on links and specifies "external" as value for duh.
	$('a[rel="external"]').each(function(){
		$(this).attr('target', '_blank');
	});
});
