﻿// JScript File

function highlightCharacter(c)
{
    var dh = Ext.DomHelper;
    var el = Ext.select("li,blockquote,p");    
    el.removeClass('selected');
    
    el = Ext.select("." + c);
    el.addClass('selected'); 
  

}