$(document).ready(function(){ 
    UpdateContentDiv = function(url,init) {
        if (init) {
            $("#AJAX_CONTENT_DIV div.navigation-block a").click(function() {
                UpdateContentDiv($(this).attr("href"));
                return false;
            });
            $("#AJAX_CONTENT_DIV a[id^='SYMBOLS_']").click(function() {
                $("#AJAX_CONTENT_DIV div[id^='SYMBOLS_']").hide();
                $("#"+$(this).attr("id")+"_DIV").show();
            });           
        } else {
            if (url) {
                $("#AJAX_CONTENT_DIV div.loader").css("height",$("#AJAX_CONTENT_DIV").height() + 'px').show();
                $("#AJAX_CONTENT_DIV").load(url, {"AJAX": "Y"}, function(){
                    $("#AJAX_CONTENT_DIV div.loader").hide();
                    UpdateContentDiv('',true);
                });
            }
        }
    }
    UpdateContentDiv('',true);
});
