// JavaScript Document
function rOver(item) {
			prevRCol=item.style.background;
			//UnselectedCol=item.style.background;
			item.style.background='#B6BDD2';
	}
function rOut(item) {
			//alert(prevRCol)
			item.style.background=prevRCol;
	}