Es cierto tiene razón ya lo modifique siguiendo sus sugerencias y lo deje de la siguiente manera:
   Cita:  <div id="contenedorI">
    <img src="imagenes/help.png" alt="1" width="25" height="25" />
    <img src="imagenes/help.png" alt="1" width="25" height="25" />
</div>
    y el codigo del jquery de esta manera:  
 Cita:  $(document).ready(function() {
    $("#contenedorI img").click(function () {
         if ($('#mensaje').is (':hidden'))
	 {
	      $('#mensaje').load('ayuda.php',{help:$("img").attr  ("alt")});
	      $('#mensaje').show();
	 }
	else
	      $('#mensaje').hide();
    });
});
    Pero no obtengo el valor del atributo alt, sigo cometiendo un error o deberia de intentar tomar otro atributo?