
function changeBackgroundColor()	{
	for(i=0;i<changeBackgroundColor.arguments.length;i=i+2)	{
		d = document.getElementById(changeBackgroundColor.arguments[i]);
		d.style.backgroundColor = changeBackgroundColor.arguments[(i+1)];
		//alert(color);
	}
	return true;
}