$(function(){
    $("#nl-optin label").hide();
    $("#nl-name").add("#nl-email").addClass("blur");
    $("#nl-name")
    	.val("Name")
    	.focus(function(){
    		if (this.value == "Name") this.value = "";
    		$(this).removeClass("blur");
    	})
    	.blur(function(){
    		if (this.value == "")
    		{
    			this.value = "Name";
    			$(this).addClass("blur");
    		}
    	});
    $("#nl-email")
    	.val("E-Mail")
    	.focus(function(){
    		if (this.value == "E-Mail") this.value = "";
    		$(this).removeClass("blur");
    	})
    	.blur(function(){
    		if (this.value == "")
    		{
    			this.value = "E-Mail";
    			$(this).addClass("blur");
    		}
    	});
});