﻿$(document).ready(function () {
    jsMenu.PopulateMenu();
    $(".title").text("JOHN'S CORNER");
    $("#copyright").text("Copyright 2012");
});

jsMenu = {
    Data: [{ "Text": "TOPICS", "Link": "blog.htm" },
           { "Text": "REFERENCES", "Link": "reference.htm" },
           { "Text": "OLF", "Link": "ordered_list_of_facts.htm" },
           { "Text": "SOFTWARE ENGINEERING", "Link": "code.htm" },
           { "Text": "OTHER", "Link": "fun_stuff.htm"}],
    PopulateMenu: function () {
        var content = "";
        for (i = 0; i < jsMenu.Data.length; i++) {
            if (i != 0)
                content += " | ";
            content += "<a href='" + jsMenu.Data[i].Link + "'>" + jsMenu.Data[i].Text + "</a>";
        }
        $("#menu").html(content);
    }
}
