$(function () {
            $('<div id="ajax-spinner"></div>').appendTo("body").ajaxStop(function () {
                $(this).hide().css({
                    position: "fixed",
                    left: "50%",
                    top: "50%"
                });
            }).hide();
        });

        $("a.ajax").live("click", function (event) {
            event.preventDefault();

            $.get(this.href);

            $("#ajax-spinner").show().css({
                position: "absolute",
                left: "50%",
                top: event.pageY - 100
            });
        });
