function movein(theImage, thePlace){
	if (document.getElementById){
		document.getElementById(thePlace).background = theImage;
	}else{
		menu1.background = theImage;
	}
}

function moveout(theImage, thePlace){
	if (document.getElementById){
		document.getElementById(thePlace).background = theImage;
	}else{
		menu1.background = image;
	}
}