$(document).ready(function(){
	$("a[rel='taflink']").click(function(){
		$(this).html('Loading, please wait...');
		$(this).unbind('click');
		
		$.post('/Coaching/gettafurl', {url: location.href}, function(resp){
			window.location.href = '/Coaching/tell-a-friend/url,'+resp;
		}, 'text');
	});
});