$(function(){
$('fieldset label').each(function(){
var vGeral = $(this).children('input[type="text"], textarea').val();
$(this).children('input[type="text"], textarea').focus(function(){
var thisValue = $(this).val();
if (vGeral == thisValue){
$(this).val('');
            }
}).blur(function(){
var thisValue = $(this).val();
if (thisValue == ''){
$(this).val(vGeral);
             }
});
	 
});
});
