﻿$(function() {
	//let css know js is enabled
	$('body').addClass('ready');
	
	//all offsite links open in a new window
	$("a").filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).attr('target', '_blank');

});

