﻿$(function () {
    oldValue = "";
    oldBackground = "";
    $(".textbox").focus(function () {
        oldBackground = $(this).css("backgroundColor");
        $(this).css("backgroundColor", "#c2e5f7");
    }).blur(function () {
        $(this).css("backgroundColor", oldBackground);
    });
})
