$(document).ready(function () {
    $(".block-newsletter input[type=text]").focus(function () {
        if ($(this).val() == "Enter Your Email Address") {
            $(this).val("");
        }
    });

    $(".block-newsletter input[type=text]").blur(function () {
        if ($(this).val() == "") {
            $(this).val("Enter Your Email Address");
        }
    });

    $(".error-block .message-error").each(function () {       
        if (!$(this).text().trim().length) {
            $(this).parent().css("display", "none");
        }
    });
});	
