$(document).ready(function()
{
	var hideandshow = $("input[type='text'], textarea");
	hideandshow.each(function(i){
		this.temp = $(this).val();
	});
	hideandshow.focus(function(){
		if (this.temp==$(this).val()) $(this).val('');
	});
	hideandshow.blur(function(){
		if ($(this).val()=='') $(this).val(this.temp);
	});
});