﻿// Input field focus and blur support

jQuery(".I").focus(function () { this.className = 'FI'; });
jQuery(".I").blur(function () { this.className = 'I'; });
jQuery(".EI").focus(function () { this.className = 'FI'; });
jQuery(".EI").blur(function () { this.className = 'EI'; });

