function changeStyle(objectID,CSSProp,newVal) {
	var object = document.getElementById(objectID);
	object.style[CSSProp] = newVal;
}
