﻿$(function() {
	var pop = function() {
		$(".popup-window.follow-user").popup({
			onSuccess: function(popup, data) {
				popup.closest(".follow_user").html(data);
				pop();
			}
		});
	};
	pop();
});
