function hideFormLabels(id) {
	$(id + " input[type='text'], " + id + " input[type='password'], " + id + " textarea").each(function() {
		if ($(this)[0].value == "") {
			$(id + " label[for='" + $(this)[0].id + "']").show();
		} else {
			$(id + " label[for='" + $(this)[0].id + "']").hide();
		}
	});
	$(id + " input[type='text'], " + id + " input[type='password'], " + id + " textarea").focus(function() {
		$(id + " label[for='" + $(this)[0].id + "']").hide();
	});
	$(id + " input[type='text'], " + id + " input[type='password'], " + id + " textarea").blur(function() {
		if ($(this)[0].value == "") $(id + " label[for='" + $(this)[0].id + "']").show();
	});
}