var foo = function() {}
var perform = function(data) {
	$("#formdexter").html(data);
	$("#button").click(foo);
}
var click = function() {
	_gaq.push(['_trackEvent', 'Send to Friend', 'Action', 'Submitted']);
	$.post("email.php", {
		your_name: $("#your_name").val(),
		friend_name: $("#friend_name").val(),
		friend_email: $("#friend_email").val(),
		friend_message: $("#friend_message").val()
	}, perform);
	return false;
}
$("#button").click(click);
foo = click;
