function tableOver(src)  {
	src.style.backgroundColor='yellow';
	src.style.cursor='hand';
}

function tableOut(src) {
	src.style.backgroundColor='GreenYellow';
}

function tableClick(src,color) {
	if(event.srcElement.tagName=='TD')
		src.children.tags('A')[0].click();
	src.style.backgroundColor=color;
}
