/*
 * jQuery External links
 *
 * Since the page is set to XHTML Strict 1.0, target="_blank" is non valid HTML
 * To prevent invalid markup all exteranl links need to be provided with rel="external"
 * This script will then replace all these links with target="_blank" to make them open in a new browser
 *
 * Copyright (c) 2011 ArchYves
 */
 
$(document).ready(function(){
	$('a[rel="external"]').attr("target", "_blank");
});
