 	function doChildClasses(oElement, iNo){
 		for(var i=0;i<oElement.children.length;i++){
			if(oElement.children(i).className){
				oElement.children(i).className=oElement.children(i).className.replace(/\d+/, iNo);
			}
		}
	}
