Вот достаточно задать вопрос и ответ сам себе в голову лезет, наверное я сам себе задал правильно вопрос))
Может кому пригодится:
var selt1='';
var selt2='';
function f2Click(x2){
selt2=x2.cellIndex+8;
$(".qq").attr('onmouseout', '');
$(".qq").attr('onmousemove', '');
$(".qq").attr('onclick', '');
//var selt3=selt2-selt1;
alert(selt1+' '+selt2);
}
function f1Click(x){
selt1=x.cellIndex+8;
$(".qq").attr('onmouseout', '');
$(".qq").attr('onmousemove', '');
$(".qq").attr('onclick', '');
$(x).css('background','#8D4143');
$(x).nextAll('td').mousemove(function (){$(this).css('background','#8D4143');})
var xn=$(x).next();
$(x).nextAll('td').click(function (){f2Click(this);})
}