﻿$(document).ready(function () {
    $('input[type="text"]').focus(function () {
        $(this).addClass("focus-text");
    });
    $('input[type="text"]').blur(function () {
        $(this).removeClass("focus-text");
    });
    $('input[type="password"]').focus(function () {
        $(this).addClass("focus-text");
    });
    $('input[type="password"]').blur(function () {
        $(this).removeClass("focus-text");
    });
    $('select').focus(function () {
        $(this).addClass("focus-text");
    });
    $('select').blur(function () {
        $(this).removeClass("focus-text");
    });
    $('textarea').focus(function () {
        $(this).addClass("focus-text");
    });
    $('textarea').blur(function () {
        $(this).removeClass("focus-text");
    });
});
