function colorchanger(id,state)
{
	if (state == 1)
	{
	document.getElementById(id+"a").style.backgroundColor="#eeeeee"
	document.getElementById(id+"b").style.backgroundColor="#ff6600"
	}
	else
	{
	document.getElementById(id+"a").style.backgroundColor="#ffffff"
	document.getElementById(id+"b").style.backgroundColor="#6699cc"
	}
}