$(document).ready(function(){
		
	var footerNav = $("#nav").clone();
	$(footerNav).removeAttr("id");
	$("#footerNav").html(footerNav);
		
	$('#contentRegion a').filter(function() {
         return this.hostname && this.hostname !== location.hostname;
    }).addClass('externalLink');
			
});