	function change_color(x,y) {
		if(y == 0){
			thecolor = '#EEEEEE';
		} else {
			thecolor = '#EEFFFF';
		}
	
		document.getElementById(x).style.backgroundColor = thecolor;
	} 
