$(function(){
	$('#newsletterForm input').focus(function(){
		$('label[for=' + $(this).attr('id') + ']').hide();
	});
	$('#newsletterForm input').blur(function(){
		if ($(this).val().length == 0)
		{
			$('label[for="' + $(this).attr('id') + '"]').show();
		}
		else
		{
			$('label[for=' + $(this).attr('id') + ']').hide();
		}
	});
	$('#newsletterForm input').blur();
});