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