﻿$(document).ready(function () {
  if ($('#EnewsShortControl_tbxEmail').val() == '') $('#EnewsShortControl_tbxEmail').removeClass('removeBackground'); else $('#EnewsShortControl_tbxEmail').addClass('removeBackground');

  $('#EnewsShortControl_tbxEmail').bind('focus', function () { $('#EnewsShortControl_tbxEmail').addClass('removeBackground'); });
  $('#EnewsShortControl_tbxEmail').bind('blur', function () {
    if ($('#EnewsShortControl_tbxEmail').val() == '') $('#EnewsShortControl_tbxEmail').removeClass('removeBackground'); else $('#EnewsShortControl_tbxEmail').addClass('removeBackground');
  });
});
