$(document).ready(function() {
	$('.externalLink').mouseenter(function(){	
		$('.externalLink').after('<div class="newWindowLink">This link will direct you away from this site</div>');
		$(".newWindowLink").show();
	});
	$('.externalLink').mouseleave(function(){	
		$('.newWindowLink').remove('');
	});
});