// JavaScript Document
function changeImage(target,newimage){
	document.getElementById(target).src='images/' + newimage;
}
function changeBackColor(target,newcolor){
	document.getElementById(target).style.backgroundColor=newcolor;
}