/* author: Sergey Drozdov */
/* Creation date: 15.06.2003 */

	function hover(el,color) {
		if (!el.contains(event.fromElement)) {
			el.style.cursor = 'hand';
			el.style.background = color;
		}
	}
	
	function unhover(el,color) {
		if (!el.contains(event.toElement)) {
			el.style.background = color;
		}
	}
	
	function mouseclick(el) {
		if (event.srcElement.tagName=='TD')
			el.children.tags('A')[0].click();
	}

