$(function formClear () {   
    var textContent2 = $('#email_input').val();
    $('#email_input').focus(function() {
        if (this.value == textContent2) {
            $(this).val('');
        };
    }).blur(function() {
        if (this.value == '') {
            $(this).val(textContent2);
        };
    });
});
