$(function () {

	$('form #espaco .form-mask').click(function() { $(this).parent().find('input').focus(); });
	$('form #espaco input').blur(function() { if ($(this).val()=='') { $(this).parent().find('.form-mask').fadeIn(200); } });
	$('form #espaco input').focus(function() { $(this).parent().find('.form-mask').fadeOut(200); });

})
