﻿DD_roundies.addRule('#navigator a', '8px', true);

$(document).ready(function () {
    global_init();

    $("#username").focus(function () {
        if ($(this).val() == "(username)") {
            $(this).removeClass("watermark").val("");
        }
    });
    $("#username").blur(function () {
        if ($(this).val() == "") {
            $(this).addClass("watermark").val("(username)");
        }
    });
    $("#password-fake").focus(function () {
        if ($(this).val() == "(password)") {
            $(this).hide();
            $("#password").show().focus();

        }
    });
    $("#password").blur(function () {
        if ($(this).val() == "") {
            $(this).hide();
            $("#password-fake").show();
        }
    });

});

