/*--- CASH OZ javascript xtra's, 23-07-04  */

	
	function hypOver(tdL, tdR)
		{
		tdL.style.backgroundColor = '#ffffff';
		tdR.className = 'linkRon';
		}
	function hypOut(tdL, tdR)
		{
		tdL.style.backgroundColor= '#000080';
		tdR.className = 'linkR';
		}




// below is the older version of the mouse over, works faster but doesn't work with classes

/*	

	function hypOver(tdL, tdR)
		{
		tdL.style.backgroundColor = '#ffffff';
		tdR.style.backgroundColor= '#4444aa';
		}
	function hypOut(tdL, tdR)
		{
		tdL.style.backgroundColor= '#444488';
		tdR.style.backgroundColor= '#444488';
		}
		
*/