/*
	new_window.js
	
	This file contains a function that enables links to be opened in new windows while still confornming to XHTML strict guidelines.
	NOTE: Requires JQuery core
	
	Author: Zach Rattner
*/

$(document).ready(function() {
	// Matches all links that have the rel="external" attribute.
	$('a[rel="external"]').attr('target','_blank');
});
