		function switchStyle( in_xElement, in_bHighlight )
		{
			if( in_bHighlight )
			{
				in_xElement.style.backgroundColor = '#F1EFD7';
			}
			else
			{
				in_xElement.style.backgroundColor = '#E8DE74';
			}
		}
