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