function changeBgImage(divid, imagefile) {
	//set the next image as background
	document.getElementById(divid).style.backgroundImage = "url(" + imagefile + ")";
}
