$(document).ready(function () {
  window.setInterval(updateJustSee, 7000);
});

function updateJustSee()
{
  $.get(HTTP_PATH+'ajax.php?nodb=true&file=classes/cHomePage.php&class=cHomePage&static_method=getNextRowUserSeeProductList_AJAX', function (data) {
    $('#last-user-see-in tr:first').before(data);
    //$('#last-user-see-in tr:first').show('fast');
  });
}

