Gracias por las sugerencias, lo resolvi de la siguiente manera, a quien le sirva:
   
Código HTML:
Ver original- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
- <html xmlns="http://www.w3.org/1999/xhtml"> 
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
- (function() { 
- setInterval(function(){ 
-   var el = document.getElementsByTagName('p');   
-  for (var i=0; i<el.length; i++)  
-  {      
-        var valor = el.item(i);      
-        if(valor.className == 'luz') 
-        { 
-         valor.className = 'luz on'; 
-        } 
-        else 
-        { 
-         valor.className = 'luz'; 
-        } 
-  }    
- },500); 
- })(); 
-   
- p.luz.on{ 
-     color: #FF0000;/*color del texto al cambiar*/ 
-     text-shadow: 1px  1px rgba(255, 255, 255, .1), 
-     -1px -1px rgba(0, 0, 0, .88), 
-      0px  0px 20px #0099ff;/*color de la luz del texto*/ 
- } 
- p.luz{ 
-   font-size:11pt;;/*tamaño de la fuente*/ 
-   color: #000000; 
-   /* text-shadow: 
-      1px  1px rgba(255, 255, 255, .1), 
-     -1px -1px rgba(0, 0, 0, .88); */ 
- } 
-   
-   
-   
-   
-   
- <p class="luz"><b>- Tu texto aqui1 </b></p>
 
- <p class="luz"><b>- Tu texto aqui2 </b></p>
 
saludos cordiales y gracias de nuevo por las sugerencias.