$(document).ready(function(){
	$('.mostrar_tel').click(function(){
		$('.telefono #telefono_oculto').html($(this).attr('rel'));
		$(this).remove();
		var url = 'http://'+$.url.attr("host")+'/queries/addtlfrequest.php';
		var escort_id = $.url.attr("path").substr(1).split('.')[0];
		$.post(
			url,
			{ escort: escort_id }
		);
	});
});