Adds the specified classes to the end of the class list on the passed node.
node = dojo.byId(node); var cls = node.className; if((" "+cls+" ").indexOf(" "+classStr+" ") < 0){ node.className = cls + (cls ? ' ' : '') + classStr; }