// JavaScript Document

function changeBackground(img) {	
	
  document.getElementById("menuImage").style.backgroundImage="url("+img+")";
  document.all.menuImage.style.backgroundImage="url("+img+")";
}


