﻿function textBoxFocus(e) {
    jq(e).removeClass("backgroundImage");
}

function textBoxBlur(e) {
    var box = jq(e);
    if (box.val() == '') {
        box.addClass("backgroundImage");
    }
}
