function cellOver(src) { 
	if (src.children)
		src.style.cursor = 'hand';
	else
		src.style.cursor = 'pointer';
	src.className = 'linkCellOn';
}

function cellOut(src) { 
	src.style.cursor = 'default'; 
	src.className = 'linkCell';
} 

function cellClick(src) {
	if (src.children)
		src.children.tags('A')[0].click();
	else if (src.childNodes)
		window.location = src.childNodes[1].href;
}
