function swapContent(url) {
        $j('#content_inner').fadeOut('quick',function() {
            $j('#indicator').show('quick',function() {
                $j.ajax({
                        type: "GET",
                        url: url,
                        success: function(html) {
                                $j("#indicator").hide('quick',function() {
                                        $j('#content_inner').html(html);
                                        $j("#content_inner").fadeIn();
                                });
                        },
                        error: function (XMLHttpRequest, textStatus, errorThrown) {
                                $j("#indicator").hide(function() {
                                        $j("#content_error").html("An error occurred: "+textStatus);
                                        $j("#content_error").fadeIn();
                                });
                        }
                });
            });
        });
}
