
function swapTrBgColor(changeMe, color) 
{ 
	 theCells = changeMe.getElementsByTagName('td'); 
	
	 for(i=0; i<theCells.length; i++) 
	 { 
		  theCells[i].style.backgroundColor = color; 
	 } 
}		


	




