/* The following is used to comply with XHTML Strict ruels of now Target attributes for anchor elements */
function externalLinks() {
	jQuery('a[rel~="external"]').click(function(){
		jQuery(this).attr({
			"target":"_blank"
		});
	});
}

//When Document is Loaded and Ready
jQuery(document).ready(function(){

	//Run to set up external links
	externalLinks();
	
});
