$(function() {
	var nledv = $('#nlb_email').val();
	$('#nlb_email').focus(function() {
		if($(this).val() == nledv) {
			$(this).removeClass('grey').val('');
		}
	});
	$('#nlb_email').blur(function() {
		if($.trim($(this).val()) == '') {
			$(this).addClass('grey').val(nledv);
		}
	});
});
