$(document).ready(function()
{
	$('.overlabel').each(function()
	{
		id = $(this).attr('for');
		
		if ($('#' + id).val() != '') $(this).css('text-indent', '-10000px');
		
		$('#'+id).focus(function()
		{
			$(this).prev('label').css('text-indent', '-10000px');
		});
		$('#'+id).blur(function()
		{
			if ($(this).val() == '')
				$(this).prev('label').css('text-indent', '0px');
		});
	});
});


