	var iColor;
	function ON(skater){ 
		iColor=skater.style.backgroundColor;
		skater.style.backgroundColor='#ffffcc';
	}
	function OFF(skater){
		skater.style.backgroundColor=iColor;
	}

