$(document).ready( function() {
$("A[rel='external']").click( function() {
	var url = $(this).attr('href');
	var pagetitle  = $(this).attr('title');

	jConfirm('Thank you for visiting our site. Click below to visit the external link you have requested:<br/> <strong><a href="'+ url +'">'+ pagetitle + '</a></strong>.<br/> We hope your visit was informative and enjoyable.', 'You are exiting FannieMae.com', function(r) {
			if (r == true)
			{
			location.href = url;
			} else {
			//option message for Cancel
			}

		});

	return false;
	});

});
