Либо как определить, находятся ли #rN-1 и #rN в разных колонках?
var funcHandlers = {};
function intervalHandle(id)
{
console.log(id);
}
$('li').bind('mouseenter', function(event)
{
var funcHandler = setInterval(intervalHandle, 500, $(this).attr('id'));
funcHandlers[$(this).attr('id')] = funcHandler;
});
$('li').bind('mouseleave', function(event)
{
clearInterval(funcHandlers[$(this).attr('id')]);
delete funcHandlers[$(this).attr('id')];
}
<form id="form2" name="login" method="post" action="">
...
</form>
$.ajax({
.....
success: function(){$('#form2').css({'display': 'block'});}
.....
});
.....