function getUpdatedNavigation() {
    $("#font_navigation a").click(function () {
        $("#blue_bar").load($(this).attr('href')+"?ajax=2&type="+type, function () { getUpdatedNavigation(); });
        return false;
    });

    $("#brand_navigation a").click(function () {
        $("#blue_bar").load($(this).attr('href')+"?ajax=2&type="+type, function () { getUpdatedNavigation(); });
        return false;
    });
}

function barHideShow() {
    $("#hide").click(function () {
        $("#show_bar").show();
        $("#big_blue").hide();
        return false;
    });
    $("#show").click(function () {
        $("#show_bar").hide();
        $("#big_blue").fadeIn("slow");
        return false;
    });
    
}

$(document).ready(function(){
    getUpdatedNavigation();
    barHideShow();
});
