//Takes external url from the name attribute and puts it in the thickbox Yes link
$(document).ready(function(){   
	$(".external").click(function(){
		var url = $(this).attr('name');
		$("#exit_yes").attr('href', 'http://' + url); 
	});	
});