function changeButtonBg(elem, bg)
{
	var btn = document.getElementById(elem);
	btn.setAttribute("style", "background:url('images/" + bg + "');");
}
