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