window.onload = function() {
    var div = document.createElement("div");
    div.id = "sites";

    var a = document.createElement("a");
    a.href = "http://gryphonshafer.com";

    a.appendChild( document.createTextNode("GryphonShafer.com") );
    div.appendChild(a);

    var body = document.getElementsByTagName("body");
    body[0].appendChild(div);
}

