$(document).ready(function() {
    $("input.email_field").bind('focus', function() {
        $("label[for='" + $(this).attr('id') + "']").hide();
    }).bind('blur', function() {
        if (!$(this).val().length) $("label[for='" + $(this).attr('id') + "']").show();
    });
});
