
	function NewColor(obj,bgcol) {
		if(obj.style) {
			obj.style.backgroundColor=bgcol; //Background-Color
		}
	}

	function classChange(styleChange, item) {
		item.className=styleChange;
	}

