function changeBg(id,imgName) {
	document.getElementById(id).style.background = "url("+imgName+")";
	document.getElementById(id).style.backgroundRepeat = "no-repeat";
}

