jQuery.fn.hideInputValue = function( form ) {
	form.value = '';
}

jQuery.fn.showInputValue = function( form, txt ) {
	t = form.value;

	if( t == '' )
		form.value = txt;
}

