Cufon.replace ("h1, h2", { fontFamily: "Georgia" });
Cufon.replace ("h2.phone", { fontFamily: "Helvetica Neue" });


$(document).ready (function () {
    $("#username_field").focus (function () {
        if ($(this).val () == "Username") {
            $(this).val ("");
        } // if ()
    });

    $("#username_field").blur (function () {
        if ($(this).val () == "") {
            $(this).val ("Username");
        } // if ()
    });

    $("#password_field").focus (function () {
        if ($(this).val () == "Password") {
            $(this).val ("");
        } // if ()
    });

    $("#password_field").blur (function () {
        if ($(this).val () == "") {
            $(this).val ("Password");
        } // if ()
    });
});
