

function changeBg(id, color)
{
	document.getElementById(id).style.backgroundColor = color;
}

function changeBgImg(id, img)
{
	document.getElementById(id).style.backgroundImage = "url('"+img+"')";
}