Your code sets the "align" attribute on p.MsoNormal to "center". You must include it in your selection to get only those elements that already have "align = center", for example:
jQuery('p.MsoNormal[align="center"]').addClass('av-tablecell');
Erik source
share