/*
  TABLE ROLLOVER EFECT III
*/

var oldC, oldCbg
function clk(src) {
	if(event.srcElement.tagName=='TD'){
		if (src.children.tags('A')[0])
			src.children.tags('A')[0].click();
	}
}

function ovr(s, bgc) {
	if (!s.contains(event.fromElement)) {
		oldCbg = s.bgColor;

		s.style.cursor = 'hand';
		s.style.border = 'solid 1px #a0c6e5';
		s.bgColor = bgc;

		if(s.tagName=='TD'){
			if (s.children.tags('A')[0])
				s.children.tags('A')[0].style.textDecoration = "underline";
		}
	  
	}
}

function out(s) {
	if (!s.contains(event.toElement)) {
		s.style.cursor = 'default';
		s.style.border = 'solid 1px #f0f0f0';
		s.bgColor = oldCbg;

		if(s.tagName=='TD'){
			if (s.children.tags('A')[0])
				s.children.tags('A')[0].style.textDecoration = "none";
		}
	}
}

/*
  END OF TABLE ROLLOVER EFECT III
*/
