	var activeCell = false;
	var activeRowClickArray = new Array();
	
	function highlightTableCell()
	{
		if(top.location.pathname.search(this.id)==-1){
			if(this!=activeCell){
				this.setAttribute('origCl',this.className);
				this.origCl = this.className;
			}

			this.className = 'cellRollOverEffect';

			activeCell = this;
		}
	}
	
	function resetCellStyle()
	{
		if(top.location.pathname.search(this.id)==-1){
			var tableObj = this.parentNode;
			if(tableObj.tagName!='TABLE')tableObj = tableObj.parentNode;
	
			var origCl = this.getAttribute('origCl');
			if(!origCl)origCl = this.origCl;
			this.className=origCl;
		}
	}

	function addCellRolloverEffect(rowId,whichClass)
	{
		var rowObj = document.getElementById(rowId);
		for(var no=0;no<rowObj.cells.length;no++){
			rowObj.cells[no].onmouseover = highlightTableCell;
			rowObj.cells[no].onmouseout = resetCellStyle;
			if(top.location.pathname.search(rowObj.cells[no].id)!=-1){
				rowObj.cells[no].className='sellink';
			}
			if(top.location.pathname=='/' && no==0){
				rowObj.cells[no].className='sellink';
			}
		}
	}
