<!--
function rebindInputs()
{
	jQuery("input[type='text'], input[type='password'], textarea, select").blur(
		function() {
			jQuery("label[for='" + jQuery(this).attr('id') + "']").css("textIndent", (((jQuery(this).val(jQuery.trim(jQuery(this).val())).val() == '') || (jQuery(this).val(jQuery.trim(jQuery(this).val())).val() == -1)) ? "0px" : "-9999px"));
		}
	).focus(
		function() {
			jQuery("label[for='" + jQuery(this).attr('id') + "']").css("textIndent", "-9999px");
		}
	).trigger("blur");
}

jQuery(document).ready( function() {	
	rebindInputs();
});
//-->

