// JavaScript Document
/// jquery used below... maybe update others to use it?
$(document).ready(function (e) {
	
	

// globally fix the target blank issue for obvious ext links
	$(function() {
		$('a[href^=http]').click( function() {
			window.open(this.href);
			return false;
		});
	});
 
 
 
});


