 
/*  when a results table is hovered over change the background color 
need it because code shared with normal page */

function changeRowColor(row){   
//  row.className='gray_background'    
//  flipImage(row, 'images/nxg-orange.gif')
}

function changeRowColorBack(row){        
//    row.className='white_background'   
//    flipImage(row, 'images/nxg.jpg')
}

function flipImage(row, newImage)
{
  td5 = row.childNodes[5]  //td 5
	
	link5 = td5.childNodes[0] // link within td
	
	img5 = link5.childNodes[0] // img within link
	
	img5.src = newImage
}


