	function rollon(a) {
		a.style.backgroundColor='#FFFFFF';
		a.style.border ='#000000';
		a.style.cursor ='hand';
		a.style.color='#666666';
	}	

	function rolloff(a) {
		a.style.backgroundColor='#f1f1f1';	
		a.style.border ='#f1f1f1';
		a.style.cursor ='default';
		a.style.color='#666666';
	}

