$(function () {
    $("input:text").focus(function () {
        $(this).css("background-color", "#FDF0A9");
        $(this).css("border-color", "#EB6101");
    });
    $("input:text").blur(function () {
        $(this).css("background-color", "white");
        $(this).css("border-color", "#BBB");
    });
    $("textarea").focus(function () {
        if (!this.readOnly) {
            $(this).css("background-color", "#FDF0A9");
            $(this).css("border-color", "#EB6101");
        }
    });
    $("textarea").blur(function () {
        $(this).css("background-color", "white");
        $(this).css("border-color", "#E0E0E0");
    });
});
