function switchText()
{
	if ($(this).val() == $(this).attr('title'))
		$(this).val('').removeClass('texthint');
	else if ($.trim($(this).val()) == '')
		$(this).addClass('texthint').val($(this).attr('title'));
}

$(document).ready(function(){

	$('input[type=text][title!=""]').each(function() {
		if ($.trim($(this).val()) == '') $(this).val($(this).attr('title'));
		if ($(this).val() == $(this).attr('title')) $(this).addClass('texthint');
	}).focus(switchText).blur(switchText);

	$('form').submit(function() {
		$(this).find('input[type=text][title!=""]').each(function() {
			if ($(this).val() == $(this).attr('title')) $(this).val('');
		});
	});
});
