function featuredBg(elm, color)
{
	var slot;
	if (color == "orange")
	{
		slot = document.getElementById(elm.id);
		slot.style.backgroundColor = "#EE9601";
	}
	else
	{
		slot = document.getElementById(elm.id);
		slot.style.backgroundColor = "#003466";
	}
}

