/**
 * Common scripts for the Glendale website.
 */

function pageInit() {
    //loadBlog();
}


function loadBlog() {
    var blogDiv = document.getElementById("blog");

    if (blogDiv != null) {
        // Use some jQuery to do the actual insert.
        /*
        $.get("/script/blog/", function(data) {
            $("#blog").html(data);
        });
        */
    }
/*
    var shipDiv = document.getElementById("ships");
    if (shipDiv != null) {
        $.get("/index.xml?script=glendale/www/ft/OldNSL/", function(data) {
            $("#ships").html(data);
        });
    }
*/
}
