jquery fadeIn no funciona

¿Puede alguien decirme qué estoy haciendo mal?

estilo:

.warning{border: 1px solid #F0AAAA; background:#FFBABA; color: #C90000;}

margen:

 <p class="warning">A successful authorization already exists. 
                    Further authorizations are not allowed at this time.</p>

guión:

 $().ready(function () {
     alert($(".warning").html());     // WORKS
     $(".warning").fadeIn(4000);      // DOESN'T WORK
 });

Respuestas a la pregunta(4)

Su respuesta a la pregunta