function toggle(x,origColor){
	var newColor = origColor;
	if ( x.style ) {
		x.style.backgroundColor = newColor;
	}
}