Cita:  $('label[for="' + $(this).attr("class") + '"]').fadeOut(), 5000 });
    Se usa así, con comillas:
setTimeout("funciones", tiempo) 
setTimeout("$('label[for=' + $(this).attr(\"class\") + ']').fadeOut()"), 5000 }); 
Se complica por que tenes muchas comillas. Probalo. Pero mejor, asi:  
 Cita:  obj =     $('label[for="' + $(this).attr("class") + '"]');
 
obj.show();
 
setTimeout("obj.fadeOut('fast')", 5000 });
    Y si todavía no funciona, quizas la variables vaya entre parentesis. 
$(obj).show(); 
