$(function(){
    $("#newsletter input:first").blur(
        function(){
            if (this.value=="") {
                $(this).addClass("inactive");
            }
        }
    ).focus(
        function(){
            if ($(this).hasClass("inactive")) {
                this.value="";
                $(this).removeClass("inactive");
            }
        }
    ).addClass('inactive').get()[0].value="";
});