/**
 * @author TorahWeb
 * @copyright The TorahWeb Foundation, 2008. All Rights Reserved.
 * email Comments / Bugs to: torahweb at torahweb
 */

/**
 * set class of element with given ID to given clsname
 * @param {Object} clsname
 * @param {Object} elemId
 */
function setClassName(clsname, elemId)
{
	var targetElem = document.getElementById(elemId);
	targetElem.setAttribute("class", clsname);
	targetElem.setAttribute("className", clsname);		
}

